Skip to content

Commit

Permalink
fix stop_effect_at_value.gd operator match error (#57)
Browse files Browse the repository at this point in the history
fix match operator number `4`
  • Loading branch information
AmyF authored Dec 16, 2024
1 parent 2d0cc70 commit d3e20d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func should_apply(attribute_effect: AttributeEffect, effect: GameplayEffect, gam
1: return attribute.current_value > value_to_stop_at
2: return attribute.current_value < value_to_stop_at
3: return attribute.current_value >= value_to_stop_at
3: return attribute.current_value <= value_to_stop_at
4: return attribute.current_value <= value_to_stop_at


return false

0 comments on commit d3e20d1

Please sign in to comment.