mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-01 04:21:42 +00:00
Done using this command sed -Ei 's/(\s*\S+)\s*\t+/\1 /g' code/**/*.dm We have countless examples in the codebase with this style gone wrong, and defines and such being on hideously different levels of indentation. Fixing this to keep the alignment involves tainting the blames of code your PR doesn't need to be touching at all. And ultimately, it's hideous. There are some files that this sed makes uglier. I can fix these when they are pointed out, but I believe this is ultimately for the greater good of readability. I'm more concerned with if any strings relied on this. Hi codeowners! Co-authored-by: Jared-Fogle <35135081+Jared-Fogle@users.noreply.github.com>
25 lines
714 B
Plaintext
25 lines
714 B
Plaintext
#define NO_STUTTER 1
|
|
#define TONGUELESS_SPEECH 2
|
|
#define LANGUAGE_HIDE_ICON_IF_UNDERSTOOD 4
|
|
#define LANGUAGE_HIDE_ICON_IF_NOT_UNDERSTOOD 8
|
|
|
|
// LANGUAGE SOURCE DEFINES
|
|
#define LANGUAGE_ALL "all" // For use in full removal only.
|
|
#define LANGUAGE_ATOM "atom"
|
|
#define LANGUAGE_MIND "mind"
|
|
|
|
#define LANGUAGE_ABSORB "absorb"
|
|
#define LANGUAGE_APHASIA "aphasia"
|
|
#define LANGUAGE_CTF "ctf"
|
|
#define LANGUAGE_CULTIST "cultist"
|
|
#define LANGUAGE_CURATOR "curator"
|
|
#define LANGUAGE_GLAND "gland"
|
|
#define LANGUAGE_HAT "hat"
|
|
#define LANGUAGE_HIGH "high"
|
|
#define LANGUAGE_MALF "malf"
|
|
#define LANGUAGE_MASTER "master"
|
|
#define LANGUAGE_SOFTWARE "software"
|
|
#define LANGUAGE_STONER "stoner"
|
|
#define LANGUAGE_VOICECHANGE "voicechange"
|
|
|