Skip to content

Commit

Permalink
fix mistakes that prevent eoc from firing
Browse files Browse the repository at this point in the history
  • Loading branch information
GuardianDll committed Oct 13, 2024
1 parent a550e52 commit 198f64e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/npctalk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5523,8 +5523,9 @@ talk_effect_fun_t::func f_run_eocs( const JsonObject &jo, std::string_view membe
}
}
} else {
while( i >= iteration_amount ) {
while( i < iteration_amount ) {
run_eoc_once( eocs, d, newDialog, dov_time, random_time );
++i;
}
}
};
Expand Down

0 comments on commit 198f64e

Please sign in to comment.