Compare commits

...

2 Commits

Author SHA1 Message Date
Jacob Schmidt
6d6dc81135 Merge branch 'master' of https://gitea.innovativedevsolutions.org/IDSolutions/dragonfly
All checks were successful
Build / Build (push) Successful in 42s
2025-03-20 19:58:34 -05:00
Jacob Schmidt
fa745dde8d fix(db): Update include paths in pub/sub functions
Updates the include paths in `fnc_publish.sqf` and `fnc_subscribe.sqf` to use relative paths. This ensures the correct `script_component.hpp` file is included.
2025-03-20 19:58:30 -05:00
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,5 @@
#include "script_component.hpp"
#include "..\script_component.hpp"
/*
* Function: dragonfly_db_fnc_publish
* Author: Creedcoder, J. Schmidt

View File

@ -1,4 +1,5 @@
#include "script_component.hpp"
#include "..\script_component.hpp"
/*
* Function: dragonfly_db_fnc_subscribe
* Author: J. Schmidt