fix(DB/events): Fishing Extravaganza wrong start time (#6201)
Fishing Extravaganza should start at 14:00 server time, not 15:00 - Closes azerothcore#5450
This commit is contained in:
parent
42019c09b1
commit
8442c5c2ae
1 changed files with 7 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1622671275114677000');
|
||||
|
||||
SET @ANNOUNCE = 14;
|
||||
SET @FISHING_POOLS = 15;
|
||||
SET @TURN_INS = 62;
|
||||
UPDATE `game_event` SET `start_time` = '2016-10-29 00:00:00' WHERE `eventEntry` = @ANNOUNCE;
|
||||
UPDATE `game_event` SET `start_time` = '2016-10-30 14:00:00' WHERE `eventEntry` IN (@FISHING_POOLS, @TURN_INS);
|
||||
Loading…
Add table
Add a link
Reference in a new issue