mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-29 16:10:02 +01:00
Expanded admin powers for full moderators. (#20522)
- Full moderators can now use rejuvenate. - Full moderators can now spawn atoms. - Full moderators can now remove/add languages. - Full moderators can now teleport mobs. - Repurposes R_BAN into a generic permission that full moderators and above have, and locks teleport behind it. None of these powers may be used for round-altering purposes. Pending review by the head admin and the host. To-do: check that Borealis and permissions in general don't explode with these changes. --------- Co-authored-by: realmattatlas <liermattia@gmail.com>
This commit is contained in:
co-authored by
realmattatlas
parent
89262c487e
commit
14d7425cee
@@ -214,7 +214,7 @@ var/list/VVdynamic_lock = list(
|
||||
if(variable in VVlocked)
|
||||
if(!check_rights(R_DEBUG|R_DEV)) return
|
||||
if(variable in VVckey_edit)
|
||||
if(!check_rights(R_SPAWN|R_DEBUG|R_DEV)) return
|
||||
if(!check_rights(R_FUN|R_DEBUG|R_DEV)) return
|
||||
if(variable in VVicon_edit_lock)
|
||||
if(!check_rights(R_FUN|R_DEBUG|R_DEV)) return
|
||||
|
||||
@@ -433,7 +433,7 @@ var/list/VVdynamic_lock = list(
|
||||
if(param_var_name in VVlocked)
|
||||
if(!check_rights(R_DEBUG|R_DEV)) return
|
||||
if(param_var_name in VVckey_edit)
|
||||
if(!check_rights(R_SPAWN|R_DEBUG|R_DEV)) return
|
||||
if(!check_rights(R_FUN|R_DEBUG|R_DEV)) return
|
||||
if(param_var_name in VVicon_edit_lock)
|
||||
if(!check_rights(R_FUN|R_DEBUG|R_DEV)) return
|
||||
if(VVdynamic_lock[variable])
|
||||
@@ -498,7 +498,7 @@ var/list/VVdynamic_lock = list(
|
||||
if(variable in VVlocked)
|
||||
if(!check_rights(R_DEBUG|R_DEV)) return
|
||||
if(variable in VVckey_edit)
|
||||
if(!check_rights(R_SPAWN|R_DEBUG|R_DEV)) return
|
||||
if(!check_rights(R_FUN|R_DEBUG|R_DEV)) return
|
||||
if(variable in VVicon_edit_lock)
|
||||
if(!check_rights(R_FUN|R_DEBUG|R_DEV)) return
|
||||
if(VVdynamic_lock[variable])
|
||||
|
||||
Reference in New Issue
Block a user