remove remaining colour shit and changed version so cube can release and we can be all happy and dandy

This commit is contained in:
PiggyPiglet
2022-07-03 20:34:12 +08:00
parent a2456c582d
commit 3fca78626a
3 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ plugins {
} }
group "me.clip" group "me.clip"
version "2.11.2-DEV-${System.getProperty("BUILD_NUMBER")}" version "2.11.2"
description "An awesome placeholder provider!" description "An awesome placeholder provider!"

View File

@@ -202,7 +202,7 @@ public final class PlaceholderAPI {
} }
} }
return Msg.color(text); return text;
} }
/** /**

View File

@@ -128,7 +128,7 @@ public final class CharsReplacer implements Replacer {
continue; continue;
} }
builder.append(ChatColor.translateAlternateColorCodes('&', replacement)); builder.append(replacement);
} }
return builder.toString(); return builder.toString();