[MIRROR] More gripper fixes v2.0 (#11143)

Co-authored-by: Cameron Lennox <killer65311@gmail.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-07-05 13:07:01 -07:00
committed by GitHub
parent 98303f3dd1
commit f34807d34e
6 changed files with 55 additions and 16 deletions

View File

@@ -419,7 +419,11 @@
return
/obj/item/stack/attackby(obj/item/W as obj, mob/user as mob)
if (istype(W, /obj/item/stack))
if(istype(W, /obj/item/gripper))
var/obj/item/gripper/G = W
G.consolidate_stacks(src)
else if(istype(W, /obj/item/stack))
var/obj/item/stack/S = W
src.transfer_to(S)