mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 03:33:21 +00:00
16 lines
235 B
Plaintext
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
|