minetestmapper can be run from any directory
If it doesn't find colors.txt locally, it looks for the one in the directory of the script itself.
parent
59c58f230e
commit
dd9909a574
|
@ -152,7 +152,10 @@ if path[-1:] != "/" and path[-1:] != "\\":
|
|||
|
||||
# Load color information for the blocks.
|
||||
colors = {}
|
||||
try:
|
||||
f = file("colors.txt")
|
||||
except IOError:
|
||||
f = file(os.path.join(os.path.dirname(__file__), "colors.txt"))
|
||||
for line in f:
|
||||
values = string.split(line)
|
||||
colors[int(values[0], 16)] = (
|
||||
|
|
Loading…
Reference in New Issue