From dafc2043380760f2733c954e7df030010f99ed62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?CAPELLE=20Mika=C3=ABl?= Date: Mon, 20 Jul 2020 10:42:57 +0200 Subject: [PATCH] Add missing executableForcedLoads() in BasicGame. --- basic_game.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/basic_game.py b/basic_game.py index 785bc88..a8c37e0 100644 --- a/basic_game.py +++ b/basic_game.py @@ -320,6 +320,9 @@ class BasicGame(mobase.IPluginGame): ) return execs + def executableForcedLoads(self) -> List[mobase.ExecutableForcedLoadSetting]: + return [] + def savegameExtension(self) -> str: return self.mappings.savegameExtension.get()