diff options
| author | Rangi42 <sylvie.oukaour+rangi42@gmail.com> | 2025-08-03 21:05:52 -0400 |
|---|---|---|
| committer | Rangi42 <sylvie.oukaour+rangi42@gmail.com> | 2025-08-03 21:05:52 -0400 |
| commit | 6f8ee8ab3c56c7cefd13e7a4774dda57a602e34c (patch) | |
| tree | 231f0bad66f28eff94fa332e419a526c8a82c206 /macros | |
| parent | Update hardware.inc to 5.2.0 (diff) | |
| download | pokeyellow-6f8ee8ab3c56c7cefd13e7a4774dda57a602e34c.tar.gz pokeyellow-6f8ee8ab3c56c7cefd13e7a4774dda57a602e34c.tar.xz pokeyellow-6f8ee8ab3c56c7cefd13e7a4774dda57a602e34c.zip | |
Try to catch missing commas in `tmhm` learnsets
Diffstat (limited to 'macros')
| -rw-r--r-- | macros/data.asm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/macros/data.asm b/macros/data.asm index c3c9cb8d..fbb0be13 100644 --- a/macros/data.asm +++ b/macros/data.asm @@ -21,6 +21,7 @@ MACRO tmhm ENDR ; set bits of bytes REPT _NARG + ASSERT FATAL, STRFIND("\1", " ") == -1, "Invalid move: \1" IF DEF(\1_TMNUM) DEF n = (\1_TMNUM - 1) / 8 DEF i = (\1_TMNUM - 1) % 8 |
