9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-29 12:09:07 +00:00

Fix nms environments for nether and end

This commit is contained in:
Daniel Mills
2020-12-20 21:03:53 -05:00
parent 0cce35908d
commit b5fa41cdc1
4 changed files with 19 additions and 4 deletions

View File

@@ -40,4 +40,9 @@ public class NMSBinding16_2 implements INMSBinding
baseBiomeCache.put(biome, v);
return v;
}
@Override
public boolean isBukkit() {
return false;
}
}

View File

@@ -39,4 +39,9 @@ public class NMSBinding16_3 implements INMSBinding
baseBiomeCache.put(biome, v);
return v;
}
@Override
public boolean isBukkit() {
return false;
}
}

View File

@@ -25,4 +25,9 @@ public class NMSBinding1X implements INMSBinding
public Object getBiomeBase(Object registry, Biome biome) {
return null;
}
@Override
public boolean isBukkit() {
return true;
}
}