From 8ad64cd8a390adeb118f7c3076572126fd9e3ca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Tue, 22 Jan 2019 11:38:16 -0300 Subject: [PATCH] fix(DB/Command): Add help options for .spy command (#1339) Add missing help options for the new .spy command --- .../pending_db_world/rev_1548117070754986000.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1548117070754986000.sql diff --git a/data/sql/updates/pending_db_world/rev_1548117070754986000.sql b/data/sql/updates/pending_db_world/rev_1548117070754986000.sql new file mode 100644 index 000000000..ae0532fb4 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1548117070754986000.sql @@ -0,0 +1,10 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1548117070754986000'); + +DELETE FROM `command` WHERE `name` IN ('spy follow', 'spy unfollow', 'spy groupfollow', 'spy groupunfollow', 'spy clear', 'spy status'); +INSERT INTO `command` (`name`,`security`,`help`) VALUES +('spy follow', 2, 'Syntax: .spy follow $name\nStart reading all the private conversations from that player.'), +('spy unfollow', 2, 'Syntax: .spy unfollow $name\nStop reading private messages from that player.'), +('spy groupfollow', 3, 'Syntax: .spy groupfollow $name\nStart reading all the private conversations from that player and from his current party.'), +('spy groupunfollow', 3, 'Syntax: .spy groupunfollow $name\nStop reading private messages from that player\'s party.'), +('spy clear', 2, 'Syntax: .spy clear\nClear your current spying list, removing every player from it.'), +('spy status', 2, 'Syntax: .spy status\nShow your current spying list.');