mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
8 lines
312 B
Plaintext
8 lines
312 B
Plaintext
/datum/vote
|
|
var/voting = 0 // true if currently voting
|
|
var/nextvotetime = 0 // time at which next vote can be started
|
|
var/votetime = 60 // time at which voting will end
|
|
var/mode = 0 // 0 = restart vote, 1 = mode vote
|
|
// modes which can be voted for
|
|
var/winner = null // the vote winner
|