- It's Height, not height...

This commit is contained in:
Christoph Oelckers 2016-09-06 22:36:53 +02:00
parent 5a3147407e
commit f536523fbd
1 changed files with 1 additions and 1 deletions

View File

@ -552,7 +552,7 @@ DEFINE_ACTION_FUNCTION(AActor, A_MaulerTorpedoWave)
// If the torpedo hit the ceiling, it should still spawn the wave
savedz = self->Z();
if (wavedef && self->ceilingz < self->Z() + wavedef->height)
if (wavedef && self->ceilingz < self->Z() + wavedef->Height)
{
self->SetZ(self->ceilingz - wavedef->Height);
}