diff options
| author | TiKevin83 <38826675+TiKevin83@users.noreply.github.com> | 2024-11-17 23:03:46 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-17 22:03:46 -0600 |
| commit | 6e94bc3d76c8c0419ac82f91ea7b01ff0d7b57fe (patch) | |
| tree | b4a3ec8ba5cd0342966bcd7fbc9704a2a1246a9a /engine/pokemon | |
| parent | Fix the .wave5 comment for yellow sfx data (diff) | |
| download | pokeyellow-6e94bc3d76c8c0419ac82f91ea7b01ff0d7b57fe.tar.gz pokeyellow-6e94bc3d76c8c0419ac82f91ea7b01ff0d7b57fe.tar.xz pokeyellow-6e94bc3d76c8c0419ac82f91ea7b01ff0d7b57fe.zip | |
Fix comments around battle evolution code (#120)
the bug that allows item evolutions to happen after battles is patched here in Yellow where it isn't in Red/Blue. Updated a comment to reflect this.
Diffstat (limited to 'engine/pokemon')
| -rw-r--r-- | engine/pokemon/evos_moves.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/pokemon/evos_moves.asm b/engine/pokemon/evos_moves.asm index 079ab917..981dd10e 100644 --- a/engine/pokemon/evos_moves.asm +++ b/engine/pokemon/evos_moves.asm @@ -9,7 +9,7 @@ TryEvolvingMon: call Evolution_FlagAction ; this is only called after battle -; it is supposed to do level up evolutions, though there is a bug that allows item evolutions to occur +; it does level up evolutions, though there was a bug in red/blue that allows item evolutions to occur which is patched here EvolutionAfterBattle: ldh a, [hTileAnimations] push af |
