mirror of
https://github.com/PryPurity/WorldBorder.git
synced 2024-11-25 12:05:15 +01:00
bottom limit in 1.19 is -64 instead of 0
This commit is contained in:
parent
cff0b659c2
commit
c9559b0297
@ -13,7 +13,7 @@ public class BorderData {
|
||||
public static final EnumSet<Material> safeOpenBlocks = EnumSet.noneOf(Material.class);
|
||||
//these material IDs are ones we don't want to drop the player onto, like cactus or lava or fire or activated Ender portal
|
||||
public static final EnumSet<Material> painfulBlocks = EnumSet.noneOf(Material.class);
|
||||
private static final int limBot = 0;
|
||||
private static final int limBot = -64;
|
||||
|
||||
static {
|
||||
safeOpenBlocks.add(Material.AIR);
|
||||
|
Loading…
Reference in New Issue
Block a user