Skip to content

Commit 6f9814b

Browse files
committed
$ Fixed some weird symbols I chose to use, which kept breaking the Gregtech.lang file
1 parent bf16efb commit 6f9814b

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
import gtPlusPlus.xmod.gregtech.api.enums.GregtechOrePrefixes.GT_Materials;
2525
import gtPlusPlus.xmod.gregtech.api.items.Gregtech_MetaItem_X32;
2626
import net.minecraft.item.EnumAction;
27-
import net.minecraft.util.EnumChatFormatting;
2827

2928
public class MetaGeneratedGregtechItems extends Gregtech_MetaItem_X32 {
3029
public MetaGeneratedGregtechItems INSTANCE;
@@ -176,7 +175,7 @@ public MetaGeneratedGregtechItems() {
176175

177176

178177
//FOOOOOOOOOOOOOOD
179-
GregtechItemList.Food_Baked_Raisin_Bread.set(addItem(tLastID = 60, "Raisin Bread", "Extra Raisins, Just for "+EnumChatFormatting.DARK_PURPLE+"ImQ009", new Object[]{new GT_FoodStat(5, 0.5F, EnumAction.eat, null, false, true, false, new int[0]), getTcAspectStack(TC_Aspects.CORPUS, 1L), getTcAspectStack(TC_Aspects.FAMES, 1L), getTcAspectStack(TC_Aspects.IGNIS, 1L)}));
178+
GregtechItemList.Food_Baked_Raisin_Bread.set(addItem(tLastID = 60, "Raisin Bread", "Extra Raisins, Just for ImQ009", new Object[]{new GT_FoodStat(5, 0.5F, EnumAction.eat, null, false, true, false, new int[0]), getTcAspectStack(TC_Aspects.CORPUS, 1L), getTcAspectStack(TC_Aspects.FAMES, 1L), getTcAspectStack(TC_Aspects.IGNIS, 1L)}));
180179

181180

182181

src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechDehydrator.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public GT_MetaTileEntity_BasicMachine_GT_Recipe(
4040

4141
GregtechItemList.GT_Dehydrator_EV.set(new GT_MetaTileEntity_BasicMachine_GT_Recipe(
4242
813, "advancedmachine.dehydrator.tier.01", "Chemical Dehydrator I", 4,
43-
"Remind Alkalus to add something here."+System.getProperty("line.separator")+CORE.GT_Tooltip,
43+
"Remind Alkalus to add something here."+CORE.GT_Tooltip,
4444
Recipe_GT.Gregtech_Recipe_Map.sChemicalDehydratorRecipes,
4545
2, 9,
4646
10000,
@@ -52,7 +52,7 @@ public GT_MetaTileEntity_BasicMachine_GT_Recipe(
5252
null).getStackForm(1L));
5353
GregtechItemList.GT_Dehydrator_IV.set(new GT_MetaTileEntity_BasicMachine_GT_Recipe(
5454
814, "advancedmachine.dehydrator.tier.02", "Chemical Dehydrator II", 5,
55-
"Remind Alkalus to add something here."+System.getProperty("line.separator")+CORE.GT_Tooltip,
55+
"Remind Alkalus to add something here."+CORE.GT_Tooltip,
5656
Recipe_GT.Gregtech_Recipe_Map.sChemicalDehydratorRecipes,
5757
2, 9,
5858
10000,
@@ -64,7 +64,7 @@ public GT_MetaTileEntity_BasicMachine_GT_Recipe(
6464
null).getStackForm(1L));
6565
GregtechItemList.GT_Dehydrator_LuV.set(new GT_MetaTileEntity_BasicMachine_GT_Recipe(
6666
815, "advancedmachine.dehydrator.tier.03", "Chemical Dehydrator III", 6,
67-
"Remind Alkalus to add something here."+System.getProperty("line.separator")+CORE.GT_Tooltip,
67+
"Remind Alkalus to add something here."+CORE.GT_Tooltip,
6868
Recipe_GT.Gregtech_Recipe_Map.sChemicalDehydratorRecipes,
6969
2, 9,
7070
10000,
@@ -76,7 +76,7 @@ public GT_MetaTileEntity_BasicMachine_GT_Recipe(
7676
null).getStackForm(1L));
7777
GregtechItemList.GT_Dehydrator_ZPM.set(new GT_MetaTileEntity_BasicMachine_GT_Recipe(
7878
816, "advancedmachine.dehydrator.tier.04", "Chemical Dehydrator IV", 7,
79-
"Remind Alkalus to add something here."+System.getProperty("line.separator")+CORE.GT_Tooltip,
79+
"Remind Alkalus to add something here."+CORE.GT_Tooltip,
8080
Recipe_GT.Gregtech_Recipe_Map.sChemicalDehydratorRecipes,
8181
2, 9,
8282
10000,

0 commit comments

Comments
 (0)