Skip to content

Commit

Permalink
fix the config bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrbu committed Apr 20, 2023
1 parent 43d617f commit 881ed85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
}

group "lol.pyr"
version "1.0.1"
version "1.0.2"

compileJava {
options.release.set(17)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 881ed85

Please sign in to comment.