Don't use any single chars for maps.

The standard map format (original qbsp) doesn't use them.
This commit is contained in:
Bill Currie 2012-09-09 17:13:10 +09:00
parent 0c2818c038
commit c8be8c242a
1 changed files with 1 additions and 1 deletions

View File

@ -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