From 56e52fda80a5270ffe7e7938e6f52dabb0ebc31d Mon Sep 17 00:00:00 2001 From: smallmodel <15067410+smallmodel@users.noreply.github.com> Date: Sat, 14 Oct 2023 00:44:59 +0200 Subject: [PATCH] Implemented Actor::Landed --- code/fgame/actor.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/fgame/actor.cpp b/code/fgame/actor.cpp index cc97abfb..4ebc6148 100644 --- a/code/fgame/actor.cpp +++ b/code/fgame/actor.cpp @@ -12269,7 +12269,11 @@ Actor::Landed */ void Actor::Landed(Event *ev) { - // FIXME: unimplemented + if (groundentity && groundentity->entity != world) { + warning("Actor::Landed", "Actor %d has landed on an entity that might move\n", entnum); + } + + setMoveType(MOVETYPE_NONE); } bool Actor::IsOnFloor(void)