mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 02:34:07 +00:00
Allow configuration overrides
Signed-off-by: Jaida Wu <mlgmxyysd@meowcat.org>
This commit is contained in:
parent
1133ffd9aa
commit
8d78897a29
@ -11,6 +11,8 @@ call :LOG [INFO] To proper exit this console, use [Ctrl + C] and enter N not Y.
|
||||
call :LOG [INFO]
|
||||
call :LOG [INFO] Initializing...
|
||||
|
||||
set CONFIG=start_config
|
||||
|
||||
set JAVA_PATH=DO_NOT_CHECK_PATH
|
||||
set MITMDUMP_PATH=DO_NOT_CHECK_PATH
|
||||
set MONGODB_PATH=DO_NOT_CHECK_PATH
|
||||
@ -21,6 +23,10 @@ set DATABASE_STORAGE_PATH=%CUR_PATH%resources\Database
|
||||
set SERVER_JAR_NAME=grasscutter.jar
|
||||
set PROXY_SCRIPT_NAME=proxy
|
||||
|
||||
if exist "%CUR_PATH%%CONFIG%.cmd" (
|
||||
call "%CUR_PATH%%CONFIG%.cmd" >nul 2>nul
|
||||
)
|
||||
|
||||
if not "%JAVA_PATH%" == "DO_NOT_CHECK_PATH" (
|
||||
if not exist "%JAVA_PATH%java.exe" (
|
||||
call :LOG [ERROR] Java not found.
|
||||
|
25
start_config.cmd
Normal file
25
start_config.cmd
Normal file
@ -0,0 +1,25 @@
|
||||
@rem
|
||||
@rem Copyright (C) 2002-2022 MlgmXyysd All Rights Reserved.
|
||||
@rem
|
||||
|
||||
@echo off
|
||||
pushd %~dp0
|
||||
set CUR_PATH=%~dp0
|
||||
|
||||
@rem This will not work if your java or mitmproxy is in a different location, plugin as necessary
|
||||
@rem this just saves you from changing your PATH
|
||||
|
||||
@rem Executable Path
|
||||
@rem Note: Fill DO_NOT_CHECK_PATH if you need to run it from PATH
|
||||
@rem without detecting whether the executable file exists
|
||||
set JAVA_PATH=C:\Program Files\Java\jdk1.8.0_202\bin\
|
||||
set MITMDUMP_PATH=%CUR_PATH%
|
||||
set MONGODB_PATH=%CUR_PATH%
|
||||
|
||||
@rem Utility Path
|
||||
set SERVER_JAR_PATH=%CUR_PATH%
|
||||
set DATABASE_STORAGE_PATH=%CUR_PATH%resources\Database
|
||||
|
||||
@rem Utility Name
|
||||
set SERVER_JAR_NAME=grasscutter.jar
|
||||
set PROXY_SCRIPT_NAME=proxy
|
Loading…
Reference in New Issue
Block a user