Merge pull request #268 from AttorneyOnline/the-infinite-cm

If user ID is already area owner, don't add it again
This commit is contained in:
Rosemary Witchaven 2022-05-26 09:39:40 -05:00 committed by GitHub
commit 87c898fa26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,6 +48,10 @@ void AOClient::cmdCM(int argc, QStringList argv)
sendServerMessage("Unable to find client with ID " + argv[0] + ".");
return;
}
if (l_area->owners().contains(l_owner_candidate->m_id)) {
sendServerMessage("User is already a CM in this area.");
return;
}
l_area->addOwner(l_owner_candidate->m_id);
sendServerMessageArea(l_owner_candidate->m_ooc_name + " is now CM in this area.");
arup(ARUPType::CM, true);