Skip to content

Commit

Permalink
yre (#22837)
Browse files Browse the repository at this point in the history
  • Loading branch information
warface1234455 authored Dec 10, 2024
1 parent 3d388c6 commit 6a07169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/objects/structures/tables_racks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..()
Expand Down

0 comments on commit 6a07169

Please sign in to comment.