diff options
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/2014_09_03_01_world_trinity_string.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/2014_09_03_01_world_trinity_string.sql b/sql/updates/world/2014_09_03_01_world_trinity_string.sql new file mode 100644 index 00000000000..0586c31e3d2 --- /dev/null +++ b/sql/updates/world/2014_09_03_01_world_trinity_string.sql @@ -0,0 +1,5 @@ +-- Implements in-game gm message when tickets are completed
+SET @LANG_COMMAND_TICKETCOMPLETED := 2030;
+DELETE FROM `trinity_string` WHERE `entry` = @LANG_COMMAND_TICKETCOMPLETED;
+INSERT INTO `trinity_string` (`entry`, `content_default`) VALUES (@LANG_COMMAND_TICKETCOMPLETED, '|cff00ff00Completed by|r:|cff00ccff %s|r');
+
|