Merge pull request #9889 from PJB3005/bay-lights

Lighting optimizations + NVG meson fix
This commit is contained in:
Mloc
2015-07-09 14:50:10 +01:00
12 changed files with 172 additions and 120 deletions

View File

@@ -215,7 +215,7 @@
return
/mob/living/proc/adjust_fire_stacks(add_fire_stacks) //Adjusting the amount of fire_stacks we have on person
fire_stacks = Clamp(fire_stacks + add_fire_stacks, min = FIRE_MIN_STACKS, max = FIRE_MAX_STACKS)
fire_stacks = Clamp(fire_stacks + add_fire_stacks, FIRE_MIN_STACKS, FIRE_MAX_STACKS)
/mob/living/proc/handle_fire()
if(fire_stacks < 0)