Skip to content

Commit d3e20d1

Browse files
authored
fix stop_effect_at_value.gd operator match error (#57)
fix match operator number `4`
1 parent 2d0cc70 commit d3e20d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addons/godot_gameplay_systems/attributes_and_abilities/resources/stop_effect_at_value.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func should_apply(attribute_effect: AttributeEffect, effect: GameplayEffect, gam
1818
1: return attribute.current_value > value_to_stop_at
1919
2: return attribute.current_value < value_to_stop_at
2020
3: return attribute.current_value >= value_to_stop_at
21-
3: return attribute.current_value <= value_to_stop_at
21+
4: return attribute.current_value <= value_to_stop_at
2222

2323

2424
return false

0 commit comments

Comments
 (0)