19972e09b8
5a0150f586ed3eb15fe6f1f596d1a5a7d806f0f9 Fix ITEM_BREAK e6a3911057bd94d8bd7021cbb4923fb84fb106d1 Upstream merge d1cdcf8d4c3639f956474f02ed662517cffbe23e Remove old patch 068df64aeee368377e1673667bffc7a6dcf90554 Rebuild all patches
50 lines
3.1 KiB
Diff
50 lines
3.1 KiB
Diff
From f436dce04a87722898533c5fe78cefcd00e3bad4 Mon Sep 17 00:00:00 2001
|
|
From: Thinkofdeath <thinkofdeath@spigotmc.org>
|
|
Date: Thu, 26 Jun 2014 23:42:52 +0100
|
|
Subject: [PATCH] Add damager to the unhandled error
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
|
index 982e45c..2f3ff86 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
|
@@ -184,7 +184,7 @@ public class CraftEventFactory {
|
|
*/
|
|
public static PlayerInteractEvent callPlayerInteractEvent(EntityHuman who, Action action, ItemStack itemstack) {
|
|
if (action != Action.LEFT_CLICK_AIR && action != Action.RIGHT_CLICK_AIR) {
|
|
- throw new AssertionError(String.format("%s performing %s with %s", who, action, itemstack));
|
|
+ throw new IllegalArgumentException(String.format("%s performing %s with %s", who, action, itemstack)); // Spigot
|
|
}
|
|
return callPlayerInteractEvent(who, action, new BlockPosition(0, 256, 0), EnumDirection.SOUTH, itemstack);
|
|
}
|
|
@@ -468,7 +468,7 @@ public class CraftEventFactory {
|
|
if (source == DamageSource.CACTUS) {
|
|
cause = DamageCause.CONTACT;
|
|
} else {
|
|
- throw new AssertionError(String.format("Unhandled damage of %s by %s from %s", entity, damager, source.translationIndex));
|
|
+ throw new RuntimeException(String.format("Unhandled damage of %s by %s from %s", entity, damager, source.translationIndex)); // Spigot
|
|
}
|
|
EntityDamageEvent event = callEvent(new EntityDamageByBlockEvent(damager, entity.getBukkitEntity(), cause, modifiers, modifierFunctions));
|
|
if (!event.isCancelled()) {
|
|
@@ -486,7 +486,7 @@ public class CraftEventFactory {
|
|
} else if (source == DamageSource.FALL) {
|
|
cause = DamageCause.FALL;
|
|
} else {
|
|
- throw new AssertionError(String.format("Unhandled damage of %s by %s from %s", entity, damager.getHandle(), source.translationIndex));
|
|
+ throw new RuntimeException(String.format("Unhandled damage of %s by %s from %s", entity, damager.getHandle(), source.translationIndex)); // Spigot
|
|
}
|
|
EntityDamageEvent event = callEvent(new EntityDamageByEntityEvent(damager, entity.getBukkitEntity(), cause, modifiers, modifierFunctions));
|
|
if (!event.isCancelled()) {
|
|
@@ -524,7 +524,7 @@ public class CraftEventFactory {
|
|
return callEntityDamageEvent(null, entity, cause, modifiers, modifierFunctions);
|
|
}
|
|
|
|
- throw new AssertionError(String.format("Unhandled damage of %s from %s", entity, source.translationIndex));
|
|
+ throw new RuntimeException(String.format("Unhandled damage of %s from %s", entity, source.translationIndex)); // Spigot
|
|
}
|
|
|
|
private static EntityDamageEvent callEntityDamageEvent(Entity damager, Entity damagee, DamageCause cause, Map<DamageModifier, Double> modifiers, Map<DamageModifier, Function<? super Double, Double>> modifierFunctions) {
|
|
--
|
|
2.1.0
|
|
|