Skip to content

Commit

Permalink
Water/Lava buckets can now be cast with a casting table! There you go @…
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Oct 16, 2014
1 parent cbe57a0 commit 90e23e3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/tconstruct/smeltery/TinkerSmeltery.java
Expand Up @@ -970,6 +970,10 @@ private void addRecipesForTableCasting ()
}
}

// water and lava bucket
tableCasting.addCastingRecipe(new ItemStack(Items.water_bucket), new FluidStack(FluidRegistry.WATER, FluidContainerRegistry.BUCKET_VOLUME), bucket, true, 10);
tableCasting.addCastingRecipe(new ItemStack(Items.lava_bucket), new FluidStack(FluidRegistry.LAVA, FluidContainerRegistry.BUCKET_VOLUME), bucket, true, 10);

// Clear glass pane casting
tableCasting.addCastingRecipe(new ItemStack(TinkerSmeltery.glassPane), new FluidStack(TinkerSmeltery.moltenGlassFluid, 250), null, 80);

Expand Down

0 comments on commit 90e23e3

Please sign in to comment.