From 6350a611d08ddf634dc06b4c3233441de69d8c5a Mon Sep 17 00:00:00 2001 From: blinkysc <37940565+blinkysc@users.noreply.github.com> Date: Sun, 17 May 2026 11:04:08 -0500 Subject: [PATCH] fix(DB/Commands): Help text for 7 missing commands (#25878) Co-authored-by: blinkysc --- .../updates/pending_db_world/rev_1779026647185880331.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1779026647185880331.sql diff --git a/data/sql/updates/pending_db_world/rev_1779026647185880331.sql b/data/sql/updates/pending_db_world/rev_1779026647185880331.sql new file mode 100644 index 000000000..47c0928a0 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1779026647185880331.sql @@ -0,0 +1,9 @@ +DELETE FROM `command` WHERE `name` IN ('debug combat','debug threatinfo','pdump copy','pet delete','pet list','rbac list','reload rbac'); +INSERT INTO `command` (`name`,`security`,`help`) VALUES +('debug combat',3,'Syntax: .debug combat\nLists PvP and PvE combat references of the selected unit (or self).'), +('debug threatinfo',3,'Syntax: .debug threatinfo\nDisplays various debug information about the target''s threat state, modifiers, redirects and similar.'), +('pdump copy',3,'Syntax: .pdump copy $playerNameOrGUID $account [$newname] [$newguid]\nCopy character with name/guid $playerNameOrGUID into character list of $account with $newname, with first free or $newguid guid.'), +('pet delete',3,'Syntax: .pet delete $playerNameOrGUID #petNumber\nDeletes the pet with the given pet number belonging to the specified player.'), +('pet list',1,'Syntax: .pet list $playerNameOrGUID\nLists all pets owned by the specified player (id, entry, level, slot, name, type).'), +('rbac list',3,'Syntax: .rbac list [#id]\nView list of all permissions. If #id is given will show only info for that permission.'), +('reload rbac',3,'Syntax: .reload rbac\nReload rbac system.');