Fixed issue with prefixes.

This commit is contained in:
Brianna 2020-06-28 17:16:57 -05:00
parent 663d70546b
commit 3077b7c77d

View File

@ -119,7 +119,7 @@ public class Message {
* @return the prefixed message
*/
public String getPrefixedMessage() {
return TextUtils.formatText((prefix == null ? "" : this.prefix) + " " + this.message.toText());
return TextUtils.formatText((prefix == null ? "" : this.prefix.toText()) + " " + this.message.toText());
}
/**