Compare commits

...

7 commits

Author SHA1 Message Date
github-actions[bot]
e0e0af6b98 chore(DB): import pending files
Referenced commit(s): fabde6dee3
2025-11-29 12:59:32 +00:00
blinkysc
fabde6dee3
fix(DB/Quest): Where Dragons Fell available with Cradle/Sindragosa (#23923) 2025-11-29 09:58:21 -03:00
github-actions[bot]
09ea377e88 chore(DB): import pending files
Referenced commit(s): b96492b93a
2025-11-29 12:57:07 +00:00
blinkysc
b96492b93a
fix(DB/Quest): No prerequisite for The Artifacts of Steel Gate (#23847) 2025-11-29 09:55:52 -03:00
github-actions[bot]
864acabd24 chore(DB): import pending files
Referenced commit(s): 21fb81c9b8
2025-11-29 12:53:55 +00:00
Andrew
21fb81c9b8
fix(DB/Creature): fix Oculus heroic reputation (#23960) 2025-11-29 09:52:48 -03:00
Andrew
8e51041885
fix(Core/Player): Use uint8 for combat rating loop index (#23956) 2025-11-29 10:15:56 +01:00
4 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,8 @@
-- DB update 2025_11_29_00 -> 2025_11_29_01
--
SET @REPTRASH := 1;
SET @REPREGULAR := 18;
SET @REPBOSS := 275;
UPDATE `creature_onkill_reputation` SET `RewOnKillRepValue1` = @REPTRASH, `RewOnKillRepValue2` = @REPTRASH WHERE `creature_id` IN (30902, 30903);
UPDATE `creature_onkill_reputation` SET `RewOnKillRepValue1` = @REPREGULAR, `RewOnKillRepValue2` = @REPREGULAR WHERE `creature_id` IN (30901, 30904, 30905, 30915, 30916, 30906, 30913, 30907, 30908, 30909, 30910, 30911, 30912, 30914);
UPDATE `creature_onkill_reputation` SET `RewOnKillRepValue1` = @REPBOSS, `RewOnKillRepValue2` = @REPBOSS WHERE `creature_id` IN (31558, 31559, 31560, 31561);

View file

@ -0,0 +1,5 @@
-- DB update 2025_11_29_01 -> 2025_11_29_02
--
UPDATE `quest_template` SET `RewardNextQuest` = 0 WHERE (`ID` = 11287);
UPDATE `quest_template_addon` SET `NextQuestID` = 0 WHERE (`ID` = 11287);
UPDATE `quest_template_addon` SET `ExclusiveGroup` = 11287 WHERE `ID` IN (11287, 11286);

View file

@ -0,0 +1,3 @@
-- DB update 2025_11_29_02 -> 2025_11_29_03
UPDATE `quest_template_addon` SET `PrevQuestID` = 13348 WHERE `ID` = 13359;
UPDATE `quest_template_addon` SET `PrevQuestID` = 13396 WHERE `ID` = 13398;

View file

@ -701,7 +701,7 @@ void Player::UpdateRating(CombatRating cr)
void Player::UpdateAllRatings()
{
for (uint cr = 0; cr < MAX_COMBAT_RATING; ++cr)
for (uint8 cr = 0; cr < MAX_COMBAT_RATING; ++cr)
UpdateRating(CombatRating(cr));
}