mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2024-11-28 13:45:36 +01:00
Fixes #224
This commit is contained in:
parent
9808118764
commit
7cf334d881
@ -30,7 +30,7 @@ public abstract class ABukkitMain extends JavaPlugin {
|
||||
if (!plugin.getName().startsWith("AsyncWorldEdit")) {
|
||||
return super.add(plugin);
|
||||
} else {
|
||||
Fawe.debug("[FAWE] Disabling `" + plugin.getName() + "` as it is incompatible");
|
||||
Fawe.debug("Disabling `" + plugin.getName() + "` as it is incompatible");
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
@ -156,7 +156,8 @@ public class Fawe {
|
||||
* Write something to the console
|
||||
* @param s
|
||||
*/
|
||||
public static void debug(final Object s) {
|
||||
public static void debug(Object s) {
|
||||
s = BBC.getPrefix() + s;
|
||||
if (INSTANCE != null) {
|
||||
INSTANCE.IMP.debug(StringMan.getString(s));
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user