Skip to content

Commit

Permalink
req
Browse files Browse the repository at this point in the history
  • Loading branch information
arygal committed Feb 28, 2025
1 parent aaab23b commit d800b9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/human/human.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2269,8 +2269,8 @@
if(B.max_storage_space < B.storage_space_used() + SIZE_TINY)
continue
F.attackby(B, src)
if(istype(src.pulling, /obj/structure/ore_box) && B.storage_space_used())
var/obj/structure/ore_box/O = src.pulling
if(istype(pulling, /obj/structure/ore_box) && B.storage_space_used())
var/obj/structure/ore_box/O = pulling
O.attackby(B, src)
break

Expand Down
4 changes: 2 additions & 2 deletions code/modules/mob/living/silicon/robot/robot.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,7 @@
if(B.max_storage_space < B.storage_space_used() + SIZE_TINY)
continue
F.attackby(B, src)
if(istype(src.pulling, /obj/structure/ore_box) && B.storage_space_used())
var/obj/structure/ore_box/O = src.pulling
if(istype(pulling, /obj/structure/ore_box) && B.storage_space_used())
var/obj/structure/ore_box/O = pulling
O.attackby(B, src)
break

0 comments on commit d800b9c

Please sign in to comment.