mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-31 12:30:40 +00:00
- 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:
parent
61bc698029
commit
b2af4c0957
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ class DukeGreenSlime : DukeActor
|
|||
}
|
||||
else
|
||||
{
|
||||
self.temp_data[0] = -1;
|
||||
self.counter = -1;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue