1
0
mirror of https://github.com/OvercastNetwork/ProjectAres.git synced 2025-04-11 22:56:08 +02:00

Change flair config keys

This commit is contained in:
Ashcon Partovi 2017-07-26 01:50:58 -07:00 committed by GitHub
parent ddf4eb5255
commit 30cee03502

View File

@ -16,10 +16,10 @@ public class FlairConfiguration {
} }
public boolean overheadFlair() { public boolean overheadFlair() {
return config.getBoolean("overhead-flair", false); return config.getBoolean("overhead", false);
} }
public int maxFlairs() { public int maxFlairs() {
return config.getInt("max-flairs", -1); return config.getInt("limit", -1);
} }
} }