From bc3ec4ffb9996132a2517a9868e2fe06653c105e Mon Sep 17 00:00:00 2001 From: Raffson Date: Thu, 15 Aug 2024 22:15:09 +0200 Subject: [PATCH] Save-compat fix for Bas_100 being renamed to Vuojarvi --- game/persistency.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/game/persistency.py b/game/persistency.py index d32d2aa6..5ee92a14 100644 --- a/game/persistency.py +++ b/game/persistency.py @@ -87,6 +87,9 @@ class MigrationUnpickler(pickle.Unpickler): elif name == "Olenegorsk": from dcs.terrain.kola.airports import Olenya return Olenya + if name == "Bas_100": + from dcs.terrain.kola.airports import Vuojarvi + return Vuojarvi if module in ["dcs.vehicles", "dcs.ships"]: try: return super().find_class(module, name)