diff options
| author | Brian <runningnak3d@gmail.com> | 2010-01-29 14:19:43 -0700 |
|---|---|---|
| committer | Brian <runningnak3d@gmail.com> | 2010-01-29 14:19:43 -0700 |
| commit | d140d676999a96cb756665d86309c58c00b4e102 (patch) | |
| tree | 1d3fcdd26f93d779667e45071443e62b6bf5074b /sql/updates | |
| parent | 038c1ad776747e7d5af0f1b07c065f6df49c0881 (diff) | |
* Changed the default security levels for some commands
* Deleted no longer used loadscripts command
* Updated security levels in the command table to match defaults in the core
--HG--
branch : trunk
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/7245_world_command.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/7245_world_command.sql b/sql/updates/7245_world_command.sql new file mode 100644 index 00000000000..7fc9a2ed371 --- /dev/null +++ b/sql/updates/7245_world_command.sql @@ -0,0 +1,8 @@ +-- delete unused command loadscripts +DELETE FROM `command` WHERE `name` = 'loadscripts'; +-- Change the default scurity level for some commands +UPDATE `command` SET `security`=2 WHERE `name` IN ('playall','npc setlink','reload creature_linked_respawn'); -- DB devs command +UPDATE `command` SET `security`=1 WHERE `name` IN ('freeze','listfreeze','unfreeze'); -- Players can be anoying when talking a mod +UPDATE `command` SET `security`=1 WHERE `name` IN ('gmannounce','gmnameannounce','gmnotify'); -- even mods needs to notify things when a higher range staft is not online +UPDATE `command` SET `security`=1 WHERE `name` IN ('ticket assign','ticket close','ticket comment','ticket unassign'); -- Dirty work for slaves +UPDATE `command` SET `security`=1 WHERE `name`='account addon'; -- Server admins uses addon to close northrend |
