Name HIT_BACKLASH_ and HIT_SPECIAL_EFFECT_ values (#2639)

* Name HIT_BACKLASH_ and HIT_SPECIAL_EFFECT_ values

* SHOCK -> ELECTRIC
This commit is contained in:
Dragorn421
2025-06-22 16:36:09 +01:00
committed by GitHub
parent 04a92708cf
commit ad7ef14b5d
11 changed files with 29 additions and 29 deletions
+2 -2
View File
@@ -3015,8 +3015,8 @@ void CollisionCheck_InitInfo(CollisionCheckInfo* info) {
void CollisionCheck_ResetDamage(CollisionCheckInfo* info) {
info->damage = 0;
info->damageReaction = 0;
info->atHitBacklash = HIT_BACKLASH_0;
info->acHitSpecialEffect = HIT_SPECIAL_EFFECT_0;
info->atHitBacklash = HIT_BACKLASH_NONE;
info->acHitSpecialEffect = HIT_SPECIAL_EFFECT_NONE;
info->displacement.x = info->displacement.y = info->displacement.z = 0.0f;
}