Skip to content

Commit

Permalink
#1264 fix quest objective parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
DubbleClick committed Nov 16, 2024
1 parent 543e19e commit 38bea61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GWToolboxdll/Modules/QuestModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ std::vector<QuestObjective> QuestModule::ParseQuestObjectives(GW::Constants::Que

auto enc_str = std::wstring(current_objective_enc, current_objective_len);
auto content_start = enc_str.find(0x10a);
if (content_start != std::wstring::npos)
if (content_start == std::wstring::npos)
break;
content_start++;

Expand Down

0 comments on commit 38bea61

Please sign in to comment.