Skip to content

Commit

Permalink
DB/Loot: Fix thorium ore prospection sometimes resulting in 0 items
Browse files Browse the repository at this point in the history
closes  TrinityCore#30284 by meji46
  • Loading branch information
Aokromes authored Oct 2, 2024
1 parent fd85a71 commit 03333b1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions sql/updates/world/3.3.5/2024_10_02_00_world.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
--
DELETE FROM `prospecting_loot_template` WHERE `Entry`=10620 AND `Reference`=13001;
DELETE FROM `prospecting_loot_template` WHERE `Entry`=10620 AND `Item` IN (21929,23077,23079,23107,23112,23117);
INSERT INTO `prospecting_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`,`Comment`) VALUES
(10620,21929,0,0,0,1,1,1,2,NULL),
(10620,23077,0,0,0,1,1,1,2,NULL),
(10620,23079,0,0,0,1,1,1,2,NULL),
(10620,23107,0,0,0,1,1,1,2,NULL),
(10620,23112,0,0,0,1,1,1,2,NULL),
(10620,23117,0,0,0,1,1,1,2,NULL);

0 comments on commit 03333b1

Please sign in to comment.