Amend Nomenclature for Clarity & Consistency

Opted to leave the trait datum type and name for the sake of reference & mild humour.
This commit is contained in:
KasparoVy
2020-05-22 12:06:53 -04:00
parent 1a5bdf4e98
commit fd665ed938
6 changed files with 21 additions and 21 deletions

View File

@@ -125,12 +125,12 @@
//VOREStation Add
/obj/item/weapon/ore/attack(mob/living/M as mob, mob/living/user as mob)
if(M.handle_eat_ore(src, user))
if(M.handle_eat_minerals(src, user))
return
..()
/obj/item/weapon/ore/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_ore(src))
if(user.handle_eat_minerals(src))
return
..()
//VOREStation Add End