Skip to content

Commit

Permalink
修复空中数据bug
Browse files Browse the repository at this point in the history
  • Loading branch information
HalcyonAlcedo committed May 14, 2021
1 parent 127c5b5 commit 45defc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Base.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ namespace Base {
string ModName = "LuaScript";
string ModAuthor = "Alcedo";
string ModVersion = "v1.2.0";
long long ModBuild = 120005150007;
long long ModBuild = 120005150022;
string Version = "421470";
}
#pragma endregion
Expand Down
2 changes: 1 addition & 1 deletion LuaScript.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ static int Game_Player_SetPlayerFallSpeedRate(lua_State* pL) {
return 0;
}
static int Game_Player_CheckPlayerAirState(lua_State* pL) {
lua_pushboolean(pL, Base::PlayerData::AimingState);
lua_pushboolean(pL, Base::PlayerData::PlayerAirState);
return 1;
}
static int Game_Player_Weapon_GetWeaponId(lua_State* pL) {
Expand Down

0 comments on commit 45defc7

Please sign in to comment.