diff options
| author | Treeston <treeston.mmoc@gmail.com> | 2018-01-24 22:52:42 +0100 |
|---|---|---|
| committer | Treeston <treeston.mmoc@gmail.com> | 2018-01-24 22:52:42 +0100 |
| commit | 6ce078d8e885f61ebdff3eb905e4cf6a2911da90 (patch) | |
| tree | 1507d68f173f61bb93fd2ec3c638b098c15a6bc1 /sql/updates | |
| parent | b4572e7b0b5e12d731d4f4ade5af00f108e3b715 (diff) | |
Scripts/Commands: new command '.debug instancespawn'
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/auth/3.3.5/2018_01_24_00_auth.sql | 8 | ||||
| -rw-r--r-- | sql/updates/world/3.3.5/2018_01_24_06_world.sql | 6 |
2 files changed, 14 insertions, 0 deletions
diff --git a/sql/updates/auth/3.3.5/2018_01_24_00_auth.sql b/sql/updates/auth/3.3.5/2018_01_24_00_auth.sql new file mode 100644 index 00000000000..119db7ae391 --- /dev/null +++ b/sql/updates/auth/3.3.5/2018_01_24_00_auth.sql @@ -0,0 +1,8 @@ +-- +DELETE FROM `rbac_permissions` WHERE `id`=871; +INSERT INTO `rbac_permissions` (`id`,`name`) VALUES +(871, 'Command: debug instancespawn'); + +DELETE FROM `rbac_linked_permissions` WHERE `linkedId`=871; +INSERT INTO `rbac_linked_permissions` (`id`,`linkedId`) VALUES +(196,871); diff --git a/sql/updates/world/3.3.5/2018_01_24_06_world.sql b/sql/updates/world/3.3.5/2018_01_24_06_world.sql new file mode 100644 index 00000000000..f8599a2952c --- /dev/null +++ b/sql/updates/world/3.3.5/2018_01_24_06_world.sql @@ -0,0 +1,6 @@ +-- +DELETE FROM `command` WHERE `name`="debug instancespawn"; +INSERT INTO `command`(`name`,`permission`,`help`) VALUES +('debug instancespawn',871,'Syntax: .debug instancespawn [<groupID>/explain] + +Displays information about the spawn groups being managed by the current instance script. If groupID is specified, additionally explains why that spawn group is in the listed state. If "explain" is specified, explains all spawn groups.'); |
