Regular arrow spawn method should not have changed type

This commit is contained in:
md_5 2019-05-01 18:14:52 +10:00
parent 327c30812b
commit 3dcbf6b85b

View File

@ -521,7 +521,7 @@ public class CraftWorld implements World {
}
@Override
public AbstractArrow spawnArrow(Location loc, Vector velocity, float speed, float spread) {
public Arrow spawnArrow(Location loc, Vector velocity, float speed, float spread) {
return spawnArrow(loc, velocity, speed, spread, Arrow.class);
}