brainloss is now only referenced via procs.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2874 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
rockdtben
2011-12-30 17:47:35 +00:00
parent d203ae189d
commit 5b691f8727
11 changed files with 18 additions and 18 deletions
@@ -143,7 +143,7 @@
if (src.stat == 1)
usr << "\red [src.name] doesn't seem to be responding to anything around [t_him], [t_his] eyes closed as though asleep."
else if (src.brainloss >= 60)
else if (src.getBrainLoss() >= 60)
usr << "\red [src.name] has a stupid expression on [t_his] face."
if (!src.client)
usr << "\red [src.name] doesn't seem as though they want to talk."
+1 -1
View File
@@ -153,7 +153,7 @@
if (disabilities & 16)
if (prob(10))
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
@@ -60,7 +60,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
@@ -123,7 +123,7 @@
return
// :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 @@
var/ending = copytext(text, length(text))
if (src.stuttering)
return "stammers, \"[text]\"";
if (src.brainloss >= 60)
if (src.getBrainLoss() >= 60)
return "gibbers, \"[text]\"";
if (ending == "?")
return "asks, \"[text]\"";