mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-21 04:48:18 +01:00
Fixes round start delay caused by borg name picking code (#8462)
Great meme.
This commit is contained in:
@@ -383,14 +383,15 @@
|
||||
if(custom_name)
|
||||
return FALSE
|
||||
|
||||
var/newname
|
||||
newname = sanitizeSafe(input(src, "You are a robot. Enter a name, or leave blank for the default name.", "Name change") as text, MAX_NAME_LEN)
|
||||
if(newname)
|
||||
custom_name = newname
|
||||
spawn(0)
|
||||
var/newname
|
||||
newname = sanitizeSafe(input(src, "You are a robot. Enter a name, or leave blank for the default name.", "Name change") as text, MAX_NAME_LEN)
|
||||
if(newname)
|
||||
custom_name = newname
|
||||
|
||||
updatename()
|
||||
updateicon()
|
||||
SSrecords.reset_manifest()
|
||||
updatename()
|
||||
updateicon()
|
||||
SSrecords.reset_manifest()
|
||||
|
||||
// this verb lets cyborgs see the stations manifest
|
||||
/mob/living/silicon/robot/verb/cmd_station_manifest()
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
author: Alberyk
|
||||
|
||||
delete-after: True
|
||||
|
||||
changes:
|
||||
- bugfix: "Fixed round start delay caused by cyborgs choosing their names."
|
||||
Reference in New Issue
Block a user