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

View file

@ -235,7 +235,7 @@ def map_error(self, msg):
def parse_map(filename): def parse_map(filename):
text = open(filename, "rt").read() text = open(filename, "rt").read()
script = Script(filename, text) script = Script(filename, text, single="")
script.error = map_error script.error = map_error
entities = [] entities = []
global texdefs global texdefs