diff --git a/code/fgame/entity.cpp b/code/fgame/entity.cpp index 6972f438..bbffea5a 100644 --- a/code/fgame/entity.cpp +++ b/code/fgame/entity.cpp @@ -2619,14 +2619,11 @@ qboolean Entity::droptofloor(float maxfall) trace = G_Trace(start, mins, maxs, end, this, edict->clipmask, false, "Entity::droptofloor"); if (trace.fraction == 1 || trace.startsolid || trace.allsolid || !trace.ent) { - groundentity = world->edict; return false; } setOrigin(trace.endpos); - groundentity = trace.ent; - return true; }