fix(DB/Skinning): Firemane mobs not consistently dropping leather (#6261)

Set groupids to 1 so firemane mobs always drop leather.
- Closes #5821
- Closes chromiecraft/chromiecraft#632
This commit is contained in:
dillyns
2021-06-13 12:59:26 -04:00
committed by GitHub
parent 4b117ed569
commit 7595548802

View File

@@ -0,0 +1,10 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1623095488531317400');
SET @SCALEBANE = 4328;
SET @SCOUT = 4329;
SET @ASHTAIL = 4331;
SET @FLAMECALLER = 4334;
UPDATE `skinning_loot_template`
SET `GroupId` = 1
WHERE `entry` IN (@SCALEBANE, @SCOUT, @ASHTAIL, @FLAMECALLER);