Fix /fawe threads output

This commit is contained in:
NotMyFault 2021-04-12 19:32:17 +02:00
parent 64a0a1d8e3
commit ae647dadfb
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C

View File

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