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:
commit
87c898fa26
@ -48,6 +48,10 @@ void AOClient::cmdCM(int argc, QStringList argv)
|
|||||||
sendServerMessage("Unable to find client with ID " + argv[0] + ".");
|
sendServerMessage("Unable to find client with ID " + argv[0] + ".");
|
||||||
return;
|
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);
|
l_area->addOwner(l_owner_candidate->m_id);
|
||||||
sendServerMessageArea(l_owner_candidate->m_ooc_name + " is now CM in this area.");
|
sendServerMessageArea(l_owner_candidate->m_ooc_name + " is now CM in this area.");
|
||||||
arup(ARUPType::CM, true);
|
arup(ARUPType::CM, true);
|
||||||
|
Loading…
Reference in New Issue
Block a user