Skip to content

Commit cf26bd7

Browse files
authored
fix: 1.21.4 entityManager obf is O not N (#3285)
1 parent f68183f commit cf26bd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

worldedit-bukkit/adapters/adapter-1_21_4/src/main/java/com/sk89q/worldedit/bukkit/adapter/impl/fawe/v1_21_4/PaperweightPlatformAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public final class PaperweightPlatformAdapter extends NMSAdapter {
152152
fieldThreadingDetector.setAccessible(true);
153153
fieldLock = ThreadingDetector.class.getDeclaredField(Refraction.pickName("lock", "c"));
154154
fieldLock.setAccessible(true);
155-
SERVER_LEVEL_ENTITY_MANAGER = ServerLevel.class.getDeclaredField(Refraction.pickName("entityManager", "N"));
155+
SERVER_LEVEL_ENTITY_MANAGER = ServerLevel.class.getDeclaredField(Refraction.pickName("entityManager", "O"));
156156
SERVER_LEVEL_ENTITY_MANAGER.setAccessible(true);
157157
} else {
158158
// in paper, the used methods are synchronized properly

0 commit comments

Comments
 (0)