From 6c5a922cd7ec87ef633638e15196df216f48c53b Mon Sep 17 00:00:00 2001 From: David Vierra Date: Tue, 30 Jan 2018 01:23:30 -1000 Subject: Also fix the crafting and machine recipes for the gears themselves --- src/Java/gtPlusPlus/core/material/Material.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/gtPlusPlus/core') diff --git a/src/Java/gtPlusPlus/core/material/Material.java b/src/Java/gtPlusPlus/core/material/Material.java index eb20e831ac..5197b2e34b 100644 --- a/src/Java/gtPlusPlus/core/material/Material.java +++ b/src/Java/gtPlusPlus/core/material/Material.java @@ -474,7 +474,7 @@ public class Material { } public final ItemStack getGear(final int stacksize){ - return ItemUtils.getItemStackOfAmountFromOreDictNoBroken("gear"+this.unlocalizedName, stacksize); + return ItemUtils.getItemStackOfAmountFromOreDictNoBroken("gearGt"+this.unlocalizedName, stacksize); } public final ItemStack getRod(final int stacksize){ -- cgit