mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-20 11:35:19 +01:00
More map tweaks!
Revamps the dorms and adds bathrooms Also makes daytime longer than nighttime
This commit is contained in:
@@ -53,7 +53,7 @@ var/datum/planet/virgo3c/planet_virgo3c = null
|
||||
var/min = 0
|
||||
|
||||
switch(sun_position)
|
||||
if(0 to 0.475) // Night
|
||||
if(0 to 0.3) // Night
|
||||
low_brightness = 0.3
|
||||
low_color = "#000066"
|
||||
|
||||
@@ -61,7 +61,7 @@ var/datum/planet/virgo3c/planet_virgo3c = null
|
||||
high_color = "#66004D"
|
||||
min = 0
|
||||
|
||||
if(0.475 to 0.50) // Twilight
|
||||
if(0.3 to 0.35) // Twilight
|
||||
low_brightness = 0.5
|
||||
low_color = "#66004D"
|
||||
|
||||
@@ -69,7 +69,7 @@ var/datum/planet/virgo3c/planet_virgo3c = null
|
||||
high_color = "#CC3300"
|
||||
min = 0.40
|
||||
|
||||
if(0.50 to 0.525) // Sunrise/set
|
||||
if(0.35 to 0.45) // Sunrise/set
|
||||
low_brightness = 0.9
|
||||
low_color = "#CC3300"
|
||||
|
||||
@@ -77,7 +77,7 @@ var/datum/planet/virgo3c/planet_virgo3c = null
|
||||
high_color = "#FF9933"
|
||||
min = 0.50
|
||||
|
||||
if(0.525 to 1.00) // Noon
|
||||
if(0.45 to 1.00) // Noon
|
||||
low_brightness = 3.0
|
||||
low_color = "#DDDDDD"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user