mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- fixed handle_st18's ceiling movement.
This commit is contained in:
parent
fd1864bb48
commit
5ebf2fef89
1 changed files with 1 additions and 1 deletions
|
@ -684,7 +684,7 @@ static void handle_st18(sectortype* sptr, DDukeActor* actor)
|
|||
if (sectp == nullptr) return;
|
||||
double speed = sptr->extra / 256.;
|
||||
setanimation(sptr, anim_floorz, sptr, sectp->floorz, speed);
|
||||
setanimation(sptr, anim_ceilingz, sptr, sectp->ceilingz, speed);
|
||||
setanimation(sptr, anim_ceilingz, sptr, sectp->floorz + sptr->ceilingz - sptr->floorz, speed);
|
||||
callsound(sptr, actor);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue