Files
VOREStation/code/modules/materials/materials/_materials_vr.dm
2021-04-28 12:25:36 -04:00

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
..()