Skip to content

Commit

Permalink
- Actually fix {channelTag} not parsing properly. (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
LlmDl authored Feb 8, 2024
1 parent fbedd4e commit e8166d4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.palmergames.bukkit</groupId>
<artifactId>TownyChat</artifactId>
<packaging>jar</packaging>
<version>0.113</version>
<version>0.114</version>

<licenses>
<license>
Expand Down
4 changes: 3 additions & 1 deletion resources/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -486,4 +486,6 @@ v0.112:
- Fix local channel having default: true, enable upper-case channel names.
v0.113:
- Fix channelTag not parsing properly.
- Closes https://github.com/TownyAdvanced/Towny/issues/7239.
- Closes https://github.com/TownyAdvanced/Towny/issues/7239.
v0.114:
- Actually fix {channelTag} not parsing properly.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class ChannelsSettings {
private static CommentedConfiguration channelConfig, newChannelConfig;
private final static List<String> DEFAULT_CHANNELS = Arrays.asList("general","town","nation","alliance","admin","mod","local");

private static final String CHANNEL_TAG = "channelTag";
private static final String CHANNEL_TAG = "channeltag";
private static final String SPAM_TIME = "spam_time";
private static final String RANGE = "range";
private static final String DEFAULT = "default";
Expand Down

0 comments on commit e8166d4

Please sign in to comment.