Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -414,10 +414,10 @@
createditem_num = 3

/datum/anvil_recipe/tools/iron/scrap
name = "Pieces Of Scrap, Iron (x2)"
name = "Pieces Of Scrap, Iron (x6)"
req_bar = /obj/item/ingot/iron
created_item = /obj/item/scrap
createditem_num = 2
createditem_num = 6 // Caustic Edit / Makes smithing scrap more worth it than breaking down bars.

/datum/anvil_recipe/tools/iron/cups
name = "Cups, Iron (x3)"
Expand Down
2 changes: 2 additions & 0 deletions code/modules/roguetown/roguejobs/miner/rogueores.dm
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,8 @@
grid_width = 64
grid_height = 32

obj_flags = CAN_BE_HIT // Caustic Edit / For a fix to make iron be able to be disassembled into scrap via a stake. This also makes ingots destructable, so be careful

/obj/item/ingot/examine()
. += ..()
if(currecipe)
Expand Down
Loading