aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/forestry/bees/handler
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/forestry/bees/handler')
-rw-r--r--src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_CombType.java12
-rw-r--r--src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_DropType.java10
-rw-r--r--src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PollenType.java10
-rw-r--r--src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PropolisType.java10
4 files changed, 21 insertions, 21 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_CombType.java b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_CombType.java
index 3495869c97..4bc47fa7bd 100644
--- a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_CombType.java
+++ b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_CombType.java
@@ -13,13 +13,13 @@ public enum GTPP_CombType {
FORCE(1, "Force", true, 30, Utils.rgbtoHexValue(250, 250, 20), Utils.rgbtoHexValue(200, 200, 5));
public boolean mShowInList;
- public Material mMaterial;
- public int mChance;
- public int mID;
+ public final Material mMaterial;
+ public final int mChance;
+ public final int mID;
- private String mName;
- private String mNameUnlocal;
- private int[] mColour;
+ private final String mName;
+ private final String mNameUnlocal;
+ private final int[] mColour;
private static void map(int aId, GTPP_CombType aType) {
GTPP_Bees.sCombMappings.put(aId, aType);
diff --git a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_DropType.java b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_DropType.java
index cbf448b7f6..6f43d4a43e 100644
--- a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_DropType.java
+++ b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_DropType.java
@@ -13,13 +13,13 @@ public enum GTPP_DropType {
FORCE(1, "Force", true, Utils.rgbtoHexValue(250, 250, 20), Utils.rgbtoHexValue(200, 200, 5));
public boolean mShowInList;
- public Material mMaterial;
+ public final Material mMaterial;
public int mChance;
- public int mID;
+ public final int mID;
- private String mName;
- private String mNameUnlocal;
- private int[] mColour;
+ private final String mName;
+ private final String mNameUnlocal;
+ private final int[] mColour;
private static void map(int aId, GTPP_DropType aType) {
GTPP_Bees.sDropMappings.put(aId, aType);
diff --git a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PollenType.java b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PollenType.java
index ec49643001..acca5b810f 100644
--- a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PollenType.java
+++ b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PollenType.java
@@ -12,13 +12,13 @@ public enum GTPP_PollenType {
DRAGONBLOOD(0, "Dragon Blood", true, Utils.rgbtoHexValue(220, 20, 20), Utils.rgbtoHexValue(20, 20, 20));
public boolean mShowInList;
- public Material mMaterial;
+ public final Material mMaterial;
public int mChance;
- public int mID;
+ public final int mID;
- private String mName;
- private String mNameUnlocal;
- private int[] mColour;
+ private final String mName;
+ private final String mNameUnlocal;
+ private final int[] mColour;
private static void map(int aId, GTPP_PollenType aType) {
GTPP_Bees.sPollenMappings.put(aId, aType);
diff --git a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PropolisType.java b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PropolisType.java
index b857827d62..b76d79d387 100644
--- a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PropolisType.java
+++ b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PropolisType.java
@@ -13,13 +13,13 @@ public enum GTPP_PropolisType {
FORCE(1, "Force", true, Utils.rgbtoHexValue(250, 250, 20));
public boolean mShowInList;
- public Material mMaterial;
+ public final Material mMaterial;
public int mChance;
- public int mID;
+ public final int mID;
- private String mName;
- private String mNameUnlocal;
- private int mColour;
+ private final String mName;
+ private final String mNameUnlocal;
+ private final int mColour;
private static void map(int aId, GTPP_PropolisType aType) {
GTPP_Bees.sPropolisMappings.put(aId, aType);