5zig / The-5zig-API

The official client API of The 5zig Mod.
Apache License 2.0
11 stars 2 forks source link

Method for turning styled MC text into plain text? #6

Closed ghost closed 7 years ago

ghost commented 7 years ago

Is there a method provided by the API that turns styled MC text into its plain text?

E.g. I'd like to be able to

public void onActionBar(ActionBarEvent event) {
  message = event.getVerbatimMessage(); // returning "hey" instead of "§chey" for example
}
5zig commented 7 years ago

Yes, just call eu.the5zig.util.minecraft.ChatColor.stripColor(String). It returns the text without the §-color codes