summaryrefslogtreecommitdiff
path: root/player/opponent.gd
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2024-12-28 15:08:23 +0100
committerDaniel Weipert <git@mail.dweipert.de>2024-12-28 15:08:23 +0100
commit474ef692613f298ab05bbb65ad85625f178b63cc (patch)
treed069e587c8d731ea8191ee0318abc85694c04351 /player/opponent.gd
parentd572bc0a27b05c6632ba76bd630c7c4fd8f0ae5d (diff)
next commit
Diffstat (limited to 'player/opponent.gd')
-rw-r--r--player/opponent.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/opponent.gd b/player/opponent.gd
index ec20cd1..7fc2ebf 100644
--- a/player/opponent.gd
+++ b/player/opponent.gd
@@ -51,7 +51,7 @@ func _on_vertical_timer_timeout() -> void:
if randi_range(0, 100) > 75 and is_below_ledge():
await jump()
- elif randi_range(0, 100) > 75 and not is_on_bottom_floor():
+ elif randi_range(0, 100) > 50 and not is_on_bottom_floor():
await fall()
$VerticalTimer.start()