[+] chusan: Luminous

This commit is contained in:
Azalea
2024-03-22 15:09:29 -04:00
parent e91029f66e
commit a5fe5f53e2
4 changed files with 15 additions and 5 deletions

View File

@@ -64,6 +64,11 @@ class ChusanServletController(
val endMatching: EndMatchingHandler,
val getMatchingState: GetMatchingStateHandler,
val removeMatchingMember: RemoveMatchingMemberHandler,
// Luminous
val getUserCMissionHandler: GetUserCMissionHandler,
val getUserNetBattleRankingInfoHandler: GetUserNetBattleRankingInfoHandler,
val getGameMapAreaConditionHandler: GetGameMapAreaConditionHandler
) {
val logger = LoggerFactory.getLogger(ChusanServletController::class.java)
@@ -88,7 +93,7 @@ class ChusanServletController(
"CMUpsertUserPrintlogApi", "CMUpsertUserPrintSubtractApi",
// SDGS Exclusive
"GetUserCtoCPlayApi")
"GetUserCtoCPlayApi", "GetUserCMissionApi", "GetUserNetBattleRankingInfoApi", "GetGameMapAreaConditionApi")
val noopEndpoint = endpointList.popAll("UpsertClientBookkeepingApi", "UpsertClientDevelopApi", "UpsertClientErrorApi",
"UpsertClientSettingApi", "UpsertClientTestmodeApi", "CreateTokenApi", "RemoveTokenApi", "UpsertClientUploadApi",

View File

@@ -87,6 +87,7 @@ public class GetGameSettingHandler implements BaseHandler {
10,
"http://" + addr + ":" + port + "/ChusanServlet/",
"http://" + addr + ":" + port + "/ChusanServlet/",
"http://" + addr + ":" + port + "/ChusanServlet/",
"http://" + addr + ":" + port + "/ChusanServlet/"
);

View File

@@ -29,6 +29,7 @@ public class GameSetting {
private int matchTimeLimit;
private int matchErrorLimit;
private String matchingUri;
private String matchingUriX;
private String udpHolePunchUri;
private String reflectorUri;
}