Update config.rs version

This commit is contained in:
Garen Tyler 2023-03-14 17:46:56 -06:00
parent 2614c7ce77
commit 6589eb2836
Signed by: garentyler
GPG Key ID: D7A048C454CB7054
3 changed files with 3 additions and 8 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ target
/output.log /output.log
/world /world
/server-icon.png /server-icon.png
/composition.toml

View File

@ -1,6 +0,0 @@
log_level = "debug"
max_players = 20
motd = "Hello world!"
ping_game_version = "1.19.3"
port = 25565
server_icon = "server-icon.png"

View File

@ -39,8 +39,8 @@ impl Default for Config {
} else { } else {
log::LevelFilter::Info log::LevelFilter::Info
}, },
protocol_version: 756, protocol_version: 761,
game_version: "1.18.1".to_owned(), game_version: "1.19.3".to_owned(),
server_version, server_version,
} }
} }