Beispiel #1
0
 /**
  * Remove color from the message and replace it with color codes.
  *
  * <p>This can be used after {@link #clr()} is used to get a string with color codes again.
  *
  * <p>Uses {@link Str#replaceColor(String)}
  *
  * @return This msg instance.
  */
 public Msg removeClr() {
   message = Str.replaceColor(message);
   return this;
 }