mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
Kill fireball if velocity isn't present. Fixes BUKKIT-1228
This commit is contained in:
parent
d5ba6c6644
commit
d836e57871
@ -232,6 +232,8 @@ public class EntityFireball extends Entity {
|
||||
this.dirX = ((NBTTagDouble) nbttaglist1.get(0)).data;
|
||||
this.dirY = ((NBTTagDouble) nbttaglist1.get(1)).data;
|
||||
this.dirZ = ((NBTTagDouble) nbttaglist1.get(2)).data;
|
||||
} else {
|
||||
this.die();
|
||||
}
|
||||
// CraftBukkit end
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user