Skip to content

Commit

Permalink
Merge branch 'azerothcore-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
hatersgit committed Oct 13, 2023
2 parents 664b179 + fbbc1c7 commit 337eab2
Show file tree
Hide file tree
Showing 270 changed files with 9,841 additions and 5,858 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_dbimport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
COMPILER: ${{ matrix.compiler }}
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v3
env:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/check_pending_sql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ on:
jobs:
check-pending-sql:
runs-on: ubuntu-latest
if: github.repository == 'azerothcore/azerothcore-wotlk'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check pending SQL
run: source ./apps/ci/ci-pending.sh
3 changes: 2 additions & 1 deletion .github/workflows/codestyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ jobs:
matrix:
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
if: github.repository == 'azerothcore/azerothcore-wotlk'
name: check codestyle
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check core codestyle
run: source ./apps/ci/ci-codestyle.sh
2 changes: 1 addition & 1 deletion .github/workflows/core_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
COMPILER: ${{ matrix.compiler }}
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/core_matrix_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
|| github.event.label.name == 'run-build')
)
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/core_modules_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
|| github.event.label.name == 'run-build')
)
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Checkout modules
run: ./apps/ci/ci-install-modules.sh
if: matrix.modules == 'with'
Expand Down
17 changes: 7 additions & 10 deletions .github/workflows/cpp-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,14 @@ jobs:
if: github.repository == 'azerothcore/azerothcore-wotlk'
name: cpp check
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: cpp check
run: |
sudo apt update -y
sudo apt install -y cppcheck
cppcheck --force --inline-suppr \
-i src/server/game/Achievements/AchievementMgr.cpp \
-i src/server/game/AuctionHouse/AuctionHouseMgr.cpp \
-i src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp \
-i src/server/game/DungeonFinding/LFGMgr.cpp \
-i src/server/game/Entities/GameObject/GameObject.cpp \
-i src/server/game/Entities/Pet/Pet.cpp \
-i src/server/game/Entities/Player/Player.cpp \
src/
cppcheck --force --inline-suppr --suppressions-list=./.suppress.cppcheck src/ --output-file=report.txt
if [ -s report.txt ]; then # if file is not empty
cat report.txt
exit 1 # let github action fails
fi
4 changes: 2 additions & 2 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
docker --version
docker compose version
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# we need the entire history for the ac-dev-server
# with:
# fetch-depth: 2
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
docker --version
docker compose version
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# we need the entire history for the ac-dev-server
# with:
# fetch-depth: 2
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/import_pending.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ jobs:
strategy:
fail-fast: false
runs-on: ubuntu-20.04
permissions: write-all
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
# If we're fetching all the history in a later step it makes sense to
Expand All @@ -26,7 +27,8 @@ jobs:

- name: Import and commit pending sql
run: |
git config user.email "[email protected]" && git config user.name "AzerothCoreBot"
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
# Get the latest changes from git
git pull --rebase origin "${{ github.ref_name }}"
bash bin/acore-db-pendings
Expand All @@ -39,7 +41,7 @@ jobs:
BRANCH: ${{ github.ref_name }}

