Files
CHOMPStation2/code/defines/procs/command_name.dm
2011-11-29 00:19:37 -05:00

16 lines
235 B
Plaintext

var/command_name = null
/proc/command_name()
if (command_name)
return command_name
var/name = "NanoTrasen"
command_name = name
return name
/proc/change_command_name(var/name)
command_name = name
return name