Skip to content

Commit

Permalink
Restore speed of instances
Browse files Browse the repository at this point in the history
Fixes #3686
  • Loading branch information
Loobinex committed Nov 16, 2024
1 parent 64c1af8 commit 81df89f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/creature_instances.c
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ void process_creature_instance(struct Thing *thing)
TRACE_THING(thing);
cctrl = creature_control_get_from_thing(thing);
SYNCDBG(19, "Starting for %s index %d instance %d", thing_model_name(thing), (int)thing->index, (int)cctrl->instance_id);
if (cctrl->inst_turn > cctrl->inst_total_turns)
if (cctrl->inst_turn >= cctrl->inst_total_turns)
{
if (!cctrl->inst_repeat)
{
Expand Down

0 comments on commit 81df89f

Please sign in to comment.