Skip to content

Commit

Permalink
Fix: Translation error
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel8579 committed Feb 26, 2018
1 parent 95bf41d commit f6ff48f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/me/WitherPunishment/inventories/MainPunish.java
Original file line number Diff line number Diff line change
Expand Up @@ -1568,7 +1568,7 @@ public static void punish(Player punisher, String punished, boolean inact, Strin
}
for(Player ss : Bukkit.getOnlinePlayers()) {
if(Main.english) {
ss.sendMessage(ChatColor.BLUE + "Punishment> " + ChatColor.RED + punished + " " + ChatColor.GRAY + "have been punished for " + ChatColor.RED + getName(sigl) + " " + ChatColor.DARK_RED + "(" + getMsg(tipo, sev) + ")" + ChatColor.GRAY + ".");
ss.sendMessage(ChatColor.BLUE + "Punishment> " + ChatColor.RED + punished + " " + ChatColor.GRAY + "was punished for " + ChatColor.RED + getName(sigl) + " " + ChatColor.DARK_RED + "(" + getMsg(tipo, sev) + ")" + ChatColor.GRAY + ".");
return;
}
ss.sendMessage(ChatColor.BLUE + "Punição> " + ChatColor.RED + punished + " " + ChatColor.GRAY + "foi punido(a) por " + ChatColor.RED + getName(sigl) + " " + ChatColor.DARK_RED + "(" + getMsg(tipo, sev) + ")" + ChatColor.GRAY + ".");
Expand Down Expand Up @@ -1830,7 +1830,7 @@ public static void punish(Player punisher, String punished, boolean inact, Strin
}
for(Player ss : Bukkit.getOnlinePlayers()) {
if(Main.english) {
ss.sendMessage(ChatColor.BLUE + "Punishment> " + ChatColor.RED + punished + " " + ChatColor.GRAY + "have been punished for " + ChatColor.RED + getName(sigl) + " " + ChatColor.DARK_RED + "(" + getMsg(tipo, sev) + ")" + ChatColor.GRAY + ".");
ss.sendMessage(ChatColor.BLUE + "Punishment> " + ChatColor.RED + punished + " " + ChatColor.GRAY + "was punished for " + ChatColor.RED + getName(sigl) + " " + ChatColor.DARK_RED + "(" + getMsg(tipo, sev) + ")" + ChatColor.GRAY + ".");
} else {
ss.sendMessage(ChatColor.BLUE + "Punição> " + ChatColor.RED + punished + " " + ChatColor.GRAY + "foi punido(a) por " + ChatColor.RED + getName(sigl) + " " + ChatColor.DARK_RED + "(" + getMsg(tipo, sev) + ")" + ChatColor.GRAY + ".");
}
Expand Down

0 comments on commit f6ff48f

Please sign in to comment.