aboutsummaryrefslogtreecommitdiffstats
path: root/src/jake2/game
diff options
context:
space:
mode:
authorHolger Zickner <[email protected]>2006-01-14 16:06:11 +0000
committerHolger Zickner <[email protected]>2006-01-14 16:06:11 +0000
commited81b800a854d5107519649e33ceee55474bc01d (patch)
treee8a72abb22efb293c51c52a1126305a28e5d4856 /src/jake2/game
parentfaefcb851b310dd78d62e0d7a000c386e28942f9 (diff)
dirty bugfix
Diffstat (limited to 'src/jake2/game')
-rw-r--r--src/jake2/game/game_import_t.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/jake2/game/game_import_t.java b/src/jake2/game/game_import_t.java
index dfb9121..21a0736 100644
--- a/src/jake2/game/game_import_t.java
+++ b/src/jake2/game/game_import_t.java
@@ -19,7 +19,7 @@
*/
// Created on 31.10.2003 by RST.
-// $Id: game_import_t.java,v 1.5 2004-10-07 14:13:07 hzi Exp $
+// $Id: game_import_t.java,v 1.6 2006-01-14 16:06:11 hzi Exp $
package jake2.game;
import jake2.Defines;
@@ -100,7 +100,11 @@ public class game_import_t {
return SV_WORLD.SV_Trace(start, mins, maxs, end, passent, contentmask);
}
- public pmove_t.PointContentsAdapter pointcontents;
+ public pmove_t.PointContentsAdapter pointcontents = new pmove_t.PointContentsAdapter() {
+ public int pointcontents(float[] o) {
+ return 0;
+ }
+ };
public boolean inPHS(float[] p1, float[] p2) {
return SV_GAME.PF_inPHS(p1, p2);