Standardize CLUMSY

This commit is contained in:
Rob Nelson
2014-01-21 13:53:13 -08:00
parent c815e94973
commit 9ac97dd1c0
32 changed files with 46 additions and 46 deletions

View File

@@ -60,7 +60,7 @@
/obj/item/weapon/firbang/afterattack(atom/target as mob|obj|turf|area, mob/user as mob)
if (user.get_active_hand() == src)
if ((CLUMSY in usr.mutations) && prob(50))
if ((M_CLUMSY in usr.mutations) && prob(50))
user << "\red Huh? How does this thing work?!"
src.state = 1
src.icon_state = "flashbang1"
@@ -108,7 +108,7 @@
/obj/item/weapon/firbang/attack_self(mob/user as mob)
if (!src.state)
if (CLUMSY in user.mutations)
if (M_CLUMSY in user.mutations)
user << "\red Huh? How does this thing work?!"
spawn( 5 )
prime()