mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2025-02-16 15:22:01 +03:00
Removed state and description update messages.
State and description update messages clutter stdout and are undesirable.
This commit is contained in:
parent
f2dda02106
commit
005bc26713
1 changed files with 2 additions and 2 deletions
|
@ -259,7 +259,7 @@ impl App {
|
|||
let string = state.text().as_str().to_string();
|
||||
std::thread::sleep(std::time::Duration::from_millis(10));
|
||||
config.game.enhancements.discord_rpc.state = string;
|
||||
println!("Updated string: {}",config.game.enhancements.discord_rpc.state);
|
||||
// println!("[Debug] Updated string: {}",config.game.enhancements.discord_rpc.state);
|
||||
config::update(config);
|
||||
}
|
||||
});
|
||||
|
@ -272,7 +272,7 @@ impl App {
|
|||
let string = state.text().as_str().to_string();
|
||||
std::thread::sleep(std::time::Duration::from_millis(10));
|
||||
config.game.enhancements.discord_rpc.description = string;
|
||||
println!("Updated string: {}",config.game.enhancements.discord_rpc.description);
|
||||
// println!("[Debug] Updated string: {}",config.game.enhancements.discord_rpc.description);
|
||||
config::update(config);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue