diff --git a/leveleditor.py b/leveleditor.py index ebeb880..63c50bb 100644 --- a/leveleditor.py +++ b/leveleditor.py @@ -162,7 +162,7 @@ def __init__(self, editor): (cmd + "-W", "Close", editor.closeEditor), ("", "", lambda: None), - (cmd + "G", "Goto", editor.showGotoPanel), + (cmd + "-G", "Goto", editor.showGotoPanel), (cmd + "-I", "World Info", editor.showWorldInfo), (cmd + "-Z", "Undo", editor.undo), (cmd + "-A", "Select All", editor.selectAll), @@ -288,7 +288,7 @@ def brakeOn(self): def brakeOff(self): self.brake = False - tickInterval = 1000 / 30 + tickInterval = 1000 / Settings.targetFPS.get() oldPosition = (0, 0, 0) diff --git a/terrain.png b/terrain.png index 3d3683b..7bba0e1 100644 Binary files a/terrain.png and b/terrain.png differ