diff options
Diffstat (limited to 'docs/design_flaws.md')
-rw-r--r-- | docs/design_flaws.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/design_flaws.md b/docs/design_flaws.md index 8669bc7a6..bcabff901 100644 --- a/docs/design_flaws.md +++ b/docs/design_flaws.md @@ -332,7 +332,7 @@ Edit `GetMapMusic`: add_tm PSYCHIC_M ; dd ... add_tm NIGHTMARE ; f2 -NUM_TMS = const_value - TM01 - 2 ; discount ITEM_C3 and ITEM_DC +NUM_TMS EQU const_value - TM01 - 2 ; discount ITEM_C3 and ITEM_DC ``` `GetTMHMNumber` and `GetNumberedTMHM` in [engine/items/items.asm](https://github.com/pret/pokecrystal/blob/master/engine/items/items.asm) have to compensate for this. |