Add option to hide balances <=0 from baltop (#4226)

Co-authored-by: Josh Roy <10731363+JRoy@users.noreply.github.com>
This commit is contained in:
Debug 2021-06-12 18:31:39 +02:00 committed by GitHub
parent fa87c74b56
commit 6e5a41a880
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 1 deletions

View file

@ -1858,4 +1858,9 @@ public class Settings implements net.ess3.api.ISettings {
public boolean isUpdateCheckEnabled() {
return config.getBoolean("update-check", true);
}
@Override
public boolean showZeroBaltop() {
return config.getBoolean("show-zero-baltop", true);
}
}