- Duke: fixed handling for when a slimer's target gets destroyed after 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.
This commit is contained in:
Christoph Oelckers 2023-06-02 19:34:53 +02:00
parent 61bc698029
commit b2af4c0957

View file

@ -297,7 +297,7 @@ class DukeGreenSlime : DukeActor
}
else
{
self.temp_data[0] = -1;
self.counter = -1;
}
return;
}