This commit is contained in:
Anuken
2022-01-20 23:06:04 -05:00
parent 8fc7aff7ef
commit b3d4dc06d4
6 changed files with 52 additions and 21 deletions

View File

@@ -34,7 +34,7 @@ public class WallCrafter extends Block{
public float updateEffectChance = 0.02f;
public float rotateSpeed = 2f;
/** Attribute to check for wall output. */
public Attribute attribute = Attribute.silicate;
public Attribute attribute = Attribute.sand;
public Item output = Items.sand;

View File

@@ -7,8 +7,8 @@ public class Attribute{
public static Attribute[] all = {};
public static ObjectMap<String, Attribute> map = new ObjectMap<>();
public static final Attribute
/** Heat content. Used for thermal generator yield. */
public static final Attribute
heat = add("heat"),
/** Spore content. Used for cultivator yield. */
spores = add("spores"),
@@ -18,8 +18,8 @@ public class Attribute{
oil = add("oil"),
/** Light coverage. Negative values decrease solar panel efficiency. */
light = add("light"),
/** Silicate content. Used for sand extraction. */
silicate = add("silicate"),
/** Used for sand extraction. */
sand = add("sand"),
/** Used for erekir vents only. */
vent = add("vent");