Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addons/hashes/fnc_encodeJSON.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ switch (typeName _object) do {

private _json = ((allVariables _object) apply {
private _name = _x;
private _value = _object getVariable _name;
private _value = _object getVariable [_name, objNull];
Comment thread
PabstMirror marked this conversation as resolved.

format ["%1: %2", [_name] call CBA_fnc_encodeJSON, [_value] call CBA_fnc_encodeJSON]
}) joinString ", ";
Expand Down