diff options
author | yenatch <yenatch@gmail.com> | 2016-01-04 07:41:19 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2016-01-04 07:41:19 -0500 |
commit | 0add51451cda9d4221af137f83e2429d3577310c (patch) | |
tree | fd05f8f0ad49d88b032dc9e10af85a42dfa0e402 /macros/map.asm | |
parent | da87d2a929b1d58175efe063833c124d8ba702c9 (diff) | |
parent | 2a263629a40e201b1702e2f4e65f1c61360cc2b2 (diff) |
Merge pull request #330 from PikalaxALT/scriptmacrorenaming
Scriptmacrorenaming
Diffstat (limited to 'macros/map.asm')
-rw-r--r-- | macros/map.asm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/macros/map.asm b/macros/map.asm index 113b05898..519e2eb76 100644 --- a/macros/map.asm +++ b/macros/map.asm @@ -170,3 +170,16 @@ elevfloor: MACRO db \1, \2 map \3 ENDM + +itemball: MACRO +if _NARG == 2 + db \1, \2 +else + db \1, 1 +endc +endm + +stonetable: MACRO + db \1, \2 + dw \3 +endm |