Skip to content

Commit

Permalink
Flip a condition in queue check (#367)
Browse files Browse the repository at this point in the history
  • Loading branch information
rekterakathom authored Feb 18, 2024
1 parent 1290119 commit e7f2f04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/danger/scripts/lambs_danger.fsm
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ class FSM
priority = 4.000000;
to="End_Forced";
precondition = /*%FSM<CONDPRECONDITION""">*/""/*%FSM</CONDPRECONDITION""">*/;
condition=/*%FSM<CONDITION""">*/"call lambs_danger_fnc_isForced && {_queue isEqualTo []}"/*%FSM</CONDITION""">*/;
condition=/*%FSM<CONDITION""">*/"_queue isEqualTo [] && {call lambs_danger_fnc_isForced}"/*%FSM</CONDITION""">*/;
action=/*%FSM<ACTION""">*/""/*%FSM</ACTION""">*/;
};
/*%FSM</LINK>*/
Expand Down

0 comments on commit e7f2f04

Please sign in to comment.