/** * Adds an override Color. * * @param color to set. */ public ChatMessageObject addChatColor(ChatColor color) { TextStyleJSONResolver.addColor(ownObject, color); return this; }
/** * Remove Magic * * @return this for Building. */ public ChatMessageObject removeMagic() { TextStyleJSONResolver.removeMagic(ownObject); return this; }
/** * Remove a Strike Through * * @return this for Building. */ public ChatMessageObject removeStrikeThrough() { TextStyleJSONResolver.removeStrikethrough(ownObject); return this; }
/** * Remove a Strike Through * * @return this for Building. */ public ChatMessageObject removeUnderlined() { TextStyleJSONResolver.removeUnderlined(ownObject); return this; }
/** * Adds Bold * * @return this for Building. */ public ChatMessageObject addBold() { TextStyleJSONResolver.addBold(ownObject); return this; }