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

Commit

Permalink
Updates tube lights to LIGHT_COLOR_HALOGEN
Browse files Browse the repository at this point in the history
Just tubes, not all lights. This was suggested based on the new lighting system in terms of both aesthetics and performance. It has a cooler feel than the current.
  • Loading branch information
ItsAnJonth committed Feb 11, 2019
1 parent 66d5009 commit 14ad69d
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 14ad69d

Please sign in to comment.