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:
parent
2844615fdc
commit
5b2d96fed9
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user