mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-27 17:41:50 +00:00
## About The Pull Request As noted in #73584 spiders stopped being on fire faster when they were simple mobs than they do now, and I have restored this behaviour. While I was there I noticed that spiders were the only simple mobs which could catch fire so I just remove that behaviour. I also changed the boolean "flammable" into a flag, not sure if that's actually better but maybe it is? I tried a little to see if I could make this into a component but there's basically no way as all of this behaviour is inside a status effect. ## Why It's Good For The Game Restores original behaviour. Maybe in the future I'll (or someone else will) use this to make some other basic mobs able to be set on fire, no obvious reason they shouldn't be able to be. ## Changelog 🆑 fix: Spiders will stop being on fire marginally faster, as they used to. /🆑
8 lines
183 B
Plaintext
8 lines
183 B
Plaintext
#define BASIC_MOB_MAX_STAMINALOSS 200
|
|
|
|
///Basic mob flags
|
|
#define DEL_ON_DEATH (1<<0)
|
|
#define FLIP_ON_DEATH (1<<1)
|
|
#define REMAIN_DENSE_WHILE_DEAD (1<<2)
|
|
#define FLAMMABLE_MOB (1<<3)
|