diff options
| author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2025-12-15 15:16:40 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-15 15:16:40 -0500 |
| commit | d79c578abd993f7eee4e85462a8cd5b7c4e14646 (patch) | |
| tree | dd89e07a471a12cd6eb731bf559d73940c07b444 /data/moves | |
| parent | Comment more unreferenced local labels (#550) (diff) | |
| download | pokeyellow-d79c578abd993f7eee4e85462a8cd5b7c4e14646.tar.gz pokeyellow-d79c578abd993f7eee4e85462a8cd5b7c4e14646.tar.xz pokeyellow-d79c578abd993f7eee4e85462a8cd5b7c4e14646.zip | |
Specify a max item length for `list_start` (#552)
Diffstat (limited to 'data/moves')
| -rw-r--r-- | data/moves/names.asm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/moves/names.asm b/data/moves/names.asm index 025172d5..caecc06c 100644 --- a/data/moves/names.asm +++ b/data/moves/names.asm @@ -1,5 +1,6 @@ MoveNames:: - list_start + ; in-battle "used <move name>!" text can only fit 12 (MOVE_NAME_LENGTH - 2) characters + list_start MOVE_NAME_LENGTH - 2 li "POUND" li "KARATE CHOP" li "DOUBLESLAP" |
