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.
This commit is contained in:
Jacob Schmidt 2025-03-20 19:58:30 -05:00
parent 033630977a
commit fa745dde8d
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 * Function: dragonfly_db_fnc_publish
* Author: Creedcoder, J. Schmidt * Author: Creedcoder, J. Schmidt

View File

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