forked from mirror/openmw-tes3mp
[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,
|
||||
"customData", &Player::customData,
|
||||
"markedForDeletion", sol::property(&Player::isMarkedForDeleteion)
|
||||
"markedForDeletion", sol::property(&Player::isMarkedForDeletion)
|
||||
);
|
||||
|
||||
lua.getState()->new_enum("ChannelAction",
|
||||
|
@ -957,7 +957,7 @@ void Player::setAuthority()
|
|||
}
|
||||
}
|
||||
|
||||
bool Player::isMarkedForDeleteion() const
|
||||
bool Player::isMarkedForDeletion() const
|
||||
{
|
||||
return markedForDeletion;
|
||||
}
|
||||
|
|
|
@ -205,7 +205,7 @@ public:
|
|||
|
||||
void setAuthority();
|
||||
|
||||
bool isMarkedForDeleteion() const;
|
||||
bool isMarkedForDeletion() const;
|
||||
|
||||
void addToUpdateQueue();
|
||||
|
||||
|
|
Loading…
Reference in a new issue