diff --git a/code/modules/cargo/packs/misc.dm b/code/modules/cargo/packs/misc.dm index c6728831eb..394b86bb81 100644 --- a/code/modules/cargo/packs/misc.dm +++ b/code/modules/cargo/packs/misc.dm @@ -13,6 +13,13 @@ //////////////////// Paperwork and Writing Supplies ////////////////////////// ////////////////////////////////////////////////////////////////////////////// + +/datum/supply_pack/misc/anvil + name = "Anvil Crate" + desc = "An anvil in a crate, we had to dig this out of the old warehouse. It's got wheels on it so you can move it." + cost = 7500 + contains = list(/obj/structure/anvil/obtainable/basic) + /datum/supply_pack/misc/artsupply name = "Art Supplies" desc = "Make some happy little accidents with six canvasses, two easels, two boxes of crayons, and a rainbow crayon!" diff --git a/code/modules/smithing/anvil.dm b/code/modules/smithing/anvil.dm index 477a337f18..fc4608361b 100644 --- a/code/modules/smithing/anvil.dm +++ b/code/modules/smithing/anvil.dm @@ -252,7 +252,7 @@ name = "anvil" desc = "An anvil. It's got wheels bolted to the bottom." anvilquality = 0 - itemqualitymax = 5 + itemqualitymax = 6 /obj/structure/anvil/obtainable/ratvar name = "brass anvil" diff --git a/code/modules/smithing/smithed_items.dm b/code/modules/smithing/smithed_items.dm index 4c23a28aff..daa16e2da3 100644 --- a/code/modules/smithing/smithed_items.dm +++ b/code/modules/smithing/smithed_items.dm @@ -103,7 +103,7 @@ qualname = "shoddy" if(-1000 to -1) qualname = "poor" - if(0) + if(-1 to 1) qualname = "normal" if(10 to INFINITY) qualname = "legendary"