mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
Fix blank remove attachment text M4, M240, L110
Some attachments were using incorrect string names.
This commit is contained in:
@@ -132,7 +132,7 @@ server_hiveReadWrite = {
|
||||
//diag_log ("ATTEMPT READ/WRITE: " + _key);
|
||||
_data = "HiveExt" callExtension _key;
|
||||
//diag_log ("READ/WRITE: " +str(_data));
|
||||
_resultArray = call compile _data;
|
||||
_resultArray = call compile format ["%1",_data];
|
||||
_resultArray
|
||||
};
|
||||
|
||||
@@ -182,6 +182,7 @@ dayz_objectUID2 = {
|
||||
if !(_key in currentObjectUIDs) exitWith {currentObjectUIDs set [count currentObjectUIDs,_key];};
|
||||
keyStartNumber = keyStartNumber + 1;
|
||||
_key = str keyStartNumber;
|
||||
diag_log format["Duplicate UID generated by dayz_objectUID2. Automatically corrected to +1= %1. This should rarely happen.",_key];
|
||||
};
|
||||
_key
|
||||
};
|
||||
@@ -220,4 +221,12 @@ generate_new_damage = {
|
||||
_damage
|
||||
};
|
||||
|
||||
server_hiveReadWriteLarge = {
|
||||
private["_key","_resultArray","_data"];
|
||||
_key = _this;
|
||||
_data = "HiveExt" callExtension _key;
|
||||
_resultArray = call compile _data;
|
||||
_resultArray
|
||||
};
|
||||
|
||||
call compile preprocessFileLineNumbers "\z\addons\dayz_server\compile\fa_hiveMaintenance.sqf";
|
||||
Reference in New Issue
Block a user