SPIGOT-4823: Crash picking up arrows

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2019-05-01 06:48:56 +10:00
parent abedca6a94
commit 1596138194
2 changed files with 1 additions and 7 deletions

View File

@@ -235,12 +235,6 @@ public class Commodore
super.visitMethodInsn( opcode, owner, name, "(I)Lorg/bukkit/map/MapView;", itf );
return;
}
if ( owner.equals( "org/bukkit/World" ) && name.equals( "spawnArrow" ) )
{
// Should be same size on stack so just call other method
super.visitMethodInsn( opcode, owner, name, desc.replace( "Lorg/bukkit/entity/Arrow;", "Lorg/bukkit/entity/AbstractArrow;" ), itf );
return;
}
if ( modern )
{