mirror of
https://github.com/azerothcore/azerothcore-wotlk.git
synced 2025-12-06 02:30:26 -08:00
Compare commits
5 commits
430a0e47a0
...
74195db21b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
74195db21b | ||
|
|
240c29a1fb | ||
|
|
ae3ff5f840 | ||
|
|
b92976fa50 | ||
|
|
621641f1e1 |
4 changed files with 14 additions and 0 deletions
3
data/sql/updates/db_world/2025_11_25_00.sql
Normal file
3
data/sql/updates/db_world/2025_11_25_00.sql
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
-- DB update 2025_11_24_03 -> 2025_11_25_00
|
||||
-- Light Won't Grant Me Vengeance requires Crusader Forward Camp
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 12894 WHERE `ID` = 12904;
|
||||
3
data/sql/updates/db_world/2025_11_25_01.sql
Normal file
3
data/sql/updates/db_world/2025_11_25_01.sql
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
-- DB update 2025_11_25_00 -> 2025_11_25_01
|
||||
-- Makes the quest "Remember Everfrost" repetable
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags` = `SpecialFlags` | 1 WHERE `ID` = 13421;
|
||||
3
data/sql/updates/db_world/2025_11_25_02.sql
Normal file
3
data/sql/updates/db_world/2025_11_25_02.sql
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
-- DB update 2025_11_25_01 -> 2025_11_25_02
|
||||
-- Removes the pre-quest for Elixir of Pain [502] for Elixir of Agony
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 0 WHERE (`ID` = 509);
|
||||
|
|
@ -279,6 +279,11 @@ add_library(modules STATIC
|
|||
|
||||
if (MOD_ALE_FOUND)
|
||||
target_link_libraries(modules PUBLIC lualib)
|
||||
# Also ensure include directories are propagated for modules that include sol.hpp
|
||||
get_target_property(LUALIB_INCLUDE_DIRS lualib INTERFACE_INCLUDE_DIRECTORIES)
|
||||
if(LUALIB_INCLUDE_DIRS)
|
||||
list(APPEND PUBLIC_INCLUDES ${LUALIB_INCLUDE_DIRS})
|
||||
endif()
|
||||
endif()
|
||||
|
||||
target_link_libraries(modules
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue