TG: brainloss is now only referenced via procs. r2874

This commit is contained in:
Ren Erthilo
2012-03-26 23:20:45 +01:00
parent add06af9fd
commit e6b85575f6
9 changed files with 16 additions and 16 deletions
@@ -172,7 +172,7 @@
usr << "\blue [src.name] looks quite chubby."
if(!stat)
if (src.brainloss >= 60)
if (src.getBrainLoss() >= 60)
usr << "\red [src.name] has a stupid expression on [t_his] face."
if (!src.client)
+1 -1
View File
@@ -271,7 +271,7 @@
if (prob(10))//Instant Chad Ore!
stuttering = max(10, stuttering)
if (brainloss >= 60 && stat != 2)
if (getBrainLoss() >= 60 && stat != 2)
if (prob(7))
switch(pick(1,2,3))
if(1)
+2 -2
View File
@@ -71,7 +71,7 @@
var/message_range = null
var/message_mode = null
if (brainloss >= 60 && prob(50))
if (getBrainLoss() >= 60 && prob(50))
if (ishuman(src))
message_mode = "headset"
// Special message handling
@@ -160,7 +160,7 @@
message = capitalize(message) //capitalize the first letter of what they actually say
// :downs:
if (brainloss >= 60)
if (getBrainLoss() >= 60)
message = dd_replacetext(message, " am ", " ")
message = dd_replacetext(message, " is ", " ")
message = dd_replacetext(message, " are ", " ")
+1 -1
View File
@@ -59,7 +59,7 @@
return "stammers, \"[text]\"";
if (src.slurring)
return "slurrs, \"[text]\"";
if (src.brainloss >= 60)
if (src.getBrainLoss() >= 60)
return "gibbers, \"[text]\"";
if (ending == "?")
return "asks, \"[text]\"";