Status
Fixed
Issue description
At the moment if you add the color codes in to mcreator for \u00A74 or §4, §4 becomes unviewable in game and \u00A74 becomes \\u00A74 there for these both become unuseable for none coding users.
so the producer needs a way to create
if (entity instanceof EntityPlayer && !world.isRemote) {
((EntityPlayer) entity).sendStatusMessage(
new TextComponentString("\u00A74WWL\u00A7r: Just no! That's creative abus\u00A7k"), (true));
}
Rather then
if (entity instanceof EntityPlayer && !world.isRemote) {
((EntityPlayer) entity).sendStatusMessage(
new TextComponentString("\\u00A74WWL\\u00A7r: Just no! That's creative abus\\u00A7k"), (true));
}
We will fix this issue so MCreator will properly escape such strings.