diff options
| author | megamage <none@none> | 2009-05-26 16:19:11 -0500 |
|---|---|---|
| committer | megamage <none@none> | 2009-05-26 16:19:11 -0500 |
| commit | 8b26c1c728ad05046210605385d970b4352919e9 (patch) | |
| tree | df819e83977c153210ef512eada2608e31af588a /sql/updates | |
| parent | 0652c95126d35ffcdfe7830ac873fe5b23183d93 (diff) | |
[7893] Fixed work chat guild commands that expect guild name in args. Now guild name always must be in "". Author: VladimirMangos
--HG--
branch : trunk
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/7893_01_mangos_command.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/7893_01_mangos_command.sql b/sql/updates/7893_01_mangos_command.sql new file mode 100644 index 00000000000..8b21a405ee4 --- /dev/null +++ b/sql/updates/7893_01_mangos_command.sql @@ -0,0 +1,10 @@ +ALTER TABLE db_version CHANGE COLUMN required_7886_01_mangos_petcreateinfo_spell required_7893_01_mangos_command bit; + +DELETE FROM `command` WHERE `name` IN ( + 'guild create','guild delete','guild invite' +); + +INSERT INTO `command` VALUES +('guild create',2,'Syntax: .guild create [$GuildLeaderName] "$GuildName"\r\n\r\nCreate a guild named $GuildName with the player $GuildLeaderName (or selected) as leader. Guild name must in quotes.'), +('guild invite',2,'Syntax: .guild invite [$CharacterName] "$GuildName"\r\n\r\nAdd player $CharacterName (or selected) into a guild $GuildName. Guild name must in quotes.'), +('guild delete',2,'Syntax: .guild delete "$GuildName"\r\n\r\nDelete guild $GuildName. Guild name must in quotes.'); |
