mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-15 16:44:43 +01:00
fix config stuff
This commit is contained in:
@@ -74,7 +74,7 @@ export default class ServerLaunchSection extends React.Component<IProps, IState>
|
||||
async playGame() {
|
||||
const config = await getConfig()
|
||||
|
||||
if (!config.game_path) return
|
||||
if (!config.game_install_path) return
|
||||
|
||||
// Connect to proxy
|
||||
if (config.toggle_grasscutter) {
|
||||
@@ -87,7 +87,7 @@ export default class ServerLaunchSection extends React.Component<IProps, IState>
|
||||
}
|
||||
|
||||
// Launch the program
|
||||
await invoke('run_program', { path: config.game_path })
|
||||
await invoke('run_program', { path: config.game_install_path })
|
||||
}
|
||||
|
||||
async launchServer() {
|
||||
|
||||
@@ -11,7 +11,7 @@ interface IProps {
|
||||
}
|
||||
|
||||
interface IState {
|
||||
game_path: string
|
||||
game_install_path: string
|
||||
grasscutter_path: string
|
||||
grasscutter_with_game: boolean
|
||||
}
|
||||
@@ -21,7 +21,7 @@ export default class Options extends React.Component<IProps, IState> {
|
||||
super(props)
|
||||
|
||||
this.state = {
|
||||
game_path: '',
|
||||
game_install_path: '',
|
||||
grasscutter_path: '',
|
||||
grasscutter_with_game: false
|
||||
}
|
||||
@@ -30,7 +30,7 @@ export default class Options extends React.Component<IProps, IState> {
|
||||
componentDidMount() {
|
||||
getConfig().then(config => {
|
||||
this.setState({
|
||||
game_path: config.game_path || '',
|
||||
game_install_path: config.game_install_path || '',
|
||||
grasscutter_path: config.grasscutter_path || '',
|
||||
grasscutter_with_game: config.grasscutter_with_game || false
|
||||
})
|
||||
@@ -40,7 +40,7 @@ export default class Options extends React.Component<IProps, IState> {
|
||||
}
|
||||
|
||||
setGameExec(value: string) {
|
||||
setConfigOption('game_path', value)
|
||||
setConfigOption('game_install_path', value)
|
||||
}
|
||||
|
||||
setGrasscutterJar(value: string) {
|
||||
@@ -59,7 +59,7 @@ export default class Options extends React.Component<IProps, IState> {
|
||||
<Tr text="options.game_exec" />
|
||||
</div>
|
||||
<div className='OptionValue'>
|
||||
<DirInput onChange={this.setGameExec} value={this.state?.game_path} extensions={['exe']} />
|
||||
<DirInput onChange={this.setGameExec} value={this.state?.game_install_path} extensions={['exe']} />
|
||||
</div>
|
||||
</div>
|
||||
<div className='OptionSection'>
|
||||
|
||||
Reference in New Issue
Block a user