mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-22 00:47:38 +01:00
#696: Respect the NotNull annotation of getChargedProjectiles in CraftMetaCrossbow
This commit is contained in:
parent
1a3363dbe6
commit
cf01fd9d7d
@ -121,7 +121,7 @@ public class CraftMetaCrossbow extends CraftMetaItem implements CrossbowMeta {
|
||||
|
||||
@Override
|
||||
public List<ItemStack> getChargedProjectiles() {
|
||||
return (chargedProjectiles == null) ? null : ImmutableList.copyOf(chargedProjectiles);
|
||||
return (chargedProjectiles == null) ? ImmutableList.of() : ImmutableList.copyOf(chargedProjectiles);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user