*whoops
This commit is contained in:
parent
90e0ab574d
commit
9f8a0456e3
@ -401,7 +401,8 @@ public enum BBC {
|
|||||||
Fawe.debug(this.format(args));
|
Fawe.debug(this.format(args));
|
||||||
} else {
|
} else {
|
||||||
try {
|
try {
|
||||||
Method method = actor.getClass().getDeclaredMethod("print", String.class);
|
Method method = actor.getClass().getMethod("print", String.class);
|
||||||
|
method.setAccessible(true);
|
||||||
method.invoke(actor, (PREFIX.isEmpty() ? "" : PREFIX.s() + " ") + this.format(args));
|
method.invoke(actor, (PREFIX.isEmpty() ? "" : PREFIX.s() + " ") + this.format(args));
|
||||||
} catch (NoSuchMethodException e) {
|
} catch (NoSuchMethodException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
Loading…
Reference in New Issue
Block a user