Gripper fixes (#19436)

* Fixes compile warning

* SANE ARGS

* return YES NO

* Better
This commit is contained in:
Cameron Lennox
2026-04-26 21:19:22 -04:00
committed by GitHub
parent 610541993e
commit 4760085246
114 changed files with 790 additions and 671 deletions
@@ -1,9 +1,9 @@
/obj/item/stack/material/attack(mob/living/M as mob, mob/living/user as mob)
/obj/item/stack/material/attack(mob/living/M, mob/living/user, target_zone, attack_modifier)
if(M.handle_eat_minerals(src, user))
return
return ITEM_INTERACT_SUCCESS
..()
/obj/item/stack/material/attack_generic(var/mob/living/user) //Allow adminbussed mobs to eat ore if they click it while NOT on help intent.
if(user.handle_eat_minerals(src))
return
return ITEM_INTERACT_SUCCESS
..()