project cleanup, getplayeridentifiers and sendchatmessage implemented

also adds support for the debug flag :)
This commit is contained in:
Luuk van Oijen
2023-11-25 19:10:19 +01:00
parent 04e058dc0d
commit 56cd0eca11
7 changed files with 66 additions and 23 deletions

View File

@@ -41,11 +41,12 @@ pub struct GeneralSettings {
#[serde(rename = "ResourceFolder")]
pub resource_folder: String,
#[serde(rename = "Debug")]
pub debug: bool,
// Options below are not yet supported
#[serde(rename = "LogChat")]
pub log_chat: bool,
#[serde(rename = "Debug")]
pub debug: bool,
}
impl GeneralSettings {