- name: Push changes
uses: ad-m/github-push-action@fe38f0a751bf9149f0270cc1fe20bf9156854365
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.AC_GITHUB_TOKEN }}
# Noting that the branch name can only be master, as per the event
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
&& !github.event.pull_request.draft
&& (github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'run-build') || github.event.label.name == 'run-build')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v3
with:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/pr_labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,14 @@ on:
jobs:
triage:
runs-on: ubuntu-20.04
permissions: write-all
if: github.repository == 'azerothcore/azerothcore-wotlk'
steps:
- uses: actions/labeler@v3
- uses: actions/checkout@v4
with:
repo-token: ${{ secrets.AC_GITHUB_TOKEN }}
persist-credentials: true
- uses: actions/labeler@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/labeler.yml
sync-labels: true
2 changes: 1 addition & 1 deletion .github/workflows/tools_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
COMPILER: ${{ matrix.compiler }}
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v3
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
&& !github.event.pull_request.draft
&& (github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'run-build') || github.event.label.name == 'run-build')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: ccache
uses: hendrikmuhs/[email protected]
- name: Configure OS
Expand Down
1 change: 1 addition & 0 deletions .suppress.cppcheck
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cppcheckError
4 changes: 0 additions & 4 deletions apps/docker/docker-cmd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,23 +79,20 @@ while [[ $# -gt 0 ]]; do
pull)
set -x
docker compose --profile local --profile dev --profile dev-build pull
docker image prune -f
set +x
shift
;;

build:nocache)
set -x
docker compose --profile local --profile dev --profile dev-build build --no-cache
docker image prune -f
docker compose run --rm --no-deps ac-dev-build /bin/bash /azerothcore/apps/docker/docker-build-dev.sh
set +x
shift
;;

