fixes cyborg gripper issues (#7558)

This commit is contained in:
silicons
2026-03-28 20:41:37 +00:00
committed by GitHub
parent 3c730c0c83
commit e01b0a36b2
13 changed files with 141 additions and 133 deletions
@@ -127,18 +127,6 @@
src.updateUsrDialog()
return 0
if(istype(O,/obj/item/gripper))
var/obj/item/gripper/B = O //B, for Borg.
if(!B.get_item())
to_chat(user, "\The [B] is not holding anything.")
return 0
else
var/B_held = B.get_item()
to_chat(user, "You use \the [B] to load \the [src] with \the [B_held].")
attackby(B_held, user)
return 0
if(!sheet_reagents[O.type] && (!O.reagents || !O.reagents.total_volume))
to_chat(user, "\The [O] is not suitable for blending.")
return 1