From c8be8c242ac6da89bd71e9547c471c8655f81df9 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 9 Sep 2012 17:13:10 +0900 Subject: [PATCH] Don't use any single chars for maps. The standard map format (original qbsp) doesn't use them. --- tools/io_qfmap/map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/io_qfmap/map.py b/tools/io_qfmap/map.py index 4b57a3df4..c05b849db 100644 --- a/tools/io_qfmap/map.py +++ b/tools/io_qfmap/map.py @@ -235,7 +235,7 @@ def map_error(self, msg): def parse_map(filename): text = open(filename, "rt").read() - script = Script(filename, text) + script = Script(filename, text, single="") script.error = map_error entities = [] global texdefs