Missed one.

This commit is contained in:
GJ 2013-01-16 23:36:00 -05:00
parent ea7fee2a53
commit 07211611a6

View File

@ -182,7 +182,6 @@ public class PlayerListener implements Listener {
if (player.hasMetadata("NPC")) return; // Check if this player is a Citizens NPC if (player.hasMetadata("NPC")) return; // Check if this player is a Citizens NPC
//TODO: Locale ALL the things.
if (Config.getInstance().getMOTDEnabled() && Permissions.motd(player)) { if (Config.getInstance().getMOTDEnabled() && Permissions.motd(player)) {
String perkPrefix = LocaleLoader.getString("MOTD.PerksPrefix"); String perkPrefix = LocaleLoader.getString("MOTD.PerksPrefix");
@ -403,7 +402,7 @@ public class PlayerListener implements Listener {
Party party = profile.getParty(); Party party = profile.getParty();
if (party == null) { if (party == null) {
player.sendMessage("You're not in a party, type /p to leave party chat mode."); //TODO: Use mcLocale player.sendMessage(LocaleLoader.getString("Commands.Party.None"));
return; return;
} }