Skip to content

Instantly share code, notes, and snippets.

@DarkSeraphim
Created August 21, 2014 01:02
Show Gist options
  • Save DarkSeraphim/c43e272c0bba828e84a9 to your computer and use it in GitHub Desktop.
Save DarkSeraphim/c43e272c0bba828e84a9 to your computer and use it in GitHub Desktop.
Sample fix
...
public boolean damageEntity(DamageSource damagesource, float f) {
boolean flag = super.damageEntity(damagesource, f);
if(damagesource.isExplosion() && damagesource.getEntity() == CraftEventFactory.entityDamage) {
return true;
}
return flag;
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment