diff options
Diffstat (limited to 'sql/updates/40_world.sql')
| -rw-r--r-- | sql/updates/40_world.sql | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/updates/40_world.sql b/sql/updates/40_world.sql index 9ad2709821f..123a8cbce2e 100644 --- a/sql/updates/40_world.sql +++ b/sql/updates/40_world.sql @@ -69,7 +69,9 @@ CREATE TABLE `IRC_AutoAnnounce` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='IRC Module System'; -- Add ircpm command. +delete from `command` WHERE `name`='ircpm'; insert into `command` (`name`, `security`, `help`) values ('ircpm', 0, 'Syntax: .ircpm <user> <text>\n\nSends a PM with <text> to <user> on IRC.'); -- Add auto announce string. -insert into `mangos_string` (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`) values('746','|cffff0000[Automatic]:|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +DELETE FROM `trinity_string` WHERE `entry`=746; +insert into `trinity_string` (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`) values('746','|cffff0000[Automatic]:|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); |
