diff options
| -rw-r--r-- | build.properties | 2 | ||||
| -rw-r--r-- | src/main/java/com/github/bartimaeusnek/crossmod/GTpp/loader/RadioHatchCompat.java | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/build.properties b/build.properties index 5757859380..ecc130725e 100644 --- a/build.properties +++ b/build.properties @@ -23,7 +23,7 @@ mc_version=1.7.10 majorUpdate=0 minorUpdate=4 -buildNumber=18_pre3 +buildNumber=18 APIVersion=7 ic2.version=2.2.828-experimental gregtech.version=5.09.32.36 diff --git a/src/main/java/com/github/bartimaeusnek/crossmod/GTpp/loader/RadioHatchCompat.java b/src/main/java/com/github/bartimaeusnek/crossmod/GTpp/loader/RadioHatchCompat.java index 8721026957..1c48eae294 100644 --- a/src/main/java/com/github/bartimaeusnek/crossmod/GTpp/loader/RadioHatchCompat.java +++ b/src/main/java/com/github/bartimaeusnek/crossmod/GTpp/loader/RadioHatchCompat.java @@ -141,7 +141,7 @@ public class RadioHatchCompat implements Runnable { ownerItems.replace(ui,bartworks,gtpp); String tanslate = it.getUnlocalizedName()+".name="+RadioHatchCompat.localizedName.get(mats)+" Rod"; - TranslateSet.add(tanslate); + RadioHatchCompat.TranslateSet.add(tanslate); DebugLog.log(tanslate); DebugLog.log("Generate: " + RadioHatchCompat.rod + RadioHatchCompat.unlocalizedName.get(mats)); @@ -178,11 +178,11 @@ public class RadioHatchCompat implements Runnable { static final HashMap<Object,Integer> BUFFER = new HashMap<>(); - public GTPPRadAdapter(Object m) { + GTPPRadAdapter(Object m) { this.m = m; } - public GTPPRadAdapter(int amount, Object m) { + GTPPRadAdapter(int amount, Object m) { this.amount = (byte) amount; this.m = m; } |
