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
No known key found for this signature in database
GPG Key ID: 0DADDAC359165A31
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ plugins {
}
group "me.clip"
version "2.11.2-DEV-${System.getProperty("BUILD_NUMBER")}"
version "2.11.2"
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;
}
builder.append(ChatColor.translateAlternateColorCodes('&', replacement));
builder.append(replacement);
}
return builder.toString();