Skip to content

Commit

Permalink
Fix default placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
zrdzn committed Apr 26, 2022
1 parent d391207 commit e882ba5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public Menu parse(ConfigurationSection section) throws InvalidConfigurationExcep

Entry<String, String> dropSwitch = new AbstractMap.SimpleEntry<>(dropSwitchEnabled, dropSwitchDisabled);

String amountSingular = LovelyDropPlugin.color(section.getString("amount-format.singular", "&e{SWITCH}"));
String amountSingular = LovelyDropPlugin.color(section.getString("amount-format.singular", "&e{AMOUNT}"));
String amountPlural = LovelyDropPlugin.color(section.getString("amount-format.plural", "&e{AMOUNT-MIN}&8-&e{AMOUNT-MAX}"));

Entry<String, String> amountFormat = new AbstractMap.SimpleEntry<>(amountSingular, amountPlural);
Expand Down

0 comments on commit e882ba5

Please sign in to comment.