mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
* Adds defines for world.tick_usage * This provides no useful benefit whatsoever, but /tg and Baystation12 have done it, so it will make porting future code easier if we do too. No real harm done either.
10 lines
264 B
Plaintext
10 lines
264 B
Plaintext
#define TICK_LIMIT_RUNNING 80
|
|
#define TICK_LIMIT_TO_RUN 78
|
|
#define TICK_LIMIT_MC 70
|
|
#define TICK_LIMIT_MC_INIT_DEFAULT 98
|
|
|
|
#define TICK_CHECK ( TICK_USAGE > Master.current_ticklimit )
|
|
#define CHECK_TICK if TICK_CHECK stoplag()
|
|
|
|
#define TICK_USAGE world.tick_usage
|