mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +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):
|
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
|
||||||
|
|
Loading…
Reference in a new issue