mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Save-compat fix for Bas_100 being renamed to Vuojarvi
This commit is contained in:
parent
5a25b97a9e
commit
bc3ec4ffb9
@ -87,6 +87,9 @@ class MigrationUnpickler(pickle.Unpickler):
|
|||||||
elif name == "Olenegorsk":
|
elif name == "Olenegorsk":
|
||||||
from dcs.terrain.kola.airports import Olenya
|
from dcs.terrain.kola.airports import Olenya
|
||||||
return Olenya
|
return Olenya
|
||||||
|
if name == "Bas_100":
|
||||||
|
from dcs.terrain.kola.airports import Vuojarvi
|
||||||
|
return Vuojarvi
|
||||||
if module in ["dcs.vehicles", "dcs.ships"]:
|
if module in ["dcs.vehicles", "dcs.ships"]:
|
||||||
try:
|
try:
|
||||||
return super().find_class(module, name)
|
return super().find_class(module, name)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user