From 5f742f5817b638b98751ac3b737910dd6be36320 Mon Sep 17 00:00:00 2001 From: mee19mc <85102106+mee19mc@users.noreply.github.com> Date: Wed, 6 Aug 2025 21:07:46 +0800 Subject: [PATCH] Update gameend.py - Add XG to version list - Add Spec C, D - C=GF Delta - D=DM Delta --- modules/gitadora/gameend.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/gitadora/gameend.py b/modules/gitadora/gameend.py index 9cc967b..42e42c9 100644 --- a/modules/gitadora/gameend.py +++ b/modules/gitadora/gameend.py @@ -6,7 +6,7 @@ from core_common import core_process_request, core_prepare_response, E from core_database import get_db router = APIRouter(prefix="/local", tags=["local"]) -router.model_whitelist = ["M32"] +router.model_whitelist = ["M32", "L33", "L32", "K33", "K32", "J33", "J32"] def get_profile(cid): @@ -29,6 +29,10 @@ async def gitadora_gameend_regist(ver: str, request: Request): g = "guitarfreaks" elif spec == "B": g = "drummania" + elif spec == "C": + g = "guitarfreaksdelta" + elif spec == "D": + g = "drummaniadelta" root = request_info["root"][0]