Update Tree names

This commit is contained in:
RedSparr0w
2019-10-12 15:17:34 +13:00
parent 32508f4d65
commit 68c253de47
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
<project version="4">
<component name="ChangeListManager">
<list default="true" id="3ab8e8a0-ccfd-4b0b-9547-98173085dc38" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/ParaScript/data/variables/Trees.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/ParaScript/data/variables/Trees.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/ParaScript/ui/UI.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/ParaScript/ui/UI.java" afterDir="false" />
</list>
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
+4 -4
View File
@@ -5,10 +5,10 @@ import java.util.Arrays;
import java.util.List;
public enum Trees {
NORMAL("normal", new int[]{1276, 1278}),
OAK("oak", new int[]{1281}),
WILLOW ("willow", new int[]{5551, 1308, 5553, 5552}),
MAPLE("maple", new int[]{1307});
NORMAL("Normal", new int[]{1276, 1278}),
OAK("Oak", new int[]{1281}),
WILLOW ("Willow", new int[]{5551, 1308, 5553, 5552}),
MAPLE("Maple", new int[]{1307});
private String name;
private int[] trees;