From 157f418855c425ff4c660150c6ceef153170afb5 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Thu, 12 Jan 2023 21:10:58 +0000 Subject: [PATCH] Fix game support not being in tabs for txp --- app/blueprints/packages/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/blueprints/packages/__init__.py b/app/blueprints/packages/__init__.py index 8e6ee8c3..b34d0c53 100644 --- a/app/blueprints/packages/__init__.py +++ b/app/blueprints/packages/__init__.py @@ -69,7 +69,7 @@ def get_package_tabs(user: User, package: Package): } ] - if package.type == PackageType.MOD: + if package.type == PackageType.MOD or package.type == PackageType.TXP: retval.insert(1, { "id": "game_support", "title": gettext("Supported Games"),