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