mirror of
https://github.com/enzet/map-machine.git
synced 2025-05-03 12:16:42 +02:00
Fix levels.
This commit is contained in:
parent
30dacffddf
commit
b390c2d44a
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ class Constructor:
|
||||||
elif self.configuration.level == "underground":
|
elif self.configuration.level == "underground":
|
||||||
self.check_level = lambda x: not check_level_overground(x)
|
self.check_level = lambda x: not check_level_overground(x)
|
||||||
else:
|
else:
|
||||||
self.check_level = lambda x: not check_level_number(
|
self.check_level = lambda x: check_level_number(
|
||||||
x, float(self.configuration.level)
|
x, float(self.configuration.level)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue