mirror of
https://github.com/azerothcore/azerothcore-wotlk.git
synced 2025-12-06 02:30:26 -08:00
Compare commits
7 commits
aeb892f19f
...
e0e0af6b98
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e0e0af6b98 | ||
|
|
fabde6dee3 | ||
|
|
09ea377e88 | ||
|
|
b96492b93a | ||
|
|
864acabd24 | ||
|
|
21fb81c9b8 | ||
|
|
8e51041885 |
4 changed files with 17 additions and 1 deletions
8
data/sql/updates/db_world/2025_11_29_01.sql
Normal file
8
data/sql/updates/db_world/2025_11_29_01.sql
Normal 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);
|
||||
5
data/sql/updates/db_world/2025_11_29_02.sql
Normal file
5
data/sql/updates/db_world/2025_11_29_02.sql
Normal 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);
|
||||
3
data/sql/updates/db_world/2025_11_29_03.sql
Normal file
3
data/sql/updates/db_world/2025_11_29_03.sql
Normal 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;
|
||||
|
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue