mirror of https://github.com/pret/pokecrystal.git
Fix spaces
This commit is contained in:
parent
d79fca8c6e
commit
f6e94dfd79
|
@ -394,17 +394,17 @@ Add this to the end of each file:
|
||||||
ld [wCryTracks], a
|
ld [wCryTracks], a
|
||||||
ld a, [wBattleMonSpecies]
|
ld a, [wBattleMonSpecies]
|
||||||
call PlayStereoCry
|
call PlayStereoCry
|
||||||
+ ld a, [wCurBattleMon]
|
+ ld a, [wCurBattleMon]
|
||||||
+ push af
|
+ push af
|
||||||
ld a, [wLastPlayerMon]
|
ld a, [wLastPlayerMon]
|
||||||
+ ld [wCurBattleMon], a
|
+ ld [wCurBattleMon], a
|
||||||
+ call UpdateFaintedPlayerMon
|
+ call UpdateFaintedPlayerMon
|
||||||
+ pop af
|
+ pop af
|
||||||
+ ld [wCurBattleMon], a
|
+ ld [wCurBattleMon], a
|
||||||
- ld c, a
|
- ld c, a
|
||||||
- ld hl, wBattleParticipantsNotFainted
|
- ld hl, wBattleParticipantsNotFainted
|
||||||
- ld b, RESET_FLAG
|
- ld b, RESET_FLAG
|
||||||
- predef SmallFarFlagAction
|
- predef SmallFarFlagAction
|
||||||
call PlayerMonFaintedAnimation
|
call PlayerMonFaintedAnimation
|
||||||
ld hl, BattleText_MonFainted
|
ld hl, BattleText_MonFainted
|
||||||
jr .done_fainted
|
jr .done_fainted
|
||||||
|
|
Loading…
Reference in New Issue