mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2024-11-20 08:54:15 +00:00
Fixed some errors.
This commit is contained in:
parent
9b3313ceed
commit
b9bdef8ca9
2 changed files with 2 additions and 1 deletions
|
@ -48,6 +48,7 @@ const char* tech_items[] = { "None", "Random", "In-Place", "Roll", "Miss Tech" }
|
|||
// Mash States
|
||||
#define MASH_AIRDODGE 1
|
||||
#define MASH_JUMP 2
|
||||
#define MASH_ATTACK 3
|
||||
#define MASH_SPOTDODGE 4
|
||||
#define MASH_RANDOM 5
|
||||
const char* mash_items[] = { "None", "Airdodge", "Jump", "Attack", "Spotdodge", "Random" };
|
||||
|
|
|
@ -36,7 +36,7 @@ bool is_in_shieldstun(u64 module_accessor) {
|
|||
// If we are taking shield damage or we are droping shield from taking shield damage we are in hitstun
|
||||
if(status_kind == FIGHTER_STATUS_KIND_GUARD_DAMAGE || (prev_status == FIGHTER_STATUS_KIND_GUARD_DAMAGE && status_kind == FIGHTER_STATUS_KIND_GUARD_OFF))
|
||||
{
|
||||
return true
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue