savefile corruption screen and escort RTB waypoints

This commit is contained in:
Vasyl Horbachenko
2018-06-30 06:18:05 +03:00
parent 8b0ef52721
commit b2458ac244
5 changed files with 55 additions and 33 deletions

View File

@@ -28,8 +28,7 @@ def restore_game():
with open(_save_file(), "rb") as f:
return pickle.load(f)
except Exception as e:
print(e)
return None
raise e
def save_game(game) -> bool: