Allow those with the CM perm to play music (#354)

regardless of what the area thinks. a SUPER user not being able to play a song is a bit odd
This commit is contained in:
AwesomeAim 2024-05-17 03:55:01 -07:00 committed by GitHub
parent 2844615fdc
commit 5b2d96fed9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,7 +34,8 @@ void AOClient::cmdPlay(int argc, QStringList argv)
return;
}
AreaData *l_area = server->getAreaById(m_current_area);
if (!l_area->owners().contains(m_id) && !l_area->isPlayEnabled()) { // Make sure we have permission to play music
const ACLRole l_role = server->getACLRolesHandler()->getRoleById(m_acl_role_id);
if (!l_area->owners().contains(m_id) && !l_area->isPlayEnabled() && !l_role.checkPermission(ACLRole::CM)) { // Make sure we have permission to play music
sendServerMessage("Free music play is disabled in this area.");
return;
}