mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 22:19:30 +01:00
3591 individual conflicts Update build.js Update install_node.sh Update byond.js oh my fucking god hat slow huh holy shit we all fall down 2 more I missed 2900 individual conflicts 2700 Individual conflicts replaces yarn file with tg version, bumping us down to 2200-ish Down to 2000 individual conflicts 140 down mmm aaaaaaaaaaaaaaaaaaa not yt 575 soon 900 individual conflicts 600 individual conflicts, 121 file conflicts im not okay 160 across 19 files 29 in 4 files 0 conflicts, compiletime fix time some minor incap stuff missed ticks weird dupe definition stuff missed ticks 2 incap fixes undefs and pie fix Radio update and some extra minor stuff returns a single override no more dupe definitions, 175 compiletime errors Unticked file fix sound and emote stuff honk and more radio stuff
24 lines
1.3 KiB
Plaintext
24 lines
1.3 KiB
Plaintext
// All of the possible Lag Switch lag mitigation measures
|
|
// If you add more do not forget to update MEASURES_AMOUNT accordingly
|
|
/// Stops ghosts flying around freely, they can still jump and orbit, staff exempted
|
|
#define DISABLE_DEAD_KEYLOOP 1
|
|
/// Stops ghosts using zoom/t-ray verbs and resets their view if zoomed out, staff exempted
|
|
#define DISABLE_GHOST_ZOOM_TRAY 2
|
|
/// Disable runechat and enable the bubbles, speaking mobs with TRAIT_BYPASS_MEASURES exempted
|
|
#define DISABLE_RUNECHAT 3
|
|
/// Disable icon2html procs from verbs like examine, mobs calling with TRAIT_BYPASS_MEASURES exempted
|
|
#define DISABLE_USR_ICON2HTML 4
|
|
/// Prevents anyone from joining the game as anything but observer
|
|
#define DISABLE_NON_OBSJOBS 5
|
|
/// Limit IC/dchat spam to one message every x seconds per client, TRAIT_BYPASS_MEASURES exempted
|
|
#define SLOWMODE_SAY 6
|
|
/// Disables parallax, as if everyone had disabled their preference, TRAIT_BYPASS_MEASURES exempted
|
|
#define DISABLE_PARALLAX 7
|
|
/// Disables footsteps, TRAIT_BYPASS_MEASURES exempted
|
|
#define DISABLE_FOOTSTEPS 8
|
|
// SKYRAT EDIT ADDITION
|
|
/// Stops people from changing things in the character creator. Entirely.
|
|
#define DISABLE_CREATOR 9
|
|
// SKYRAT EDIT END
|
|
#define MEASURES_AMOUNT 9 // The total number of switches defined above // SKYRAT EDIT ADDITION
|