From: Rudolf Polzer Date: Sat, 27 Aug 2011 15:40:24 +0000 (+0200) Subject: also accept ' in map names X-Git-Tag: xonotic-v0.5.0~49 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=79e82b2acffcb45e56e5f670d84d16ba22efbcad;p=xonotic%2Fxonotic-data.pk3dir.git also accept ' in map names --- diff --git a/qcsrc/common/mapinfo.qc b/qcsrc/common/mapinfo.qc index 57ccc20b4..469c86a2b 100644 --- a/qcsrc/common/mapinfo.qc +++ b/qcsrc/common/mapinfo.qc @@ -810,6 +810,7 @@ float MapInfo_isRedundant(string fn, string t) t = strreplace(":", "-", t); t = strreplace(" ", "-", t); t = strreplace("_", "-", t); + t = strreplace("'", "-", t); if(!strcasecmp(fn, t)) return TRUE;