Skip to content

Commit

Permalink
core: Changed Smelting recipes for Salt Water Containers
Browse files Browse the repository at this point in the history
Fixes #306
  • Loading branch information
IceDragon200 committed Apr 9, 2016
1 parent 5ef2a84 commit 46d40c8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/java/growthcraft/core/init/GrcCoreRecipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ public void register()
Items.bucket,
saltStack, saltStack, saltStack, saltStack, saltStack, saltStack);

GameRegistry.addSmelting(GrowthCraftCore.fluids.saltWater.asBottleItemStack(), GrowthCraftCore.items.saltBottle.asStack(), 0.1F);
GameRegistry.addSmelting(GrowthCraftCore.fluids.saltWater.asBucketItemStack(), GrowthCraftCore.items.saltBucket.asStack(), 0.2F);
// BUG https://github.com/GrowthcraftCE/Growthcraft-1.7/issues/306
//GameRegistry.addSmelting(GrowthCraftCore.fluids.saltWater.asBottleItemStack(), GrowthCraftCore.items.saltBottle.asStack(), 0.1F);
//GameRegistry.addSmelting(GrowthCraftCore.fluids.saltWater.asBucketItemStack(), GrowthCraftCore.items.saltBucket.asStack(), 0.3F);

GameRegistry.addSmelting(GrowthCraftCore.fluids.saltWater.asBottleItemStack(), GrowthCraftCore.items.salt.asStack(2), 0.1F);
GameRegistry.addSmelting(GrowthCraftCore.fluids.saltWater.asBucketItemStack(), GrowthCraftCore.items.salt.asStack(6), 0.3F);
}
}

0 comments on commit 46d40c8

Please sign in to comment.