Skip to content

Commit

Permalink
Merge pull request #524 from CBATeam/fix-return-value-formating
Browse files Browse the repository at this point in the history
remove semicolon to indicate a return value
  • Loading branch information
Killswitch00 committed Oct 11, 2016
2 parents 393263e + 1222f79 commit a4ecc39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/hashes/fnc_hashGet.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ params [["_hash", [], [[]]], "_key"];
private _index = (_hash select HASH_KEYS) find _key;

if (_index >= 0) then {
(_hash select HASH_VALUES) select _index; // Return.
(_hash select HASH_VALUES) select _index // Return.
} else {
private _default = param [2, _hash select HASH_DEFAULT_VALUE];

Expand Down

0 comments on commit a4ecc39

Please sign in to comment.