This commit is contained in:
ZeroEpoch1969
2019-01-11 20:05:12 -07:00
parent 3754222582
commit 93d4c9654e
13 changed files with 136 additions and 60 deletions

View File

@ -54,7 +54,7 @@ public class VPlayer implements ConfigLoadable, ConfigSavable, Validatable
discordId = cs.getString("discordId", null);
enabled = cs.getBoolean("enabled", false);
tag = cs.getString("tag", null);
clearChatOptOut = cs.getBoolean("clearchatoptout", false);
clearChatOptOut = cs.getBoolean("clearChatOptOut", false);
}
@Override
@ -66,7 +66,7 @@ public class VPlayer implements ConfigLoadable, ConfigSavable, Validatable
cs.set("enabled", enabled);
cs.set("tag", tag);
cs.set("ips", Lists.newArrayList(ips));
cs.set("clearchatoptout", clearChatOptOut);
cs.set("clearChatOptOut", clearChatOptOut);
}
public List<String> getIps()