Allows roundstart cyborgs to select their own name

But only if the option is enabled in the server config.

Credit to Neerti for originally coding this.
This commit is contained in:
ikarrus
2014-03-18 21:22:51 -06:00
parent 74b36fb24a
commit d97e7d84aa
5 changed files with 17 additions and 0 deletions

View File

@@ -98,6 +98,8 @@
var/revival_cloning = 1
var/revival_brain_life = -1
var/rename_cyborg = 1
//Used for modifying movement speed for mobs.
//Unversal modifiers
var/run_speed = 0
@@ -277,6 +279,8 @@
config.revival_cloning = text2num(value)
if("revival_brain_life")
config.revival_brain_life = text2num(value)
if("rename_cyborg")
config.rename_cyborg = text2num(value)
if("run_delay")
config.run_speed = text2num(value)
if("walk_delay")