Skip to content

Commit

Permalink
Фикс линтера
Browse files Browse the repository at this point in the history
  • Loading branch information
PhantornRU committed Mar 28, 2024
1 parent 0ddd071 commit 529e22a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modular_ss220/antagonists/code/vox_raider/objects/vox_shop.dm
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,9 @@
else if(length(objs_for_contain))
for(var/obj/obj as anything in objs_for_contain)
if(isitem(obj))
if(!user.put_in_any_hand_if_possible(obj))
user.equip_or_collect(obj, SLOT_HUD_IN_BACKPACK)
if(!user.put_in_any_hand_if_possible(obj) && ishuman(user))
var/mob/living/carbon/human/H = user
H.equip_or_collect(obj, SLOT_HUD_IN_BACKPACK)
else
obj.forceMove(get_turf(src))

Expand Down

0 comments on commit 529e22a

Please sign in to comment.