mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-18 14:12:32 +00:00
13 lines
406 B
Plaintext
13 lines
406 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
|
|
|
|
var/customname
|
|
var/choices = list()
|
|
var/enteringchoices = 0
|
|
|
|
var/instant_restart = 0 |