Small fixes

This commit is contained in:
paulevsGitch 2021-06-06 16:23:15 +03:00
parent 0d63530136
commit 6487efb3de
3 changed files with 1 additions and 25 deletions

View file

@ -6,7 +6,6 @@ import net.minecraft.world.level.block.state.properties.EnumProperty;
import net.minecraft.world.level.block.state.properties.IntegerProperty;
public class BlockProperties {
public static final EnumProperty<CactusBottom> CACTUS_BOTTOM = EnumProperty.create("bottom", CactusBottom.class);
public static final EnumProperty<TripleShape> TRIPLE_SHAPE = EnumProperty.create("shape", TripleShape.class);
public static final EnumProperty<PentaShape> PENTA_SHAPE = EnumProperty.create("shape", PentaShape.class);
@ -80,26 +79,4 @@ public class BlockProperties {
return name;
}
}
public enum CactusBottom implements StringRepresentable {
EMPTY("empty"),
SAND("sand"),
MOSS("moss");
private final String name;
CactusBottom(String name) {
this.name = name;
}
@Override
public String getSerializedName() {
return name;
}
@Override
public String toString() {
return name;
}
}
}

View file

@ -85,7 +85,6 @@ public class WeightedList<T> {
list.weights.add(weights.get(i));
list.values.add(values.get(i));
}
list.maxWeight = list.weights.get(end - 1);
return list;
}