Remove unneeded changes and add back support for 1.9 through 1.12

This commit is contained in:
Speentie8081 2018-07-21 10:32:38 -05:00
parent d5b01aced2
commit bbee2debff
2 changed files with 761 additions and 765 deletions

File diff suppressed because it is too large Load Diff

View File

@ -51,7 +51,7 @@ public class BukkitLocalQueue_1_9 extends BukkitLocalQueue<char[]> {
ReflectionUtils.RefClass classWorld = getRefClass("{nms}.World");
this.tileEntityListTick = classWorld.getField("tileEntityListTick");
this.methodGetWorld = classChunk.getMethod("getWorld");
this.methodW = classWorld.getMethod("r", classBlockPosition.getRealClass());
this.methodW = classWorld.getMethod("w", classBlockPosition.getRealClass());
this.fieldSections = classChunk.getField("sections");
this.fieldWorld = classChunk.getField("world");
ReflectionUtils.RefClass classBlock = getRefClass("{nms}.Block");