From a80e3c97ee0bb8994d87b695e27470ba5382910f Mon Sep 17 00:00:00 2001 From: Jakob K Date: Mon, 28 Jun 2021 01:11:36 +0200 Subject: [PATCH] Fix false hex color example --- src/main/kotlin/net/axay/kspigot/chat/LiteralTextBuilder.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/net/axay/kspigot/chat/LiteralTextBuilder.kt b/src/main/kotlin/net/axay/kspigot/chat/LiteralTextBuilder.kt index e9be2e99..631ab222 100644 --- a/src/main/kotlin/net/axay/kspigot/chat/LiteralTextBuilder.kt +++ b/src/main/kotlin/net/axay/kspigot/chat/LiteralTextBuilder.kt @@ -35,7 +35,7 @@ class LiteralTextBuilder(val internalText: BaseComponent, ) { * e.g. Medium turquoise: * - `color = col(0x4BD6CB)` * - `color = col(4970187)` - * - `color = col("#4970187")` + * - `color = col("#4BD6CB")` * - `color = KColors.MEDIUMTURQUOISE` */ var color: ChatColor? = null