diff options
-rw-r--r-- | Add-a-new-Unown-form.md | 4 | ||||
-rw-r--r-- | Tutorials.md | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Add-a-new-Unown-form.md b/Add-a-new-Unown-form.md index 49594d0..7c04863 100644 --- a/Add-a-new-Unown-form.md +++ b/Add-a-new-Unown-form.md @@ -330,7 +330,7 @@ Edit [wram.asm](../blob/master/wram.asm): wFirstUnownSeen:: db ``` -Since `wUnownDex` has grown by 2 bytes, we need to remove 2 bytes elsewhere, since their WRAM bank is very close to being full. Luckily there are 22 unused bytes nearby. +This WRAM bank is very close to being full. Since `wUnownDex` has grown by 2 bytes, we need to remove 2 bytes elsewhere. Luckily there are 22 unused bytes nearby. ## 6. Create a Unown font character for the new form @@ -381,7 +381,7 @@ Edit [engine/pokedex/pokedex.asm](../blob/master/engine/pokedex/pokedex.asm): Pokedex_UnownModePlaceCursor: ld a, [wDexCurrentUnownIndex] - ld c, $5a ; diamond cursor -- ld c, $5c ; diamond cursor ++ ld c, $5c ; diamond cursor ... diff --git a/Tutorials.md b/Tutorials.md index e0c28e6..eb1bb84 100644 --- a/Tutorials.md +++ b/Tutorials.md @@ -26,7 +26,7 @@ Tutorials may use diff syntax to show edits: - [Pack pocket](Add-a-new-Pack-pocket) - [Radio channel](Add-a-new-radio-channel) - [Wild Pokémon slot](Add-a-new-wild-Pokémon-slot) -- [Unown form](Add-a-new-wild-Unown-form) +- [Unown form](Add-a-new-Unown-form) - [Fishing rod](Add-a-new-fishing-rod) **How to edit the…** |