3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 13:00:06 +01:00

SPIGOT-1523: Crash when flying Elytra into wall.

Dieser Commit ist enthalten in:
md_5 2016-03-01 11:27:13 +11:00
Ursprung f5d92d6b12
Commit ea28c1e478

Datei anzeigen

@ -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));