fix the config bug
This commit is contained in:
parent
43d617facb
commit
881ed85f8d
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ dependencies {
|
|||
}
|
||||
|
||||
group "lol.pyr"
|
||||
version "1.0.1"
|
||||
version "1.0.2"
|
||||
|
||||
compileJava {
|
||||
options.release.set(17)
|
||||
|
|
|
@ -50,7 +50,7 @@ public enum ConfigurationValue {
|
|||
FETCHING_SKIN("messages", "&aFetching skin for name: &f%s&a. Please wait...", String.class),
|
||||
CANT_GET_SKIN("messages", "&cCould not fetch skin for name: %s.", String.class),
|
||||
GET_SKIN("messages", "&aSkin successfully fetched!", String.class),
|
||||
CONVERSATION_LIST("Conversations", new ArrayList<>(), Conversation.class);
|
||||
CONVERSATION_LIST("conversations" /* Leave this lowercase or it will break */, new ArrayList<>(), Conversation.class);
|
||||
|
||||
public static final Map<String, ImmutableSet<ConfigurationValue>> VALUES_BY_NAME;
|
||||
|
||||
|
|
Loading…
Reference in a new issue