mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Respawn now vastly more configurable.
This commit is contained in:
@@ -51,6 +51,9 @@
|
||||
var/allow_ai = 1 // allow ai job
|
||||
var/hostedby = null
|
||||
var/respawn = 1
|
||||
var/respawn_delay=30
|
||||
var/respawn_as_mommi = 0
|
||||
var/respawn_as_mouse = 1
|
||||
var/guest_jobban = 1
|
||||
var/usewhitelist = 0
|
||||
var/kick_inactive = 0 //force disconnect for inactive players
|
||||
@@ -274,6 +277,12 @@
|
||||
if ("norespawn")
|
||||
config.respawn = 0
|
||||
|
||||
if ("respawn_as_mommi")
|
||||
config.respawn_as_mommi = 1
|
||||
|
||||
if ("no_respawn_as_mouse")
|
||||
config.respawn_as_mouse = 0
|
||||
|
||||
if ("servername")
|
||||
config.server_name = value
|
||||
|
||||
@@ -475,6 +484,8 @@
|
||||
config.bones_can_break = value
|
||||
if("limbs_can_break")
|
||||
config.limbs_can_break = value
|
||||
if("respawn_delay")
|
||||
config.respawn_delay = value
|
||||
else
|
||||
diary << "Unknown setting in configuration: '[name]'"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user