Standardize mutations

This commit is contained in:
Markolie
2015-02-22 19:04:43 +01:00
parent 3b072b5a62
commit 982102a407
113 changed files with 282 additions and 282 deletions
+4 -4
View File
@@ -399,7 +399,7 @@
continue
M.show_message("[user.name] smashed the light!", 3, "You hear a tinkle of breaking glass", 2)
if(on && (W.flags & CONDUCT))
//if(!user.mutations & M_RESIST_COLD)
//if(!user.mutations & RESIST_COLD)
if (prob(12))
electrocute_mob(user, get_area(src), src, 0.3)
broken()
@@ -435,7 +435,7 @@
var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread
s.set_up(3, 1, src)
s.start()
//if(!user.mutations & M_RESIST_COLD)
//if(!user.mutations & RESIST_COLD)
if (prob(75))
electrocute_mob(user, get_area(src), src, rand(0.7,1.0))
@@ -511,9 +511,9 @@
else
prot = 1
if(prot > 0 || (M_RESIST_HEAT in user.mutations))
if(prot > 0 || (RESIST_HEAT in user.mutations))
user << "You remove the light [fitting]"
else if(M_TK in user.mutations)
else if(TK in user.mutations)
user << "You telekinetically remove the light [fitting]."
else
user << "You try to remove the light [fitting], but you burn your hand on it!"