mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-10-31 01:03:44 +01:00 
			
		
		
		
	Added locale strings for chatspy and moved some more party messages to action bar
This commit is contained in:
		| @@ -7,8 +7,10 @@ import java.util.List; | |||||||
| import java.util.UUID; | import java.util.UUID; | ||||||
|  |  | ||||||
| import com.gmail.nossr50.config.Config; | import com.gmail.nossr50.config.Config; | ||||||
|  | import com.gmail.nossr50.datatypes.interactions.NotificationType; | ||||||
| import com.gmail.nossr50.locale.LocaleLoader; | import com.gmail.nossr50.locale.LocaleLoader; | ||||||
| import com.gmail.nossr50.util.Permissions; | import com.gmail.nossr50.util.Permissions; | ||||||
|  | import com.gmail.nossr50.util.player.NotificationManager; | ||||||
| import org.bukkit.OfflinePlayer; | import org.bukkit.OfflinePlayer; | ||||||
| import org.bukkit.entity.Player; | import org.bukkit.entity.Player; | ||||||
|  |  | ||||||
| @@ -91,7 +93,7 @@ public final class PartyAPI { | |||||||
|         } else { |         } else { | ||||||
|             if(PartyManager.isPartyFull(player, party)) |             if(PartyManager.isPartyFull(player, party)) | ||||||
|             { |             { | ||||||
|                 player.sendMessage(LocaleLoader.getString("Commands.Party.PartyFull", party.toString())); |                 NotificationManager.sendPlayerInformation(player, NotificationType.PARTY_MESSAGE, "Commands.Party.PartyFull", party.toString()); | ||||||
|                 return; |                 return; | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|   | |||||||
| @@ -60,9 +60,9 @@ public abstract class ChatManager { | |||||||
|                     { |                     { | ||||||
|                         //TODO: Incorporate JSON |                         //TODO: Incorporate JSON | ||||||
|                         if(!adminParty.getName().equalsIgnoreCase(partyChatEvent.getParty())) |                         if(!adminParty.getName().equalsIgnoreCase(partyChatEvent.getParty())) | ||||||
|                             player.sendMessage(ChatColor.GOLD+"[SPY: "+ChatColor.GREEN+partyChatEvent.getParty()+ChatColor.GOLD+"] "+message); |                             player.sendMessage(LocaleLoader.getString("Commands.AdminChatSpy.Chat", partyChatEvent.getParty(), message)); | ||||||
|                     } else { |                     } else { | ||||||
|                         player.sendMessage(ChatColor.GOLD+"[SPY: "+ChatColor.GREEN+partyChatEvent.getParty()+ChatColor.GOLD+"] "+message); |                         player.sendMessage(LocaleLoader.getString("Commands.AdminChatSpy.Chat", partyChatEvent.getParty(), message)); | ||||||
|                     } |                     } | ||||||
|                 } |                 } | ||||||
|             } |             } | ||||||
|   | |||||||
| @@ -498,6 +498,7 @@ Commands.GodMode.Enabled=[[YELLOW]]mcMMO Godmode Enabled | |||||||
| Commands.AdminChatSpy.Enabled=[[YELLOW]]mcMMO Party Chat Spy Enabled | Commands.AdminChatSpy.Enabled=[[YELLOW]]mcMMO Party Chat Spy Enabled | ||||||
| Commands.AdminChatSpy.Disabled=[[YELLOW]]mcMMO Party Chat Spy Disabled | Commands.AdminChatSpy.Disabled=[[YELLOW]]mcMMO Party Chat Spy Disabled | ||||||
| Commands.AdminChatSpy.Toggle=[[YELLOW]]mcMMO Party Chat has been toggled for [[YELLOW]]{0} | Commands.AdminChatSpy.Toggle=[[YELLOW]]mcMMO Party Chat has been toggled for [[YELLOW]]{0} | ||||||
|  | Commands.AdminChatSpy.Chat=[[GOLD]][SPY: [[GREEN]]{0}[[GOLD]]] [[WHITE]]{1} | ||||||
| Commands.GodMode.Forbidden=[mcMMO] God Mode not permitted on this world (See Permissions) | Commands.GodMode.Forbidden=[mcMMO] God Mode not permitted on this world (See Permissions) | ||||||
| Commands.GodMode.Toggle=God mode has been toggled for [[YELLOW]]{0} | Commands.GodMode.Toggle=God mode has been toggled for [[YELLOW]]{0} | ||||||
| Commands.Healthbars.Changed.HEARTS=[mcMMO] Your healthbar display type was changed to [[RED]]Hearts[[WHITE]]. | Commands.Healthbars.Changed.HEARTS=[mcMMO] Your healthbar display type was changed to [[RED]]Hearts[[WHITE]]. | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 nossr50
					nossr50