mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-22 14:47:16 +01:00
8527736ab6
This reverts commit 569723547c.
15 lines
442 B
Plaintext
15 lines
442 B
Plaintext
|
|
#define TICK_LIMIT_RUNNING 80
|
|
#define TICK_LIMIT_TO_RUN 70
|
|
#define TICK_LIMIT_MC 70
|
|
#define TICK_LIMIT_MC_INIT_DEFAULT 98
|
|
|
|
#define TICK_USAGE world.tick_usage
|
|
|
|
#define TICK_CHECK ( TICK_USAGE > Master.current_ticklimit )
|
|
#define CHECK_TICK ( TICK_CHECK ? stoplag() : 0 )
|
|
|
|
#define TICK_CHECK_HIGH_PRIORITY ( TICK_USAGE > 95 )
|
|
#define CHECK_TICK_HIGH_PRIORITY ( TICK_CHECK_HIGH_PRIORITY? stoplag() : 0 )
|
|
|
|
#define UNTIL(X) while(!(X)) stoplag() |