feat: Remove unnecessary database load call

This commit removes the redundant call to the `load` function in `addons/db/functions/fnc_init.sqf`. The database is already loaded during initialization.
This commit is contained in:
Jacob Schmidt 2025-03-22 19:44:20 -05:00
parent 2fbf0d4ed4
commit a16aa6e384

View File

@ -31,8 +31,6 @@ ramdb_db_buffer = 10240;
private _dll = "ArmaRAMDb" callExtension ["version", []]; private _dll = "ArmaRAMDb" callExtension ["version", []];
[] call FUNC(load);
diag_log text (format ["ArmaRAMDb: DLL Version %1 found", _dll]); diag_log text (format ["ArmaRAMDb: DLL Version %1 found", _dll]);
diag_log text "ArmaRAMDb: Functions loaded and Initializtion completed!"; diag_log text "ArmaRAMDb: Functions loaded and Initializtion completed!";
diag_log text (format ["ArmaRAMDb: Buffer size set to %1 Bytes", ramdb_db_buffer]); diag_log text (format ["ArmaRAMDb: Buffer size set to %1 Bytes", ramdb_db_buffer]);