the following branch will never trigger
|
if (pQuestData->fState < 3) |
due to this branch a few lines before:
|
if (pQuestData->fState < 3) |
In vanilla this case is handled by a boolean stored on the stack that will be set by the first check on pQuestData->fState.
This was verified by the 1.13c assembly at D2Game.0x64EE9 (its a bit tooo complex to post inline unfortunately).
the following branch will never trigger
D2MOO/source/D2Game/src/QUESTS/ACT1/A1Q2.cpp
Line 478 in 1901980
due to this branch a few lines before:
D2MOO/source/D2Game/src/QUESTS/ACT1/A1Q2.cpp
Line 465 in 1901980
In vanilla this case is handled by a boolean stored on the stack that will be set by the first check on
pQuestData->fState.This was verified by the 1.13c assembly at D2Game.0x64EE9 (its a bit tooo complex to post inline unfortunately).