Skip to content
This repository has been archived by the owner on Jan 22, 2020. It is now read-only.

Updates lights to LIGHT_COLOR_HALOGEN and LIGHT_COLOR_TUNGSTEN #829

Merged
merged 1 commit into from Feb 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions code/modules/power/lighting.dm
Expand Up @@ -581,7 +581,7 @@
var/broken_chance = 2
var/b_power = 0.9
var/b_range = 5
var/b_color = "#fffee0"
var/b_color = LIGHT_COLOR_HALOGEN
var/list/lighting_modes = list()
var/sound_on

Expand All @@ -592,7 +592,7 @@
base_state = "ltube"

b_range = 5
b_color = "#fffee0"
b_color = LIGHT_COLOR_HALOGEN
lighting_modes = list(
LIGHTMODE_EMERGENCY = list(l_range = 4, l_power = 1, l_color = "#da0205"),
)
Expand Down Expand Up @@ -623,7 +623,7 @@

b_power = 0.6
b_range = 4
b_color = "#fcfcc7"
b_color = LIGHT_COLOR_TUNGSTEN
lighting_modes = list(
LIGHTMODE_EMERGENCY = list(l_range = 3, l_power = 1, l_color = "#da0205"),
)
Expand Down