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
+2 -2
View File
@@ -780,11 +780,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