mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 16:05:07 +00:00
## About The Pull Request Title. A verb is probably not the best way to do it, but also I can't be assed to find a better solution (an action button is overkill) ## Why It's Good For The Game Theres so many clothing sprites that would work on taurs, but they dont have the flag set - and let's be honest, noone is gonna go through every clothing sprite they see to set the flag. This lets the taur players decide what works for their sprite. ## Proof Of Testing <details> <summary>Screenshots/Videos</summary> <img width="167" height="99" alt="image" src="https://github.com/user-attachments/assets/66acd2dd-4b27-468e-83e3-1541d05b499f" /> <img width="93" height="116" alt="image" src="https://github.com/user-attachments/assets/735dca39-a596-452b-bfc4-f46fc7773219" /> </details> ## Changelog 🆑 add: New taur verb that lets you disable/enable taur clothing cropping /🆑 --------- Co-authored-by: Shadow-Quill <44811257+Shadow-Quill@users.noreply.github.com>
13 lines
439 B
Plaintext
13 lines
439 B
Plaintext
|
|
/// The minimum amount of tiles a TRAIT_SLIPPERY haver will slide on slip
|
|
#define SLIPPERY_MIN 5
|
|
/// The maximum amount of tiles a TRAIT_SLIPPERY haver will slide on slip
|
|
#define SLIPPERY_MAX 9
|
|
/// Permit hud clothing trait
|
|
#define TRAIT_PERMIT_HUD "permit_hud"
|
|
//for if we are army crawling or not
|
|
#define TRAIT_PRONE "prone"
|
|
|
|
/// If we are ignoring clothing cropping or not
|
|
#define TRAIT_TAUR_IGNORING_CROPPING "taur_ignoring_cropping"
|