Fix crash involving fireballs

This commit is contained in:
md_5 2020-07-06 08:50:27 +10:00
parent 4309566390
commit 38a66b6560
No known key found for this signature in database
GPG key ID: E8E901AC7C617C11

View file

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