summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRangi <35663410+Rangi42@users.noreply.github.com>2019-05-25 13:54:29 -0400
committerGitHub <noreply@github.com>2019-05-25 13:54:29 -0400
commite8ddecd0eb1b79f2436f1ea8a0f2163bedec7550 (patch)
tree0d512816b512f747fe7c8e795df4ca34f8efaec0 /docs
parentb24cd55f968909c3ec29c6455a32463c987f3063 (diff)
parent476f9ba40d5b59fd724ac1234b34448df372d52c (diff)
Merge pull request #636 from mid-kid/patch
Small cleanups
Diffstat (limited to 'docs')
-rw-r--r--docs/design_flaws.md2
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.