Skip to content

Commit

Permalink
- Duke: fixed handling for when a slimer's target gets destroyed afte…
Browse files Browse the repository at this point in the history
…r eating it.

temp_data[0] was renamed to counter some time ago, but this place seems to have missed this somehow so the slimer got stuck in the 'eating' state.
  • Loading branch information
coelckers committed Jun 3, 2023
1 parent 61bc698 commit b2af4c0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -297,7 +297,7 @@ class DukeGreenSlime : DukeActor
}
else
{
self.temp_data[0] = -1;
self.counter = -1;
}
return;
}
Expand Down

0 comments on commit b2af4c0

Please sign in to comment.