Skip to content

Commit

Permalink
fill to first max
Browse files Browse the repository at this point in the history
  • Loading branch information
threeandthreee committed Sep 27, 2024
1 parent 2668424 commit ab9c349
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions worlds/ladx/LADXR/patches/owl.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,23 +81,23 @@ def removeOwlEvents(rom):
; Give powder
ld a, [$DB4C]
cp $10
cp $20
jr nc, doNotGivePowder
ld a, $10
ld a, $20
ld [$DB4C], a
doNotGivePowder:
ld a, [$DB4D]
cp $10
cp $30
jr nc, doNotGiveBombs
ld a, $10
ld a, $30
ld [$DB4D], a
doNotGiveBombs:
ld a, [$DB45]
cp $10
cp $30
jr nc, doNotGiveArrows
ld a, $10
ld a, $30
ld [$DB45], a
doNotGiveArrows:
Expand Down

0 comments on commit ab9c349

Please sign in to comment.