[Feature] Update HateMod used by SPA 114 to Int32. (#2428)

This commit is contained in:
Aeadoin 2022-09-08 07:49:13 -04:00 committed by GitHub
parent 2c9fe4f2b8
commit 7dc9b40ee1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -413,7 +413,7 @@ struct StatBonuses {
uint32 windMod;
uint32 stringedMod;
uint32 songModCap;
int8 hatemod;
int32 hatemod;
int64 EnduranceReduction;
int32 StrikeThrough; // PoP: Strike Through %

View File

@ -380,7 +380,7 @@ uint32 Lua_StatBonuses::GetsongModCap() const {
return self->songModCap;
}
int8 Lua_StatBonuses::Gethatemod() const {
int32 Lua_StatBonuses::Gethatemod() const {
Lua_Safe_Call_Int();
return self->hatemod;
}

View File

@ -100,7 +100,7 @@ public:
uint32 GetwindMod() const;
uint32 GetstringedMod() const;
uint32 GetsongModCap() const;
int8 Gethatemod() const;
int32 Gethatemod() const;
int64 GetEnduranceReduction() const;
int32 GetStrikeThrough() const;
int32 GetMeleeMitigation() const;