mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-11 10:12:06 -07:00
Update for Minecraft 1.8
This commit is contained in:
@@ -90,12 +90,12 @@ public class BlockCactus extends Block {
|
||||
world.getServer().getPluginManager().callEvent(event);
|
||||
|
||||
if (!event.isCancelled()) {
|
||||
entity.damageEntity((Entity) null, event.getDamage());
|
||||
entity.damageEntity(DamageSource.g, event.getDamage());
|
||||
}
|
||||
return;
|
||||
}
|
||||
// CraftBukkit end
|
||||
|
||||
entity.damageEntity((Entity) null, 1);
|
||||
entity.damageEntity(DamageSource.g, 1);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user