Fix crash involving fireballs

Dieser Commit ist enthalten in:
md_5 2020-07-06 08:50:27 +10:00
Ursprung 4309566390
Commit 38a66b6560
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: E8E901AC7C617C11

Datei anzeigen

@ -5,7 +5,7 @@
import javax.annotation.Nullable; import javax.annotation.Nullable;
+// CraftBukkit start +// CraftBukkit start
+import org.bukkit.entity.LivingEntity; +import org.bukkit.projectiles.ProjectileSource;
+// CraftBukkit end +// CraftBukkit end
+ +
public abstract class IProjectile extends Entity { public abstract class IProjectile extends Entity {
@ -15,7 +15,7 @@
this.shooter = entity.getUniqueID(); this.shooter = entity.getUniqueID();
this.c = entity.getId(); this.c = entity.getId();
} }
+ this.projectileSource = entity == null ? null : (LivingEntity) entity.getBukkitEntity(); // CraftBukkit + this.projectileSource = (entity instanceof ProjectileSource) ? (ProjectileSource) entity.getBukkitEntity() : null; // CraftBukkit
} }