mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
25 lines
428 B
Plaintext
25 lines
428 B
Plaintext
var/datum/subsystem/sun/SSsun
|
|
|
|
|
|
/datum/subsystem/sun
|
|
name = "Sun"
|
|
init_order = SS_INIT_SUN
|
|
display_order = SS_DISPLAY_SUN
|
|
priority = SS_PRIORITY_SUN
|
|
wait = 30 SECONDS
|
|
flags = SS_NO_TICK_CHECK
|
|
|
|
|
|
/datum/subsystem/sun/New()
|
|
NEW_SS_GLOBAL(SSsun)
|
|
|
|
|
|
/datum/subsystem/sun/Initialize(timeofday)
|
|
sun = new
|
|
gas_giant = new
|
|
..()
|
|
|
|
|
|
/datum/subsystem/sun/fire(resumed = FALSE)
|
|
sun.calc_position()
|