mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-06-20 13:11:39 +00:00
[General] Use default value of false for Attack booleans in BaseStructs
This commit is contained in:
parent
2249450b0e
commit
868ad2b78f
1 changed files with 9 additions and 9 deletions
|
@ -82,17 +82,17 @@ namespace mwmp
|
||||||
float damage;
|
float damage;
|
||||||
float attackStrength;
|
float attackStrength;
|
||||||
|
|
||||||
bool isHit;
|
bool isHit = false;
|
||||||
bool success;
|
bool success = false;
|
||||||
bool block;
|
bool block = false;
|
||||||
|
|
||||||
bool pressed;
|
bool pressed = false;
|
||||||
bool instant;
|
bool instant = false;
|
||||||
bool knockdown;
|
bool knockdown = false;
|
||||||
bool applyWeaponEnchantment;
|
bool applyWeaponEnchantment = false;
|
||||||
bool applyAmmoEnchantment;
|
bool applyAmmoEnchantment = false;
|
||||||
|
|
||||||
bool shouldSend;
|
bool shouldSend = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
class Cast
|
class Cast
|
||||||
|
|
Loading…
Reference in a new issue