First textures

This commit is contained in:
Aleksey 2020-09-23 17:34:11 +03:00
parent 6ec1a3711e
commit 2bc84f65a1
14 changed files with 14 additions and 4 deletions

View file

@ -95,7 +95,7 @@ public abstract class Config {
}
public boolean getBoolean(String key) {
Boolean val = configKeeper.getValue(key);
Boolean val = configKeeper.getValue(key);
return val != null ? val : false;
}