Files
Paradise/code/_globalvars/configuration.dm
Contrabang c8dce33a8a Cleans up a lot of globals a few other vars (#23246)
* i hate globals i hate globals

* more fucking of these

* sirryan review
2023-12-06 15:30:41 +00:00

28 lines
859 B
Plaintext

/// Join MOTD for the server
GLOBAL_VAR(join_motd)
GLOBAL_PROTECT(join_motd) // Takes up a lot of space in VV
/// Join TOS for the server
GLOBAL_VAR(join_tos)
GLOBAL_PROTECT(join_tos) // Takes up a lot of space. Also dont touch this shit
/// The current game year
GLOBAL_VAR_INIT(game_year, (text2num(time2text(world.realtime, "YYYY")) + 544))
/// Allow new players to enter the game?
GLOBAL_VAR_INIT(enter_allowed, TRUE)
/// Is OOC currently enabled?
GLOBAL_VAR_INIT(ooc_enabled, TRUE)
/// Is LOOC currently enabled?
GLOBAL_VAR_INIT(looc_enabled, TRUE)
/// Is OOC currently enabled for dead people?
GLOBAL_VAR_INIT(dooc_enabled, TRUE)
/// Is deadchat currently enabled?
GLOBAL_VAR_INIT(dsay_enabled, TRUE)
/// Amount of time (in minutes) that must pass between a player dying as a mouse and repawning as a mouse
GLOBAL_VAR_INIT(mouse_respawn_time, 5)