mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-29 18:31:03 +00:00
10 lines
321 B
Plaintext
10 lines
321 B
Plaintext
/obj/item/stack/material/attack(mob/living/M as mob, mob/living/user as mob)
|
|
if(M.handle_eat_minerals(src, user))
|
|
return
|
|
..()
|
|
|
|
/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
|
|
..()
|