Use original prefix for system messages

This commit is contained in:
Jesse Boyd 2016-08-12 15:14:47 +10:00
parent 9519fde6bd
commit 4ccfab5908
2 changed files with 5 additions and 1 deletions

View File

@ -158,7 +158,7 @@ public class Fawe {
* @param s * @param s
*/ */
public static void debug(Object s) { public static void debug(Object s) {
s = BBC.getPrefix() + s; s = BBC.PREFIX.original() + " " + s;
if (INSTANCE != null) { if (INSTANCE != null) {
INSTANCE.IMP.debug(StringMan.getString(s)); INSTANCE.IMP.debug(StringMan.getString(s));
} else { } else {

View File

@ -350,6 +350,10 @@ public enum BBC {
return this.s; return this.s;
} }
public String original() {
return d;
}
public boolean usePrefix() { public boolean usePrefix() {
return this.prefix; return this.prefix;
} }