Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 6a07169

Browse files
yre (#22837)
1 parent 3d388c6 commit 6a07169

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/game/objects/structures/tables_racks.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@
210210
I.pixel_x = clamp(text2num(click_params["icon-x"]) - 16, -(world.icon_size/2), world.icon_size/2)
211211
I.pixel_y = clamp(text2num(click_params["icon-y"]) - 16, -(world.icon_size/2), world.icon_size/2)
212212
return 1
213-
else if(!user.combat_mode) // can't drop the item but not in combat mode, try deconstructing instead
213+
else if(!user.combat_mode && !(I.item_flags & ABSTRACT)) // can't drop the item but not in combat mode, try deconstructing instead
214214
return attackby_secondary(I, user, params)
215215
else
216216
return ..()

0 commit comments

Comments
 (0)