diff options
| author | Shauren <shauren.trinity@gmail.com> | 2016-12-18 12:35:27 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2016-12-18 12:35:27 +0100 |
| commit | b633d61899bbbd723d4c0b2cbc850d5b686be46c (patch) | |
| tree | d7a79b34779399be1ab823d39572500794038cb8 /sql/updates/world | |
| parent | bc758991140e961ceac46b17b766b0d54b8129fb (diff) | |
Core/Commands: Added new 'bnetaccount listgameaccounts' command to display all `account` table entries linked to a given battle.net email
* Also fixed errors about bad commands in db
Closes #18474
Diffstat (limited to 'sql/updates/world')
| -rw-r--r-- | sql/updates/world/master/2016_12_18_00_world.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/master/2016_12_18_00_world.sql b/sql/updates/world/master/2016_12_18_00_world.sql new file mode 100644 index 00000000000..8aa931c5d2b --- /dev/null +++ b/sql/updates/world/master/2016_12_18_00_world.sql @@ -0,0 +1,12 @@ +DELETE FROM `command` WHERE `name`='bnetaccount listgameaccounts'; +INSERT INTO `command` (`name`,`permission`,`help`) VALUES +('bnetaccount listgameaccounts', 830, 'Syntax: .bnetaccount listgameaccounts $email $password\nLists all game accounts linked to battle.net $email'); + +DELETE FROM `trinity_string` WHERE `entry` IN (1034,1035); +INSERT INTO `trinity_string` (`entry`,`content_default`) VALUES +(1034, '| Account Id | Internal name | Display name |'), +(1035, 'Battle.net account %s has no linked game accounts.'); + +-- fix bad entries +UPDATE `command` SET `name`='scene playpackage',`help`='Syntax: .scene playpackage #scenePackageId #playbackFlags\nPlays scene with package id and playback flags for targeted player' WHERE `name`='scene play package'; +UPDATE `command` SET `name`='reload scene_template',`help`='Syntax: .reload scene_template\nReload scene_template table.' WHERE `name`='reload scenes'; |
