Merge pull request #5056 from Citadel-Station-13/upstream-merge-34796

[MIRROR] Fixes emergency lights having null brightness
This commit is contained in:
LetterJay
2018-01-24 13:52:55 -06:00
committed by GitHub
+1 -1
View File
@@ -222,7 +222,7 @@
var/start_with_cell = TRUE // if true, this fixture generates a very weak cell at roundstart
var/emergency_mode = FALSE // if true, the light is in emergency mode
var/no_emergency = FALSE // if true, this light cannot ever have an emergency mode
var/bulb_emergency_brightness_mul // multiplier for this light's base brightness in emergency power mode
var/bulb_emergency_brightness_mul = 0.25 // multiplier for this light's base brightness in emergency power mode
var/bulb_emergency_colour = "#FF3232" // determines the colour of the light while it's in emergency mode
var/bulb_emergency_pow_mul = 0.75 // the multiplier for determining the light's power in emergency mode
var/bulb_emergency_pow_min = 0.5 // the minimum value for the light's power in emergency mode