This commit is contained in:
HoosierTransfer 2024-05-06 17:19:01 -04:00
parent 82b663ac31
commit cf942fac9c
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ public class LightingEngine {
if (current != ownerThread) {
final IllegalAccessException illegalAccessException = new IllegalAccessException(
String.format("World is owned by '%s' (ID: %s)," + " but was accessed from thread '%s' (ID: %s)",
ownerThread.getName(), ownerThread.threadId(), current.getName(), current.threadId()));
ownerThread.getName(), ownerThread.getId(), current.getName(), current.getId()));
System.out.println(
"Something (likely another mod) has attempted to modify the world's state from the wrong thread!\n"