Fixes HUD sunglasses deconstruction (#15444)

* sunglasses

* Unit test test

* Unit test test tested
This commit is contained in:
SabreML
2021-03-14 13:17:20 +00:00
committed by GitHub
parent 181d282848
commit 76e237edc5
12 changed files with 198 additions and 179 deletions

View File

@@ -177,7 +177,7 @@
// Crafting recipes
/datum/crafting_recipe/violin
name = "Violin"
result = /obj/item/instrument/violin
result = list(/obj/item/instrument/violin)
reqs = list(/obj/item/stack/sheet/wood = 5,
/obj/item/stack/cable_coil = 6,
/obj/item/stack/tape_roll = 5)
@@ -187,7 +187,7 @@
/datum/crafting_recipe/guitar
name = "Guitar"
result = /obj/item/instrument/guitar
result = list(/obj/item/instrument/guitar)
reqs = list(/obj/item/stack/sheet/wood = 5,
/obj/item/stack/cable_coil = 6,
/obj/item/stack/tape_roll = 5)
@@ -197,7 +197,7 @@
/datum/crafting_recipe/eguitar
name = "Electric Guitar"
result = /obj/item/instrument/eguitar
result = list(/obj/item/instrument/eguitar)
reqs = list(/obj/item/stack/sheet/metal = 5,
/obj/item/stack/cable_coil = 6,
/obj/item/stack/tape_roll = 5)
@@ -207,7 +207,7 @@
/datum/crafting_recipe/banjo
name = "Banjo"
result = /obj/item/instrument/banjo
result = list(/obj/item/instrument/banjo)
reqs = list(/obj/item/stack/sheet/wood = 5,
/obj/item/stack/cable_coil = 6,
/obj/item/stack/tape_roll = 5)