Fix /fawe threads output

This commit is contained in:
NotMyFault
2021-04-12 19:32:17 +02:00
parent 64a0a1d8e3
commit ae647dadfb

View File

@ -169,7 +169,7 @@ public class WorldEditCommands {
"--------------------------------------------------------------------------------------------"));
actor.printDebug("Thread: " + thread.getName() + " | Id: " + thread.getId() + " | Alive: " + thread.isAlive());
for (StackTraceElement elem : entry.getValue()) {
actor.printDebug(TranslatableComponent.of(elem.toString()));
actor.printDebug(TextComponent.of(elem.toString()));
}
}
}