From 6e76fbc6bb1c2f3e2fc8c73273fbae039dab290b Mon Sep 17 00:00:00 2001 From: Seris02 <49109742+Seris02@users.noreply.github.com> Date: Sun, 10 Oct 2021 22:27:41 +0800 Subject: [PATCH] runtime fix (#8735) --- code/game/objects/items/stacks/rods.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/stacks/rods.dm b/code/game/objects/items/stacks/rods.dm index e79ac0605cd..6e4812868cc 100644 --- a/code/game/objects/items/stacks/rods.dm +++ b/code/game/objects/items/stacks/rods.dm @@ -78,7 +78,7 @@ GLOBAL_LIST_INIT(rod_recipes, list ( \ if (!R && replace) user.put_in_hands(new_item) // SKYRAT EDIT ADDITION BEGIN: Reagent Forging - if(istype(W, /obj/item/forging/tongs)) + else if(istype(W, /obj/item/forging/tongs)) var/obj/searchObj = locate(/obj) in W.contents if(searchObj) to_chat(user, span_warning("The tongs are already holding something, make room."))