default 127.0.01

This commit is contained in:
SpikeHD 2022-04-25 18:59:14 -07:00
parent efd52e1ab7
commit a4c33584a0
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ class MlgmXyysd_Anime_Game_Proxy:
loader.add_option( loader.add_option(
name = "ip", name = "ip",
typespec = str, typespec = str,
default = "localhost", default = "127.0.0.1",
help = "IP address to replace", help = "IP address to replace",
) )

View File

@ -390,7 +390,7 @@ async function launchOfficial() {
* Launch the game with a proxy * Launch the game with a proxy
*/ */
async function launchPrivate() { async function launchPrivate() {
const ip = document.getElementById('ip').value || 'localhost' const ip = document.getElementById('ip').value || '127.0.0.1'
const port = document.getElementById('port').value || '443' const port = document.getElementById('port').value || '443'
const config = await getCfg() const config = await getCfg()