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:
dillyns
2021-06-11 11:27:15 -04:00
committed by GitHub
parent 42019c09b1
commit 8442c5c2ae

View File

@@ -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);