mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2024-12-23 00:15:06 +00:00
1.9.4 compatibility.
This commit is contained in:
parent
1db3d1aa72
commit
d5cf81be5c
1 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ public class SendChunk {
|
|||
this.methodInitLighting = classChunk.getMethod("initLighting");
|
||||
RefClass classMapChunk = getRefClass("{nms}.PacketPlayOutMapChunk");
|
||||
if (PS.get().checkVersion(PS.get().IMP.getServerVersion(), 1, 9, 4)) {
|
||||
this.mapChunk = null; //todo
|
||||
this.mapChunk = classMapChunk.getConstructor(classChunk.getRealClass(),int.class);
|
||||
} else {
|
||||
this.mapChunk = classMapChunk.getConstructor(classChunk.getRealClass(), boolean.class, int.class);
|
||||
}
|
||||
|
@ -111,7 +111,7 @@ public class SendChunk {
|
|||
Object con = this.connection.of(entity).get();
|
||||
Object packet;
|
||||
if (PS.get().checkVersion(PS.get().IMP.getServerVersion(), 1, 9, 4)) {
|
||||
packet = null; //todo
|
||||
packet = this.mapChunk.create(c,65535);
|
||||
} else {
|
||||
packet = this.mapChunk.create(c, true, 65535);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue