mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
-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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user