fix(DB/Creature): remove mobs from brewfest camp (#3497)
This commit is contained in:
parent
11bbabc2ac
commit
ffa6ccb4c2
1 changed files with 18 additions and 0 deletions
|
|
@ -0,0 +1,18 @@
|
|||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1600739072121853409');
|
||||
|
||||
/* brewfest camp hostile mobs */
|
||||
DELETE FROM `game_event_creature` WHERE `guid` IN (7370, 22181, 22188, 22473);
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(-24,7370),
|
||||
(-24,22181),
|
||||
(-24,22188),
|
||||
(-24,22473);
|
||||
|
||||
/* brewfest camp non-hostile mobs */
|
||||
DELETE FROM `game_event_creature` WHERE `guid` IN (12369, 12372, 21020, 21022, 21026);
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(-24,12369),
|
||||
(-24,12372),
|
||||
(-24,21020),
|
||||
(-24,21022),
|
||||
(-24,21026);
|
||||
Loading…
Add table
Add a link
Reference in a new issue