aboutsummaryrefslogtreecommitdiffstats
path: root/src/jake2/client
diff options
context:
space:
mode:
authorCarsten Weisse <[email protected]>2004-10-24 23:48:22 +0000
committerCarsten Weisse <[email protected]>2004-10-24 23:48:22 +0000
commit7e2207ab03e4a12b502cb19065d0698516196a9c (patch)
tree8c216cdd9acdef2009935fe377c07b732b512b46 /src/jake2/client
parent1893a6fdea4c48b378626d98811306953c9ecdb3 (diff)
this is the right place for download file
Diffstat (limited to 'src/jake2/client')
-rw-r--r--src/jake2/client/CL_parse.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/jake2/client/CL_parse.java b/src/jake2/client/CL_parse.java
index 5a8794e..d7716e2 100644
--- a/src/jake2/client/CL_parse.java
+++ b/src/jake2/client/CL_parse.java
@@ -2,7 +2,7 @@
* CL_parse.java
* Copyright (C) 2004
*
- * $Id: CL_parse.java,v 1.13 2004-10-24 22:23:41 cawe Exp $
+ * $Id: CL_parse.java,v 1.14 2004-10-24 23:48:22 cawe Exp $
*/
/*
Copyright (C) 1997-2001 Id Software, Inc.
@@ -56,10 +56,11 @@ public class CL_parse {
// =============================================================================
public static String DownloadFileName(String fn) {
- if (fn.startsWith("players"))
- return Globals.BASEDIRNAME + "/" + fn;
- else
- return FS.Gamedir() + "/" + fn;
+ return FS.Gamedir() + "/" + fn;
+// if (fn.startsWith("players"))
+// return Globals.BASEDIRNAME + "/" + fn;
+// else
+// return FS.Gamedir() + "/" + fn;
}
/*