Bug [Revelation] Steel item casing crafting bug

  • Thread starter Thread starter adamzach04
  • Start date Start date
  • Tech Support section is for getting help with FTB related problems. If there's a repeatable issue that can be labeled as a bug, then please use the issue tracker for the pack or the app at GitHub issue trackers - If there's no repository for a pack that means that the pack is old and/or will not be updated. Bugs for older packs will not be fixed, unless they are critical.
  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
A

adamzach04

Guest
Hi everyone, today i was about to craft some steel item casings when i found out that when i want to craft some , i need to use a full durability forge hammer. Whenever the durability is under 80, i cannot craft them anymore. So, i can only craft 2 steel item casings per (full durability) hammer. Any help? [Revelation 2.7.0]
 
This is a work around using MineTweaker. Create a new file "XX_filename.zs" and add this in. Goes in the "scripts" directory in your revelation pack directory. You will probably want to change "aurorlock.zs" to match "filename.zs".

Code:
#Name: aurorlock.zs
#Author: Aurorlock 

var steelPlate = <thermalfoundation:material:352>;
var steelCasing = <ic2:casing:5>;
var hammer = <ic2:forge_hammer>.anyDamage();

recipes.addShapeless( steelCasing * 2, [steelPlate, hammer] );