do not process obsolete games

This commit is contained in:
mig 2017-04-08 19:28:43 +02:00
parent 6e5fb40d32
commit 193b80a41f

View file

@ -52,6 +52,9 @@ function HandleModuleGames(modelOnly) {
moduleManifest.games.forEach((game) => {
// this is executed for every game in the game module
if(game.config.model.obsolete)
return;
// same some game data so we can list all games later
allGames[game.name] = {
title: game.config.model["title-en"],