Subsystems are now ordered by name in MC tab

This commit is contained in:
Cyberboss
2017-03-02 14:43:38 -05:00
parent 311ba7b7f0
commit 3ad9be1555
10 changed files with 1 additions and 12 deletions

View File

@@ -5,7 +5,6 @@
var/name = "fire coderbus" //name of the subsystem
var/init_order = 0 //order of initialization. Higher numbers are initialized first, lower numbers later. Can be decimal and negative values.
var/wait = 20 //time to wait (in deciseconds) between each call to fire(). Must be a positive integer.
var/display_order = 100 //display affects the order the subsystem is displayed in the MC tab
var/priority = 50 //When mutiple subsystems need to run in the same tick, higher priority subsystems will run first and be given a higher share of the tick before MC_TICK_CHECK triggers a sleep
var/flags = 0 //see MC.dm in __DEFINES Most flags must be set on world start to take full effect. (You can also restart the mc to force them to process again)