diff options
Diffstat (limited to 'sql/updates/0.8/4187_command.sql')
-rw-r--r-- | sql/updates/0.8/4187_command.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/0.8/4187_command.sql b/sql/updates/0.8/4187_command.sql new file mode 100644 index 00000000000..75033a11ccb --- /dev/null +++ b/sql/updates/0.8/4187_command.sql @@ -0,0 +1,5 @@ +UPDATE `command` SET `help` = 'Syntax: .learn all_myclass\r\n\r\nLearn all spells and talents available for his class.' WHERE `name` = 'learn all_myclass'; +INSERT INTO `command` ( `name` , `security` , `help` ) VALUES +('learn all_myspells',3,'Syntax: .learn all_myspells\r\n\r\nLearn all spells (except talents and spells with first rank learned as talent) available for his class.'), +('learn all_mytalents',3,'Syntax: .learn all_mytalents\r\n\r\nLearn all talents (and spells with first rank learned as talent) available for his class.'); + |