The stargazer light color is now the same as the sector (#15642)

This commit is contained in:
Alberyk
2023-01-29 19:17:47 -03:00
committed by GitHub
parent c76645127c
commit 42b834feab
2 changed files with 10 additions and 1 deletions
+4 -1
View File
@@ -28,7 +28,10 @@
else if(!(stat & NOPOWER))
icon_state = "stargazer_on"
add_overlay(star_system_image)
set_light(6, 2, LIGHT_COLOR_BLUE)
var/stargazer_light_color = LIGHT_COLOR_HALOGEN
if(SSatlas.current_sector.starlight_color)
stargazer_light_color = SSatlas.current_sector.starlight_color
set_light(6, 2, stargazer_light_color)
else
icon_state = "stargazer_off"
cut_overlays()
+6
View File
@@ -0,0 +1,6 @@
author: Alberyk
delete-after: True
changes:
- rscadd: "The stargazer light's color now matches the space sector starlight's color."