From f9d8763ed51ee8d6c43d37aa2bd36c647ab2a893 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 24 Oct 2022 20:56:41 +0200 Subject: [PATCH] - Exhumed: fixed wasp's death animation --- source/games/exhumed/src/wasp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/exhumed/src/wasp.cpp b/source/games/exhumed/src/wasp.cpp index 1e0dbc46b..ff6e271e8 100644 --- a/source/games/exhumed/src/wasp.cpp +++ b/source/games/exhumed/src/wasp.cpp @@ -356,7 +356,7 @@ void AIWasp::Tick(RunListEvent* ev) { auto pSector =pActor->sector(); - pActor->spr.pos.Z = pActor->vel.Z; + pActor->spr.pos.Z += pActor->vel.Z; if (pActor->spr.pos.Z >= pSector->floorz) {