Fix double CM bug

* Add check to see if owner tries to add an ID that is already owner of the area, to the owners of the area.
This commit is contained in:
Salanto 2022-05-26 14:29:34 +02:00
parent 604815750a
commit b98f7b88bb

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);