mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-25 14:39:48 +00:00
[Server] Fix typo related to player deletion
This commit is contained in:
parent
4e9cac96c7
commit
3b865244d0
2 changed files with 3 additions and 3 deletions
|
@ -107,7 +107,7 @@ void Player::Init(LuaState &lua)
|
||||||
|
|
||||||
"storedData", &Player::storedData,
|
"storedData", &Player::storedData,
|
||||||
"customData", &Player::customData,
|
"customData", &Player::customData,
|
||||||
"markedForDeletion", sol::property(&Player::isMarkedForDeleteion)
|
"markedForDeletion", sol::property(&Player::isMarkedForDeletion)
|
||||||
);
|
);
|
||||||
|
|
||||||
lua.getState()->new_enum("ChannelAction",
|
lua.getState()->new_enum("ChannelAction",
|
||||||
|
@ -957,7 +957,7 @@ void Player::setAuthority()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Player::isMarkedForDeleteion() const
|
bool Player::isMarkedForDeletion() const
|
||||||
{
|
{
|
||||||
return markedForDeletion;
|
return markedForDeletion;
|
||||||
}
|
}
|
||||||
|
|
|
@ -205,7 +205,7 @@ public:
|
||||||
|
|
||||||
void setAuthority();
|
void setAuthority();
|
||||||
|
|
||||||
bool isMarkedForDeleteion() const;
|
bool isMarkedForDeletion() const;
|
||||||
|
|
||||||
void addToUpdateQueue();
|
void addToUpdateQueue();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue