From 80fc8417dcd9ad34e385cbd3441007e7815179cf Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Fri, 3 Jan 2025 16:33:03 -0500 Subject: [PATCH] [-] Remove proxied matching prop --- config/application.properties | 3 --- src/main/java/icu/samnyan/aqua/sega/chusan/ChusanProps.kt | 1 - 2 files changed, 4 deletions(-) diff --git a/config/application.properties b/config/application.properties index 807b8ec1..0340d592 100644 --- a/config/application.properties +++ b/config/application.properties @@ -53,9 +53,6 @@ game.chusan.reflector-url=http://reflector.naominet.live:18080/ ## This sets the matching server url. ## When this is set, we will sync with the external matching url so that we can match with more players. game.chusan.external-matching=https://chu3-match.sega.ink/ -## When this is set to true, we will proxy all matching requests sent to the external matching server. -## This option enhances security by masking the user ID and keychip. -game.chusan.proxied-matching=false ## This enables user use login bonus function if set to true. ## NOTE: THIS IS NOT TESTED, it's implemented by someone very inexperienced and might not work. game.chusan.loginbonus-enable=false diff --git a/src/main/java/icu/samnyan/aqua/sega/chusan/ChusanProps.kt b/src/main/java/icu/samnyan/aqua/sega/chusan/ChusanProps.kt index f4bce972..c94b0786 100644 --- a/src/main/java/icu/samnyan/aqua/sega/chusan/ChusanProps.kt +++ b/src/main/java/icu/samnyan/aqua/sega/chusan/ChusanProps.kt @@ -10,5 +10,4 @@ class ChusanProps { var loginBonusEnable = false var externalMatching: String? = null var reflectorUrl: String? = null - var proxiedMatching: Boolean = false } \ No newline at end of file