[-] Remove proxied matching prop

pull/100/head
Azalea 2025-01-03 16:33:03 -05:00
parent cb0f46c5db
commit 80fc8417dc
2 changed files with 0 additions and 4 deletions

View File

@ -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

View File

@ -10,5 +10,4 @@ class ChusanProps {
var loginBonusEnable = false
var externalMatching: String? = null
var reflectorUrl: String? = null
var proxiedMatching: Boolean = false
}