Files
Aurora.3/code/modules/events/gravity.dm
Geeves 73a95ed5df Overmap Announcements Overhaul (#16460)
* Overmap Announcements

* overdoing it a little

* update cl

* whoops
2024-01-09 16:41:57 +00:00

21 lines
960 B
Plaintext

/datum/event/gravity
announceWhen = 5
ic_name = "a gravity failure"
no_fake = 1
/datum/event/gravity/setup()
endWhen = rand(15, 60)
/datum/event/gravity/announce()
command_announcement.Announce("Feedback surge detected in the gravity generation systems. Artificial gravity has been disabled whilst the system reinitializes. Further failures may result in a gravitational collapse and formation of blackholes.", "Gravity Failure", zlevels = affecting_z)
/datum/event/gravity/start()
..()
// TO-DO: I'm not gonna touch this can of worms right now, but this effectively means that gravity is global for everyone,
// meaning, if the horizon loses gravity, EVERYONE DOES. this seriously needs to be fixed, and i'm commenting out the gravity flux event until that is done
GLOB.gravity_is_on = 0
for(var/obj/machinery/gravity_generator/main/generator in SSmachinery.gravity_generators)
if(generator.z in affecting_z)
generator.eventshutofftoggle()