diff --git a/code/game/objects/items/stacks/medical.dm b/code/game/objects/items/stacks/medical.dm index 6c891df47a..ccc00290db 100644 --- a/code/game/objects/items/stacks/medical.dm +++ b/code/game/objects/items/stacks/medical.dm @@ -194,10 +194,6 @@ amount = 5 max_amount = 5 -/obj/item/stack/medical/splint/single - amount = 1 - - /obj/item/stack/medical/splint/attack(mob/living/carbon/M as mob, mob/user as mob) if(..()) return 1 diff --git a/code/modules/mob/living/carbon/human/inventory.dm b/code/modules/mob/living/carbon/human/inventory.dm index 9c71f2efdd..5f784b8117 100644 --- a/code/modules/mob/living/carbon/human/inventory.dm +++ b/code/modules/mob/living/carbon/human/inventory.dm @@ -594,7 +594,7 @@ It can still be worn/put on as normal. for(var/organ in list("l_leg","r_leg","l_arm","r_arm")) var/datum/organ/external/o = target.get_organ(organ) if (o && o.status & ORGAN_SPLINTED) - var/obj/item/W = new /obj/item/stack/medical/splint/single() + var/obj/item/W = new /obj/item/stack/medical/splint(amount=1) o.status &= ~ORGAN_SPLINTED if (W) W.loc = target.loc diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index dcf05ce94a..b5720a448b 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -497,9 +497,7 @@ datum required_reagents = list("pacid" = 10, "plasticide" = 20) result_amount = 1 on_reaction(var/datum/reagents/holder) - var/obj/item/stack/sheet/metal/M = new /obj/item/stack/sheet/mineral/plastic - M.amount = 10 - M.loc = get_turf_loc(holder.my_atom) + new /obj/item/stack/sheet/mineral/plastic(get_turf(holder.my_atom),10) return virus_food