mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-10-31 17:23:42 +01:00 
			
		
		
		
	Added a null check for attacker in onDamage
This commit is contained in:
		| @@ -48,7 +48,6 @@ public class vMinecraftCommands{ | ||||
|         cl.register("/whois", "whois", "/whois [user]"); | ||||
|         cl.register("/say", "say"); | ||||
|         cl.register("/a", "adminChatToggle", "Toggle admin chat for every message"); | ||||
|         //cl.register("/modify", "modify"); | ||||
|         cl.register("/rules", "rules", "Displays the rules"); | ||||
|         cl.register("/who", "who"); | ||||
|         cl.register("/promote", "promote", "Promote a player one rank"); | ||||
|   | ||||
| @@ -167,7 +167,7 @@ public class vMinecraftListener extends PluginListener { | ||||
|             if(vMinecraftSettings.getInstance().isEzModo(dplayer.getName())){ | ||||
|                 return true; | ||||
|             } | ||||
|             if(attacker.isPlayer()){ | ||||
|             if(attacker != null && attacker.isPlayer()){ | ||||
|                 Player aplayer = attacker.getPlayer(); | ||||
|                 if(vMinecraftUsers.getProfile(dplayer).inParty()){ | ||||
|                     if(vMinecraftParty.inSameParty(aplayer, dplayer)){ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 nossr50
					nossr50