Skip to content

Commit

Permalink
fix(DB/Loot): Remove Badge of Justice from Karazhan chess (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyeriah authored Oct 21, 2023
1 parent 9ec284c commit b7f0255
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
-- Philanthropist should drop gold
UPDATE `creature_template` SET `mingold` = 110000, `maxgold` = 130000 WHERE (`entry` = 16470);
-- No badge of justice from chess
DELETE FROM `gameobject_loot_template` WHERE `Item` = 29434 AND `Entry` = 20712;
4 changes: 4 additions & 0 deletions src/Bracket_80_2/sql/world/progression_80_2_creature.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
UPDATE `creature` SET `phaseMask` = 1 WHERE `id1` = 33993;
-- restore no gold from kara philantropist
UPDATE `creature_template` SET `mingold` = 0, `maxgold` = 0 WHERE (`entry` = 16470);
-- Restore Badge of Justice to kara chess
DELETE FROM `gameobject_loot_template` WHERE `Item` = 29434 AND `Entry` = 20712;
INSERT INTO `gameobject_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(20712,29434,0,100,0,1,0,1,1,'Dust Covered Chest - Badge of Justice');

0 comments on commit b7f0255

Please sign in to comment.