Skip to content

Commit

Permalink
fix: disable level 80 loot (#361)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyeriah authored Oct 22, 2023
1 parent 762ec0b commit 65e5470
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ INSERT INTO `quest_template` (`ID`, `QuestType`, `QuestLevel`, `MinLevel`, `Ques
DELETE FROM `item_loot_template` WHERE `entry` = 54516 AND `item` IN (49426, 49128, 49126);

UPDATE `creature_template` SET `minlevel` = 70, `maxlevel` = 70 WHERE `entry` IN (23682, 23775,23694, 23545);
UPDATE `creature_template` SET `lootid` = 0 WHERE `entry` = 23682;
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ INSERT INTO `item_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `Quest
(54516,49426,0,100,0,1,0,2,2,'Loot-Filled Pumpkin - Emblem of Frost');

UPDATE `creature_template` SET `minlevel` = 80, `maxlevel` = 80 WHERE `entry` IN (23682, 23775,23694, 23545);


UPDATE `creature_template` SET `lootid` = 23682 WHERE `entry` = 23682;

0 comments on commit 65e5470

Please sign in to comment.