Compare commits

...

5 commits

Author SHA1 Message Date
github-actions[bot]
74195db21b chore(DB): import pending files
Referenced commit(s): b92976fa50
2025-11-25 00:54:35 +00:00
blinkysc
240c29a1fb
fix(DB/Quest): Light Won't Grant Me Vengeance now requires Crusader Forward Camp (#23876)
Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
2025-11-25 00:53:44 +00:00
Ryan Turner
ae3ff5f840
fix(DB/Quest) - Remember Everfrost! is now repetable (#23878)
Co-authored-by: FlyingArowana <TheSCREWEDSoftware@users.noreply.github.com>
2025-11-25 00:53:35 +00:00
Ryan Turner
b92976fa50
fix(DB/Quest) - Elixir of Agony doesn't require any quest to be picked up (#23883)
Co-authored-by: FlyingArowana <TheSCREWEDSoftware@users.noreply.github.com>
2025-11-25 00:53:26 +00:00
iThorgrim
621641f1e1
fix(Modules): Propagate lualib to Sol2 (#23838) 2025-11-24 23:59:38 +00:00
4 changed files with 14 additions and 0 deletions

View 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;

View 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;

View 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);

View file

@ -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