3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-06 16:12:51 +02:00

Fix /fawe threads output

Dieser Commit ist enthalten in:
NotMyFault 2021-04-12 19:32:17 +02:00
Ursprung 64a0a1d8e3
Commit ae647dadfb
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 158F5701A6AAD00C

Datei anzeigen

@ -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()));
}
}
}