From 8cd699757e1ec61dd0ec85a0bf56bbdd4365cd51 Mon Sep 17 00:00:00 2001 From: Rene Stoeckel Date: Sun, 22 Aug 2004 20:39:03 +0000 Subject: bugfix in a touch call. the bug was in the original code as well !!! --- src/jake2/server/SV.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/jake2') diff --git a/src/jake2/server/SV.java b/src/jake2/server/SV.java index b8e8e7e..fa98f32 100644 --- a/src/jake2/server/SV.java +++ b/src/jake2/server/SV.java @@ -2,7 +2,7 @@ * SV.java * Copyright (C) 2003 * - * $Id: SV.java,v 1.7 2004-08-22 14:25:12 salomo Exp $ + * $Id: SV.java,v 1.8 2004-08-22 20:39:03 salomo Exp $ */ /* Copyright (C) 1997-2001 Id Software, Inc. @@ -107,7 +107,6 @@ public final class SV public static void SV_Impact(edict_t e1, trace_t trace) { edict_t e2; - // cplane_t backplane; e2= trace.ent; @@ -115,7 +114,7 @@ public final class SV e1.touch.touch(e1, e2, trace.plane, trace.surface); if (e2.touch != null && e2.solid != Defines.SOLID_NOT) - e2.touch.touch(e2, e1, null, null); + e2.touch.touch(e2, e1, GameBase.dummyplane, null); } public static int SV_FlyMove(edict_t ent, float time, int mask) -- cgit v1.2.3