mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
Fix server startup runtimes from uninitaizlied using_map
* That if statement wasn't heping anyone as it was. * Strangely however, even an `if(using_map)` doesn't help, as using_map is in some crazy BYOND limbo state at that point in world init. but checking istype() succeeds in figuring out its not real.
This commit is contained in:
@@ -16,7 +16,7 @@ var/church_name = null
|
||||
return name
|
||||
|
||||
/proc/command_name()
|
||||
if (using_map.boss_name)
|
||||
if(istype(using_map))
|
||||
return using_map.boss_name
|
||||
|
||||
/proc/change_command_name(var/name)
|
||||
|
||||
Reference in New Issue
Block a user