Skip to content

Commit

Permalink
Merge pull request #40 from TownyAdvanced/fix/ch_mutelist_feedback
Browse files Browse the repository at this point in the history
Fix incorrect lang string called in /ch mutelist {channelname}
  • Loading branch information
LlmDl authored Dec 22, 2022
2 parents 0af209c + 792a392 commit 411b131
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion resources/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -431,4 +431,5 @@ v0.99:
- This new system should be able to let TownyChat format your chat properly when this occurs.
- Update min. Towny version to 0.98.4.0.
v0.100:
- Use internal Essentials object instead of the one found in Towny.
- Use internal Essentials object instead of the one found in Towny.
- Fix incorrect lang string called in /ch mutelist {channelname}
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public static void parseChannelMuteList(Player player, String[] split) {
return;
}

TownyMessaging.sendMessage(player, Translatable.of("tc_players_muted_in_channel_players", count, chan.getName(), players));
TownyMessaging.sendMessage(player, Translatable.of("tc_players_muted_in_channel", count, chan.getName(), players));
}

public static void parseChannelMute(Player player, String[] split, boolean mute) {
Expand Down

0 comments on commit 411b131

Please sign in to comment.