mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
* Code done. Doesn't compile for shit. * IT COMPILES! * Hey it almost works. * Fixes lighting * Remove thing I had to double check after asking mso. * More fixes. * WiP, fixed everything but waitfor * Done. * Damnit DM. * Fixes priorities
17 lines
309 B
Plaintext
17 lines
309 B
Plaintext
var/datum/subsystem/vote/SSvote
|
|
|
|
|
|
/datum/subsystem/vote
|
|
name = "Vote"
|
|
flags = SS_NO_INIT
|
|
wait = 1 SECONDS
|
|
priority = SS_PRIORITY_VOTE
|
|
flags = SS_FIRE_IN_LOBBY | SS_KEEP_TIMING
|
|
|
|
/datum/subsystem/vote/New()
|
|
NEW_SS_GLOBAL(SSvote)
|
|
|
|
|
|
/datum/subsystem/vote/fire(resumed = FALSE)
|
|
vote.process()
|