diff options
| author | Max Roncace <me@caseif.net> | 2025-11-19 00:10:04 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-18 21:10:04 -0800 |
| commit | 7f863c069b80b09c54133052efeb5e4a5f3c04b8 (patch) | |
| tree | 5da6a21b1f561ab0665e7db9b389b8122cd87b77 /src/d/actor/d_a_npc_kn.cpp | |
| parent | 1b2fe5e2e373c19b8e6748f79a245ce0dd822920 (diff) | |
d_a_npc_chin matching (#2822)
Diffstat (limited to 'src/d/actor/d_a_npc_kn.cpp')
| -rw-r--r-- | src/d/actor/d_a_npc_kn.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/d/actor/d_a_npc_kn.cpp b/src/d/actor/d_a_npc_kn.cpp index 81bcdab421..ec40934b65 100644 --- a/src/d/actor/d_a_npc_kn.cpp +++ b/src/d/actor/d_a_npc_kn.cpp @@ -3322,7 +3322,8 @@ int daNpc_Kn_c::ECut_secondEncount(int i_idx) { break; case 10: if (talkProc(0, 0, NULL, 0)) { - if (mFlow.getChoiceNo() == 0) { + int choiceNo = mFlow.getChoiceNo(); + if (choiceNo == 0) { int sp8 = 0; switch (mType) { case 1: |
