You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Missionframework/functions/fn_registerSectorObjects.sqf
+7-7
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
File: fn_registerSectorObjects.sqf
3
3
Author: PiG13BR - https://github.com/PiG13BR
4
4
Date: 2024-11-23
5
-
Last Update: 2024-11-24
5
+
Last Update: 2024-11-30
6
6
License: MIT License - http://www.opensource.org/licenses/MIT
7
7
8
8
Description:
@@ -30,9 +30,9 @@ if (!isServer) exitWith {};
30
30
_allObjectsappend_onlyEditedObjs;
31
31
}forEach KPLIB_sectors_all;
32
32
33
-
if (isNil"KPBLIB_garrisonsHashMap") then {
33
+
if (isNil"KPBLIB_sectorObjects_hashMap") then {
34
34
// Creates the hashmap
35
-
KPBLIB_garrisonsHashMap=createHashMap;
35
+
KPBLIB_sectorObjects_hashMap=createHashMap;
36
36
};
37
37
38
38
{
@@ -43,14 +43,14 @@ if (!isServer) exitWith {};
43
43
if (_sectorisEqualTo"") then {[format ["%1 in position %2 is too far away from any sectors. Deleting the object.", (typeOf_x), (getPos_x)], "WARNING"] callKPLIB_fnc_log; deleteVehicle_x; continue};
44
44
45
45
// Check if the key (sector) is already in the hashmap
0 commit comments