SPIGOT-1523: Crash when flying Elytra into wall.

This commit is contained in:
md_5 2016-03-01 11:27:13 +11:00
parent f5d92d6b12
commit ea28c1e478

View File

@ -465,7 +465,7 @@ public class CraftEventFactory {
DamageCause cause = null;
Block damager = blockDamage;
blockDamage = null;
if (source == DamageSource.CACTUS) {
if (source == DamageSource.CACTUS || source == DamageSource.j) { // PAIL: rename
cause = DamageCause.CONTACT;
} else {
throw new AssertionError(String.format("Unhandled damage of %s by %s from %s", entity, damager, source.translationIndex));