[MIRROR] Gripper update (#11330)

Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-08-06 18:01:36 -04:00
committed by GitHub
co-authored by Cameron Lennox
parent 911234df75
commit 4239f5ab7c
12 changed files with 155 additions and 80 deletions
@@ -62,11 +62,12 @@
// Borgos!
if(istype(O,/obj/item/gripper))
var/obj/item/gripper/B = O //B, for Borg.
if(!B.wrapped)
var/obj/item/wrapped = B.get_current_pocket()
if(!wrapped)
to_chat(user, "\The [B] is not holding anything.")
return FALSE
else
var/B_held = B.wrapped
var/B_held = wrapped
to_chat(user, "You use \the [B] to load \the [src] with \the [B_held].")
return FALSE