clean:build)
set -x
docker image prune -f
docker compose run --rm --no-deps ac-dev-server bash acore.sh compiler clean
docker compose run --rm --no-deps ac-dev-server bash acore.sh compiler ccacheClean
set +x
Expand Down Expand Up @@ -141,7 +138,6 @@ while [[ $# -gt 0 ]]; do
build:prod|prod:build)
set -x
docker compose --profile prod build
docker image prune -f
set +x
shift
;;
Expand Down
7 changes: 7 additions & 0 deletions data/sql/updates/db_characters/2023_09_16_00.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
-- DB update 2023_05_23_00 -> 2023_09_16_00
--
ALTER TABLE `profanity_name`
CHANGE COLUMN `name` `name` VARCHAR(12) NOT NULL COLLATE 'utf8mb4_bin' FIRST;

ALTER TABLE `reserved_name`
CHANGE COLUMN `name` `name` VARCHAR(12) NOT NULL COLLATE 'utf8mb4_bin' FIRST;
37 changes: 37 additions & 0 deletions data/sql/updates/db_world/2023_09_17_00.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
-- DB update 2023_09_15_02 -> 2023_09_17_00
-- modernize https://github.com/azerothcore/azerothcore-wotlk/pull/9912

UPDATE `creature` SET `CreateObject` = 2 WHERE `guid` IN (46438, 46449, 46459, 46461, 46462, 46573, 46586, 46714, 46715, 46912, 46913, 46915, 46916, 46917, 46918, 46919, 46920, 46921, 46922, 46923, 46924, 46925, 46926, 46927, 46928, 46929, 46930, 46931, 46932, 46933, 46934, 46935, 46936, 46937, 46938, 46939, 46940, 46941, 46942, 46943, 46944, 46945, 46946, 46947, 46948, 46949, 46950, 46951, 46952, 46953, 46954, 46955, 46957, 46958, 46971, 46972, 46974, 46981, 46997, 46998, 46999, 47000, 47001, 47002, 47003, 47004, 47006, 47008, 47009, 47010, 47012, 47016, 47017, 47029, 47030, 47031, 47037, 47038, 47039, 47052, 47053, 47054, 47055, 47056, 47057, 47060, 47061, 47062, 47208, 47249, 47262, 47263, 47267, 47268, 47269, 47270, 47271, 47280, 47281, 47282, 47283, 47284, 47285, 47286, 47287, 47288, 47290, 47310, 47312, 47314, 47315, 47316, 47317, 47319, 47320, 47321, 47322, 47324, 47325, 47327, 47328, 47329, 47330, 47331, 47332, 47333, 47334, 47335, 47336, 47337, 47338, 47340, 47341, 47342, 47343, 47344, 47345, 47346, 47350, 47660, 47752, 47863, 47876, 47880, 47883, 47900, 47905, 47907, 47911, 47915, 47921, 47922, 47925, 47926, 47928, 49560, 49561, 49562, 49563, 49564, 49565, 49566, 49567, 49568, 49569, 49570, 49571, 49572, 49610, 49611, 49612, 49613, 49614, 49615, 49616, 49617, 49620, 49621, 49622, 49623, 49626, 49627, 49628, 49629, 49630, 49631, 49632, 49633, 49634, 49635, 49636, 49637, 49638, 49639, 49640, 49641, 49642, 49643, 49644, 49645, 49646, 49648);

UPDATE `creature` SET `CreateObject` = 1 WHERE `guid` IN (47326, 47339, 47289);

-- modernize https://github.com/azerothcore/azerothcore-wotlk/pull/9943

UPDATE `creature` SET `CreateObject` = 2 WHERE `guid` IN (46439, 47917, 47916, 47931, 47913);
UPDATE `creature` SET `CreateObject` = 1 WHERE `guid` IN (46394, 49845, 49855);

-- modernize https://github.com/azerothcore/azerothcore-wotlk/pull/10052
UPDATE `creature` SET `CreateObject` = 2 WHERE `guid` IN (49818, 49850, 49819);

-- modernize https://github.com/azerothcore/azerothcore-wotlk/pull/10282
UPDATE `creature` SET `CreateObject` = 2 WHERE `guid` IN (46446, 46452, 46463, 47372, 47373, 47374, 47375, 47376, 47378, 47519, 47520, 47521, 47522, 47523, 47524, 47525, 47531, 47936, 49882, 49883, 49884, 49889, 49897, 49898, 49899);

-- modernize https://github.com/azerothcore/azerothcore-wotlk/pull/10285
UPDATE `creature` SET `CreateObject` = 2 WHERE `guid` IN (47527, 46431, 46464, 47352, 47355, 47356, 47361, 47363, 47377, 47379, 47380, 47381, 47382, 47383, 47505, 47516, 47517, 47518, 47633, 47647, 47663, 47857, 47919, 47933, 47937, 49860, 49861, 49862, 49865, 49880, 49881, 49900);

-- modernize https://github.com/azerothcore/azerothcore-wotlk/pull/12702
SET @GUID :=88354;
UPDATE `creature` SET `CreateObject` = 2 WHERE `guid` BETWEEN @GUID+0 AND @GUID+96;

-- modernize https://github.com/azerothcore/azerothcore-wotlk/pull/12751
SET @GUID :=94862;
UPDATE `creature` SET `CreateObject` = 2 WHERE `guid` BETWEEN @GUID+0 AND @GUID+72;

-- modernize https://github.com/azerothcore/azerothcore-wotlk/pull/12765
SET @GUID :=72707;
UPDATE `creature` SET `CreateObject` = 2 WHERE `guid` BETWEEN @GUID+0 AND @GUID+45;

-- modernize https://github.com/azerothcore/azerothcore-wotlk/pull/12854
SET @GUID :=132314;
UPDATE `creature` SET `CreateObject` = 2 WHERE `guid` BETWEEN @GUID+0 AND @GUID+83;
UPDATE `creature` SET `CreateObject` = 1 WHERE `guid` IN (@GUID+25, @GUID+38, @GUID+83);
3 changes: 3 additions & 0 deletions data/sql/updates/db_world/2023_09_17_01.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- DB update 2023_09_17_00 -> 2023_09_17_01
--
UPDATE `creature_template` SET `flags_extra` = `flags_extra`|256 WHERE (`entry` = 15689);
10 changes: 10 additions & 0 deletions data/sql/updates/db_world/2023_09_17_02.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
-- DB update 2023_09_17_01 -> 2023_09_17_02
--
DELETE FROM `waypoint_data` WHERE `id` = 1354890;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
(1354890, 1, -11169.11, -1908.5563, 165.76112, NULL, 0, 0, 0, 100, 0),
(1354890, 2, -11184.444, -1887.7946, 158.35687, NULL, 0, 0, 0, 100, 0),
(1354890, 3, -11194.229, -1875.3362, 153.53537, NULL, 0, 0, 0, 100, 0),
(1354890, 4, -11184.444, -1887.7946, 158.35687, NULL, 0, 0, 0, 100, 0),
(1354890, 5, -11169.11, -1908.5563, 165.76112, NULL, 0, 0, 0, 100, 0),
(1354890, 6, -11104.563, -1856.9681, 165.76112, NULL, 0, 0, 0, 100, 0);
11 changes: 11 additions & 0 deletions data/sql/updates/db_world/2023_09_17_03.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- DB update 2023_09_17_02 -> 2023_09_17_03
--
DELETE FROM `spell_script_names` WHERE `spell_id` = 30629 AND `ScriptName` = 'spell_magtheridon_debris_target_selector';
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
(30629, 'spell_magtheridon_debris_target_selector');

UPDATE `creature_template` SET `unit_flags` = `unit_flags`|33554432, `AIName` = '', `ScriptName` = 'npc_target_trigger' WHERE `entry` = 17516;

DELETE FROM `creature_template_movement` WHERE (`CreatureId` = 17516);
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES
(17516, 0, 0, 0, 1, 0, 0, 0);
3 changes: 3 additions & 0 deletions data/sql/updates/db_world/2023_09_17_04.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- DB update 2023_09_17_03 -> 2023_09_17_04
--
UPDATE `creature_template` SET `flags_extra` = `flags_extra`|256 WHERE (`entry` = 17521);
56 changes: 56 additions & 0 deletions data/sql/updates/db_world/2023_09_17_05.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
-- DB update 2023_09_17_04 -> 2023_09_17_05
--
DELETE FROM `smart_scripts` WHERE (`source_type` = 0 AND `entryorguid` = 21205);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `event_param6`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(21205, 0, 0, 0, 0, 0, 100, 0, 0, 5000, 20000, 35000, 0, 0, 11, 38363, 32, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Ravenous Flayer Matriarch - In Combat - Cast \'Gushing Wound\''),
(21205, 0, 1, 0, 0, 0, 100, 0, 0, 3000, 15000, 30000, 0, 0, 11, 36464, 32, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Ravenous Flayer Matriarch - In Combat - Cast \'The Den Mother`s Mark\''),
(21205, 0, 2, 0, 11, 0, 100, 0, 0, 0, 0, 0, 0, 0, 53, 0, 2120500, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Ravenous Flayer Matriarch - On Respawn - Start Patrol Path 2120500'),
(21205, 0, 3, 0, 1, 0, 100, 0, 60000, 180000, 60000, 180000, 0, 0, 80, 2120500, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Ravenous Flayer Matriarch - Out of Combat - Run Script');

DELETE FROM `smart_scripts` WHERE (`source_type` = 9 AND `entryorguid` = 2120500);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `event_param6`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(2120500, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 54, 30000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Ravenous Flayer Matriarch - Actionlist - Pause Waypoint'),
(2120500, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 11, 36691, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Ravenous Flayer Matriarch - Actionlist - Cast \'Serverside - Lay Ravenous Flayer Egg\''),
(2120500, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 89, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Ravenous Flayer Matriarch - Actionlist - Start Random Movement'),
(2120500, 9, 3, 0, 0, 0, 100, 0, 20000, 30000, 0, 0, 0, 0, 65, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Ravenous Flayer Matriarch - Actionlist - Resume Waypoint');

DELETE FROM `creature` WHERE `id1` = 21205 AND `guid` = 85392;
INSERT INTO `creature` (`guid`, `id1`, `map`, `zoneId`, `areaId`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `VerifiedBuild`, `CreateObject`, `Comment`) VALUES
(85392, 21205, 530, 3520, 3520, -2730.536376953125, 1150.532958984375, 63.02117919921875, 3.796946525573730468, 300, 48069, 2, 'Scripted Pathing');

DELETE FROM `creature_addon` WHERE `guid` = 85392;
DELETE FROM `waypoint_data` WHERE `id` = 853920;

DELETE FROM `waypoints` WHERE `entry` = 2120500;
INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES
(2120500, 1 , -2746.24, 1138.448, 54.15343, 'Ravenous Flayer Matriarch'),
(2120500, 2 , -2762.292, 1128.408, 46.53087, 'Ravenous Flayer Matriarch'),
(2120500, 3 , -2729.597, 1104.097, 49.9248, 'Ravenous Flayer Matriarch'),
(2120500, 4 , -2727.395, 1087.502, 48.17071, 'Ravenous Flayer Matriarch'),
(2120500, 5 , -2728.122, 1075.56, 45.84283, 'Ravenous Flayer Matriarch'),
(2120500, 6 , -2710.212, 1072.808, 47.86968, 'Ravenous Flayer Matriarch'),
(2120500, 7 , -2692.166, 1095.084, 51.25895, 'Ravenous Flayer Matriarch'),
(2120500, 8 , -2676.87, 1087.67, 48.08696, 'Ravenous Flayer Matriarch'),
(2120500, 9 , -2651.984, 1074.549, 49.94732, 'Ravenous Flayer Matriarch'),
(2120500, 10, -2634.343, 1060.091, 50.21058, 'Ravenous Flayer Matriarch'),
(2120500, 11, -2619.968, 1053.699, 37.64632, 'Ravenous Flayer Matriarch'),
(2120500, 12, -2598.035, 1047.925, 43.43085, 'Ravenous Flayer Matriarch'),
(2120500, 13, -2571.256, 1035.177, 43.26862, 'Ravenous Flayer Matriarch'),
(2120500, 14, -2563.9033, 1032.3075, 37.875877, 'Ravenous Flayer Matriarch - Decomposed'),
(2120500, 15, -2561.1533, 1031.0575, 33.125877, 'Ravenous Flayer Matriarch - Decomposed'),
(2120500, 16, -2552.076, 1026.859, 37.60755, 'Ravenous Flayer Matriarch'),
(2120500, 17, -2521.413, 1022.475, 42.70882, 'Ravenous Flayer Matriarch'),
(2120500, 18, -2516.2585, 1031.3173, 39.342514, 'Ravenous Flayer Matriarch - Decomposed'),
(2120500, 19, -2508.908, 1042.702, 49.50398, 'Ravenous Flayer Matriarch'),
(2120500, 20, -2502.511, 1057.798, 53.36262, 'Ravenous Flayer Matriarch'),
(2120500, 21, -2518.216, 1084.736, 63.13983, 'Ravenous Flayer Matriarch'),
(2120500, 22, -2519.813, 1103.396, 66.57159, 'Ravenous Flayer Matriarch'),
(2120500, 23, -2526.526, 1123.956, 72.65863, 'Ravenous Flayer Matriarch'),
(2120500, 24, -2555.379, 1145.952, 76.91769, 'Ravenous Flayer Matriarch'),
(2120500, 25, -2574.61, 1140.253, 74.28946, 'Ravenous Flayer Matriarch'),
(2120500, 26, -2581.985, 1117.115, 68.20245, 'Ravenous Flayer Matriarch'),
(2120500, 27, -2606.013, 1116.443, 66.19119, 'Ravenous Flayer Matriarch'),
(2120500, 28, -2631.04, 1119.793, 64.49197, 'Ravenous Flayer Matriarch'),
(2120500, 29, -2661.714, 1119.632, 64.44809, 'Ravenous Flayer Matriarch'),
(2120500, 30, -2698.282, 1122.563, 58.28287, 'Ravenous Flayer Matriarch'),
(2120500, 31, -2731.417, 1141.435, 59.53944, 'Ravenous Flayer Matriarch');
3 changes: 3 additions & 0 deletions data/sql/updates/db_world/2023_09_17_06.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- DB update 2023_09_17_05 -> 2023_09_17_06
--
UPDATE `creature_addon` SET `auras` = '' WHERE `guid` = 39059;
Loading

0 comments on commit 337eab2

Please sign in to comment.