Skip to content

Commit

Permalink
Remove quick death
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJoeSmo committed Nov 4, 2023
1 parent 5a71ad7 commit e102b2a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion PRG/prg000.asm
Original file line number Diff line number Diff line change
Expand Up @@ -5857,7 +5857,7 @@ Player_Die:
LDA #-64
STA Player_YVel ; Player_YVel = -64

LDA #$10
LDA #$30
STA Event_Countdown ; Event_Countdown = $30 (ticks until dropped back to map)

LDA #$01
Expand Down
12 changes: 4 additions & 8 deletions PRG/prg029.asm
Original file line number Diff line number Diff line change
Expand Up @@ -2114,14 +2114,10 @@ Player_Die_Dying:
LDA Player_AboveTop
BNE PRG029_D6DA ; If Player is above top of screen, jump to PRG029_D6DA

NOP
NOP
NOP
NOP
NOP
NOP
NOP
JMP PRG029_D6E5
LDA Player_SpriteY
AND #$f0
CMP #$b0
BEQ PRG029_D6E5 ; If Player_SpriteY >= $B0 && Player_SpriteY <= $BF (Player is halfway below status bar), jump to PRG029_D6E5

PRG029_D6DA:
LDA Event_Countdown
Expand Down

0 comments on commit e102b2a

Please sign in to comment.