mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 02:11:19 +00:00
Don't use any single chars for maps.
The standard map format (original qbsp) doesn't use them.
This commit is contained in:
parent
0c2818c038
commit
c8be8c242a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue