From 6a071690e4e8ac3d2c749578a1ee4c9a468b13a6 Mon Sep 17 00:00:00 2001 From: Bop Date: Tue, 10 Dec 2024 08:52:34 +0700 Subject: [PATCH] yre (#22837) --- code/game/objects/structures/tables_racks.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm index 9fe8444178f7..07612922f6a4 100644 --- a/code/game/objects/structures/tables_racks.dm +++ b/code/game/objects/structures/tables_racks.dm @@ -210,7 +210,7 @@ I.pixel_x = clamp(text2num(click_params["icon-x"]) - 16, -(world.icon_size/2), world.icon_size/2) I.pixel_y = clamp(text2num(click_params["icon-y"]) - 16, -(world.icon_size/2), world.icon_size/2) return 1 - else if(!user.combat_mode) // can't drop the item but not in combat mode, try deconstructing instead + else if(!user.combat_mode && !(I.item_flags & ABSTRACT)) // can't drop the item but not in combat mode, try deconstructing instead return attackby_secondary(I, user, params) else return ..()