From: Rene S. <sa...@us...> - 2004-08-22 20:39:15
|
Update of /cvsroot/jake2/jake2/src/jake2/server In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23939/src/jake2/server Modified Files: SV.java Log Message: bugfix in a touch call. the bug was in the original code as well !!! Index: SV.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/server/SV.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** SV.java 22 Aug 2004 14:25:12 -0000 1.7 --- SV.java 22 Aug 2004 20:39:03 -0000 1.8 *************** *** 108,112 **** { edict_t e2; - // cplane_t backplane; e2= trace.ent; --- 108,111 ---- *************** *** 116,120 **** if (e2.touch != null && e2.solid != Defines.SOLID_NOT) ! e2.touch.touch(e2, e1, null, null); } --- 115,119 ---- if (e2.touch != null && e2.solid != Defines.SOLID_NOT) ! e2.touch.touch(e2, e1, GameBase.dummyplane, null); } |