Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
theace0296 committed Apr 10, 2022
1 parent 7d6fdaf commit e3ee3a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RandFramework/Server/init/fn_checkAnyPlayersAlive.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ format[localize "STR_TRGM2_debugFunctionString", _fnc_scriptName, _fnc_scriptNam


sleep 3;
private = false;
private _bEnded = false;
waitUntil {
private _bAnyAlive = false;
{
Expand Down
2 changes: 1 addition & 1 deletion RandFramework/Server/mission/fn_populateSideMission.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ if (!_bFriendlyInsurgents) then {
//spawn inner checkpoints
private _iCount = ([50] call TRGM_GETTER_fnc_iMoreEnemies);
if (_iCount > 0) then {_dAngleAdustPerLoop = 360 / _iCount;};
waitUntil do {
waitUntil {
_iCount = _iCount - 1;
[_sidePos] spawn {
private _sidePos = _this select 0;
Expand Down
2 changes: 2 additions & 0 deletions Tools/sqflint.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ def string_not_in_exclusions_list(string):
return False
if "<Variable(getTextRaw)>" in string:
return False
if "<Variable(isNotEqualTo)>" in string:
return False
if "<Variable(flatten)>" in string:
return False
if re.match(r'.+?Variable "_[^"]+" not used', string) is not None:
Expand Down

0 comments on commit e3ee3a6

Please sign in to comment.