diff --git a/apmw/webhost/customserver/gamespackage/cache.py b/apmw/webhost/customserver/gamespackage/cache.py index 887d128ddd..928b10ba28 100644 --- a/apmw/webhost/customserver/gamespackage/cache.py +++ b/apmw/webhost/customserver/gamespackage/cache.py @@ -8,7 +8,7 @@ class DBGamesPackageCache(GamesPackageCache): def __init__(self, static_games_package: dict[str, GamesPackage]) -> None: super().__init__() - self._static = {game: super().get(game, games_package) for game, games_package in static_games_package.items()} + self._static = {game: GamesPackageCache.get(self, game, games_package) for game, games_package in static_games_package.items()} def get( self,