mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2025-07-09 04:34:05 +00:00
Fixed some errors.
This commit is contained in:
source
@ -48,6 +48,7 @@ const char* tech_items[] = { "None", "Random", "In-Place", "Roll", "Miss Tech" }
|
|||||||
// Mash States
|
// Mash States
|
||||||
#define MASH_AIRDODGE 1
|
#define MASH_AIRDODGE 1
|
||||||
#define MASH_JUMP 2
|
#define MASH_JUMP 2
|
||||||
|
#define MASH_ATTACK 3
|
||||||
#define MASH_SPOTDODGE 4
|
#define MASH_SPOTDODGE 4
|
||||||
#define MASH_RANDOM 5
|
#define MASH_RANDOM 5
|
||||||
const char* mash_items[] = { "None", "Airdodge", "Jump", "Attack", "Spotdodge", "Random" };
|
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 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))
|
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;
|
return false;
|
||||||
|
Reference in New Issue
Block a user