Merge pull request #162 from Salanto/fix-invite

Fix uninvite not working
This commit is contained in:
scatterflower 2021-07-30 13:54:31 -05:00 committed by GitHub
commit f2943c5ebe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -163,7 +163,7 @@ bool AreaData::invite(int f_clientId)
bool AreaData::uninvite(int f_clientId)
{
if (m_invited.contains(f_clientId)) {
if (!m_invited.contains(f_clientId)) {
return false;
}