Skip to content

Commit

Permalink
Fixed bed broken message
Browse files Browse the repository at this point in the history
  • Loading branch information
Devlrxxh committed Apr 4, 2024
1 parent 4fddb1a commit 2566fec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/me/lrxh/practice/match/MatchListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public void onBlockBreakEvent(BlockBreakEvent event) {
}

match.broadcast(Locale.MATCH_BED_BROKEN.format(player, aTeam ? CC.translate("&9Blue") : CC.translate("&cRed"),
aTeam ? CC.translate("&9" + player.getName()) : CC.translate("&c" + player.getName())));
aTeam ? CC.translate("&c" + player.getName()) : CC.translate("&9" + player.getName())));
}

if (match.getKit().getGameRules().isBuild() && match.getState() == MatchState.PLAYING_ROUND) {
Expand Down

0 comments on commit 2566fec

Please sign in to comment.