diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-25 18:36:49 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-25 18:36:49 -0400 |
commit | 35821ec58c244be1f5cb670e07873e8a875c10a5 (patch) | |
tree | c3a35971e9c5bbd274d61728f2cf4882eb65e40c /engine | |
parent | dcb24bc72428a60e37c1dfa7a93dc46bff7bd5ed (diff) |
Correct constants in DoNPCTrade
Diffstat (limited to 'engine')
-rw-r--r-- | engine/events/npc_trade.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/events/npc_trade.asm b/engine/events/npc_trade.asm index f7ec0f23e..0f9c7d9f5 100644 --- a/engine/events/npc_trade.asm +++ b/engine/events/npc_trade.asm @@ -188,10 +188,10 @@ DoNPCTrade: ld e, NPCTRADE_DIALOG call GetTradeAttribute ld a, [hl] - cp TRADE_DIALOG_COMPLETE - ld b, RESET_FLAG + cp TRADE_DIALOGSET_GIRL + ld b, CAUGHT_BY_UNKNOWN jr c, .incomplete - ld b, SET_FLAG + ld b, CAUGHT_BY_GIRL .incomplete farcall SetGiftPartyMonCaughtData |