mirror of https://github.com/LOOHP/Limbo.git
Fixed nether namespace
This commit is contained in:
parent
7103bd0eb1
commit
96bb492fc4
|
|
@ -61,7 +61,7 @@ public class PacketPlayOutMapChunk extends Packet {
|
|||
// output.writeInt(i);
|
||||
//}
|
||||
for (int i = 0; i < 1024; i++) {
|
||||
output.writeInt(17);
|
||||
output.writeInt(127);
|
||||
}
|
||||
|
||||
ByteArrayOutputStream dataBuffer = new ByteArrayOutputStream();
|
||||
|
|
|
|||
|
|
@ -29,9 +29,9 @@ public class DimensionRegistry {
|
|||
overworld.putString("infiniburn", "");
|
||||
|
||||
CompoundTag nether = new CompoundTag();
|
||||
nether.putString("name", "minecraft:nether");
|
||||
nether.putString("name", "minecraft:the_nether");
|
||||
nether.putByte("natural", (byte) 0);
|
||||
nether.putFloat("ambient_light", 0.6F);
|
||||
nether.putFloat("ambient_light", 0.3F);
|
||||
nether.putByte("has_ceiling", (byte) 1);
|
||||
nether.putByte("has_skylight", (byte) 0);
|
||||
nether.putLong("fixed_time", 0);
|
||||
|
|
@ -41,7 +41,7 @@ public class DimensionRegistry {
|
|||
nether.putByte("respawn_anchor_works", (byte) 1);
|
||||
nether.putByte("bed_works", (byte) 0);
|
||||
nether.putByte("piglin_safe", (byte) 1);
|
||||
nether.putInt("logical_height", 256);
|
||||
nether.putInt("logical_height", 128);
|
||||
nether.putString("infiniburn", "");
|
||||
|
||||
CompoundTag the_end = new CompoundTag();
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ server-ip=localhost
|
|||
#World Name and the Schematic file containing map
|
||||
level-name=world;spawn.schem
|
||||
|
||||
#Dimension, "minecraft:overworld", "minecraft:nether" or "minecraft:the_end"
|
||||
#Dimension, "minecraft:overworld", "minecraft:the_nether" or "minecraft:the_end"
|
||||
level-dimension=minecraft:the_end
|
||||
|
||||
#Whether Flying is allowed
|
||||
|
|
|
|||
Loading…
Reference in New Issue