-Fixes issue 690

-Made my comment less ambiguous

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4391 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
rockdtben@gmail.com
2012-08-13 13:21:02 +00:00
parent bfd80f5854
commit bf9f922390
2 changed files with 6 additions and 2 deletions

View File

@@ -10,8 +10,9 @@
proc/activate()
return
// What does the implant do upon injection?
// return 0 if the implant fails to persist (ex. Revhead and loyalty implant.)
// return 0 if the implant fails (ex. Revhead and loyalty implant.)
// return 1 if the implant succeeds (ex. Nonrevhead and loyalty implant.)
proc/implanted(var/mob/source)
return 1

View File

@@ -412,8 +412,11 @@
if(breath.temperature > (T0C+66) && !(COLD_RESISTANCE in mutations)) // Hot air hurts :(
if(prob(20))
src << "\red You feel a searing heat in your lungs!"
src << "\red You feel your face burning and a searing heat in your lungs!"
fire_alert = max(fire_alert, 1)
var/transfer_coefficient = 100000 // Burning air is being forced into your lungs and mouth
handle_temperature_damage(HEAD, breath.temperature, breath.heat_capacity()*transfer_coefficient)
handle_temperature_damage(UPPER_TORSO, breath.temperature, breath.heat_capacity()*transfer_coefficient)
else
fire_alert = 0