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