GregTech 4

GregTech 4

5.7k Downloads

GT4 breaks balance with sticks

DrParadox7 opened this issue ยท 1 comments

commented

Before we would get 4 sticks from 2 planks in Minecraft.

Now GT4 needlessly buffs that by a whole 25%! /s
image

This has been occurring since version 4.15.32 and I see no mention of this game breaking mechanic in the changelogs:
https://github.com/Nukepowered/GregTech4/releases/tag/4.15.32

It's probably something to do with the saw recipes:
image

commented

tStack = GT_Utility.copyAmount(GT_Mod.sNerfedWoodPlank ? (tStack.stackSize) : ((tStack.stackSize * 5 / 4)), tStack);
GameRegistry.addRecipe(new ShapedOreRecipe(tStack, "S", "P", "P", 'P', "plankWood", 'S', GT_ToolDictNames.craftingToolSaw.toString()));
tStack = GT_Utility.copyAmount(GT_Mod.sNerfedWoodPlank ? ((tStack.stackSize / 2)) : (tStack.stackSize), tStack);
GameRegistry.addRecipe(new ShapedOreRecipe(tStack, "P", "P", 'P', "plankWood"));

The second tStack definition is reusing the first one, which has size of 5 to account the saw buff with wood crafting nerf option disabled.