update level/block
This commit is contained in:
Binary file not shown.
@ -1155,46 +1155,60 @@ type (
|
||||
Powered Boolean `nbt:"powered"`
|
||||
}
|
||||
SkeletonSkull struct {
|
||||
Powered Boolean `nbt:"powered"`
|
||||
Rotation Integer `nbt:"rotation"`
|
||||
}
|
||||
SkeletonWallSkull struct {
|
||||
Facing Direction `nbt:"facing"`
|
||||
Powered Boolean `nbt:"powered"`
|
||||
}
|
||||
WitherSkeletonSkull struct {
|
||||
Powered Boolean `nbt:"powered"`
|
||||
Rotation Integer `nbt:"rotation"`
|
||||
}
|
||||
WitherSkeletonWallSkull struct {
|
||||
Facing Direction `nbt:"facing"`
|
||||
Powered Boolean `nbt:"powered"`
|
||||
}
|
||||
ZombieHead struct {
|
||||
Powered Boolean `nbt:"powered"`
|
||||
Rotation Integer `nbt:"rotation"`
|
||||
}
|
||||
ZombieWallHead struct {
|
||||
Facing Direction `nbt:"facing"`
|
||||
Powered Boolean `nbt:"powered"`
|
||||
}
|
||||
PlayerHead struct {
|
||||
Powered Boolean `nbt:"powered"`
|
||||
Rotation Integer `nbt:"rotation"`
|
||||
}
|
||||
PlayerWallHead struct {
|
||||
Facing Direction `nbt:"facing"`
|
||||
Powered Boolean `nbt:"powered"`
|
||||
}
|
||||
CreeperHead struct {
|
||||
Powered Boolean `nbt:"powered"`
|
||||
Rotation Integer `nbt:"rotation"`
|
||||
}
|
||||
CreeperWallHead struct {
|
||||
Facing Direction `nbt:"facing"`
|
||||
Powered Boolean `nbt:"powered"`
|
||||
}
|
||||
DragonHead struct {
|
||||
Powered Boolean `nbt:"powered"`
|
||||
Rotation Integer `nbt:"rotation"`
|
||||
}
|
||||
DragonWallHead struct {
|
||||
Facing Direction `nbt:"facing"`
|
||||
Powered Boolean `nbt:"powered"`
|
||||
}
|
||||
PiglinHead struct {
|
||||
Powered Boolean `nbt:"powered"`
|
||||
Rotation Integer `nbt:"rotation"`
|
||||
}
|
||||
PiglinWallHead struct {
|
||||
Facing Direction `nbt:"facing"`
|
||||
Powered Boolean `nbt:"powered"`
|
||||
}
|
||||
Anvil struct {
|
||||
Facing Direction `nbt:"facing"`
|
||||
@ -1416,7 +1430,9 @@ type (
|
||||
Waterlogged Boolean `nbt:"waterlogged"`
|
||||
}
|
||||
SlimeBlock struct{}
|
||||
Barrier struct{}
|
||||
Barrier struct {
|
||||
Waterlogged Boolean `nbt:"waterlogged"`
|
||||
}
|
||||
Light struct {
|
||||
Level Integer `nbt:"level"`
|
||||
Waterlogged Boolean `nbt:"waterlogged"`
|
||||
|
Binary file not shown.
@ -2,9 +2,7 @@ package pers.tnze.gomc.gen;
|
||||
|
||||
import com.google.common.collect.ImmutableMap;
|
||||
import net.minecraft.SharedConstants;
|
||||
import net.minecraft.core.DefaultedRegistry;
|
||||
import net.minecraft.core.registries.BuiltInRegistries;
|
||||
import net.minecraft.core.registries.Registries;
|
||||
import net.minecraft.nbt.*;
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
import net.minecraft.server.Bootstrap;
|
||||
@ -20,7 +18,6 @@ import java.io.DataOutputStream;
|
||||
import java.io.FileOutputStream;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
import java.util.zip.GZIPOutputStream;
|
||||
|
||||
public class GenBlocks {
|
||||
|
Reference in New Issue
Block a user