This commit is contained in:
Alex Emmet 2025-11-14 11:11:18 +01:00
commit 258404b7fa
14 changed files with 109 additions and 54 deletions

View file

@ -10,9 +10,9 @@ pub fn check_eula() -> bool {
return false;
}
if (file.contains("eula=false")) {
if file.contains("eula=false") {
false
} else if (file.contains("eula=true")) {
} else if file.contains("eula=true") {
true
} else {
false