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
+2 -2
View File
@@ -749,11 +749,11 @@
return 0
var/mob/living/carbon/human/H = user
if (istype(H))
if(H.brainloss >= 60)
if(H.getBrainLoss() >= 60)
for(var/mob/M in viewers(src, null))
M << "\red [H] stares cluelessly at [src] and drools."
return 0
else if(prob(H.brainloss))
else if(prob(H.getBrainLoss()))
user << "\red You momentarily forget how to use [src]."
return 0
return 1