Jump to content

Recommended Posts

Posted

Hey,

 

I am working on a method that returns the attacker of an entity. I tried:

 

  
DamageSource source = event.source;
    	    	
if(source != null){
if (((source instanceof EntityDamageSource))){    		
if(source.getEntity() != null){	    		
if(source.getEntity() instanceof EntityPlayerMP){

 EntityPlayerMP attacker = (EntityPlayerMP)source.getEntity();
  	    	      
 System.out.println(attacker.toString() + " is the attacker");
}
}
}
    			  
}

 

These if-functions should prevent the case to go on if there is no attacker but the game crashes as soon as I hit an animal.

Here is the error:

java.lang.NoSuchMethodError: net.minecraft.util.DamageSource.getEntity()Lnet/minecraft/entity/Entity;

at com.blooditor.damagedetection.DamageDetection.onHurt(DamageDetection.java:61)

at cpw.mods.fml.common.eventhandler.ASMEventHandler_0_DamageDetection_onHurt_LivingAttackEvent.invoke(.dynamic)

at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54)

at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:140)

at net.minecraftforge.common.ForgeHooks.onLivingAttack(ForgeHooks.java:292)

at net.minecraft.entity.EntityLivingBase.func_70097_a(EntityLivingBase.java:737)

at net.minecraft.entity.passive.EntityAnimal.func_70097_a(SourceFile:145)

at net.minecraft.entity.player.EntityPlayer.func_71059_n(EntityPlayer.java:1232)

at net.minecraft.client.multiplayer.PlayerControllerMP.func_78764_a(PlayerControllerMP.java:406)

at net.minecraft.client.Minecraft.func_147116_af(Minecraft.java:1393)

at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1948)

at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:973)

at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898)

at net.minecraft.client.main.Main.main(SourceFile:148)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:483)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

 

 

Line 61 is: " if(source.getEntity() != null){"

 

I am using the recommended Forge 1.7.10 version.

 

I hope someone can help.

Posted

You checked if source was an instance of EntityDamageSource, but you didn't cast it.

 

((EntityDamageSource)source).getEntity()

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

You checked if source was an instance of EntityDamageSource, but you didn't cast it.

 

((EntityDamageSource)source).getEntity()

 

Thanks, seems helpful but I tried it and it crashes with the same error when casting it.

 

  
if(source != null){
if (((source instanceof EntityDamageSource))){
Entity sourceentity = ((EntityDamageSource)source).getEntity();

 

Where is the problem?

Its also pretty weird because I as a player am an entity and a player, so there should be no error  :o

Posted

Side note: The

instanceof

operator already returns

false

if the object is

null

, there's no need to check for

null

before using the operator.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

If you are running your mod outside the development environment (which you are) you must build it using

gradle build

, otherwise it will not be reobfuscated and not work.

 

Thank you sooo much, I'm new to Forge Modding ;)

Spent so much time with that, so dumb^^

 

Liebe Grüße Kollege :P

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.