summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2007-09-26 19:39:08 +0000
committerTim Angus <tim@ngus.net>2007-09-26 19:39:08 +0000
commitb17d871269828bbd12c2790ee5ddafa54af8ed9b (patch)
tree88852c09529e2cd66a8fb129a14e5cd40b9d9dd4 /src/game
parent78096eccbe24730e829a55460fa4dc5b839716a5 (diff)
* (bug 3305) Remove inappropriate SnapVector
* Don't display creep over a certain height
Diffstat (limited to 'src/game')
-rw-r--r--src/game/g_physics.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/game/g_physics.c b/src/game/g_physics.c
index b5221352..58c64878 100644
--- a/src/game/g_physics.c
+++ b/src/game/g_physics.c
@@ -62,9 +62,6 @@ static void G_Bounce( gentity_t *ent, trace_t *trace )
if( VectorLength( ent->s.pos.trDelta ) < 10 )
{
VectorMA( trace->endpos, 0.5f, trace->plane.normal, trace->endpos ); // make sure it is off ground
- // Never allow origin to be snapped lower (buildables fall through map bug)
- trace->endpos[2] = (float)ceil(trace->endpos[2]);
- SnapVector( trace->endpos );
G_SetOrigin( ent, trace->endpos );
ent->s.groundEntityNum = trace->entityNum;
VectorCopy( trace->plane.normal, ent->s.origin2 );