diff options
author | mid-kid <esteve.varela@gmail.com> | 2022-02-15 18:27:12 +0100 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2022-02-15 18:30:57 +0100 |
commit | 418b73bc6d5c811bff464ee45a105b9c01248a89 (patch) | |
tree | ae81ca4c00e76b7c0d83c20f0163fbc332706deb | |
parent | e56a9f7962fa2c17bad0fddc4cb27993111c177c (diff) |
Use constants for PartyAttr in move_effects/thief.asm
-rw-r--r-- | engine/battle/move_effects/thief.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/move_effects/thief.asm b/engine/battle/move_effects/thief.asm index 03e3fb6ac..73bbf595e 100644 --- a/engine/battle/move_effects/thief.asm +++ b/engine/battle/move_effects/thief.asm @@ -96,7 +96,7 @@ BattleCommand_Thief: jp StdBattleTextbox .playeritem - ld a, 1 + ld a, MON_ITEM call BattlePartyAttr ld d, h ld e, l @@ -104,7 +104,7 @@ BattleCommand_Thief: ret .enemyitem - ld a, 1 + ld a, MON_ITEM call OTPartyAttr ld d, h ld e, l |