diff options
Diffstat (limited to 'src/main/java/com/detrav/utils/GTppHelper.java')
-rw-r--r-- | src/main/java/com/detrav/utils/GTppHelper.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/detrav/utils/GTppHelper.java b/src/main/java/com/detrav/utils/GTppHelper.java index a46ebaf033..e773234e9e 100644 --- a/src/main/java/com/detrav/utils/GTppHelper.java +++ b/src/main/java/com/detrav/utils/GTppHelper.java @@ -10,8 +10,8 @@ import java.util.HashMap; * Created by bartimaeusnek on 19.04.2018. */ public class GTppHelper { - public static HashMap<Short,Material> decodeoresGTpp = new HashMap<>(); - public static HashMap<Material,Short> encodeoresGTpp = new HashMap<>(); + public static final HashMap<Short,Material> decodeoresGTpp = new HashMap<>(); + public static final HashMap<Material,Short> encodeoresGTpp = new HashMap<>(); public static void generate_OreIDs() { for (short n=0 ; n < gtPlusPlus.core.material.ORES.class.getFields().length ; ++n) { |