mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-19 05:31:32 +01:00
SPIGOT-1956: Don't deplete projectile item when event cancelled
By: md_5 <git@md-5.net>
This commit is contained in:
parent
36f29a30b6
commit
865281201b
2 changed files with 40 additions and 2 deletions
|
@ -30,13 +30,18 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
itemstack.damage(1, entityhuman);
|
itemstack.damage(1, entityhuman);
|
||||||
@@ -81,7 +96,10 @@
|
@@ -81,7 +96,15 @@
|
||||||
entityarrow.fromPlayer = EntityArrow.PickupStatus.CREATIVE_ONLY;
|
entityarrow.fromPlayer = EntityArrow.PickupStatus.CREATIVE_ONLY;
|
||||||
}
|
}
|
||||||
|
|
||||||
- world.addEntity(entityarrow);
|
- world.addEntity(entityarrow);
|
||||||
+ if (event.getProjectile() == entityarrow.getBukkitEntity()) {
|
+ if (event.getProjectile() == entityarrow.getBukkitEntity()) {
|
||||||
+ world.addEntity(entityarrow);
|
+ if (!world.addEntity(entityarrow)) {
|
||||||
|
+ if (entityhuman instanceof EntityPlayer) {
|
||||||
|
+ ((EntityPlayer) entityhuman).getBukkitEntity().updateInventory();
|
||||||
|
+ }
|
||||||
|
+ return;
|
||||||
|
+ }
|
||||||
+ }
|
+ }
|
||||||
+ // CraftBukkit end
|
+ // CraftBukkit end
|
||||||
}
|
}
|
||||||
|
|
33
paper-server/nms-patches/ItemSnowball.patch
Normal file
33
paper-server/nms-patches/ItemSnowball.patch
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
--- a/net/minecraft/server/ItemSnowball.java
|
||||||
|
+++ b/net/minecraft/server/ItemSnowball.java
|
||||||
|
@@ -8,17 +8,27 @@
|
||||||
|
}
|
||||||
|
|
||||||
|
public InteractionResultWrapper<ItemStack> a(ItemStack itemstack, World world, EntityHuman entityhuman, EnumHand enumhand) {
|
||||||
|
- if (!entityhuman.abilities.canInstantlyBuild) {
|
||||||
|
+ // CraftBukkit start - moved down
|
||||||
|
+ /*if (!entityhuman.abilities.canInstantlyBuild) {
|
||||||
|
--itemstack.count;
|
||||||
|
}
|
||||||
|
|
||||||
|
- world.a((EntityHuman) null, entityhuman.locX, entityhuman.locY, entityhuman.locZ, SoundEffects.fG, SoundCategory.NEUTRAL, 0.5F, 0.4F / (ItemSnowball.i.nextFloat() * 0.4F + 0.8F));
|
||||||
|
+ world.a((EntityHuman) null, entityhuman.locX, entityhuman.locY, entityhuman.locZ, SoundEffects.fG, SoundCategory.NEUTRAL, 0.5F, 0.4F / (ItemSnowball.i.nextFloat() * 0.4F + 0.8F));*/
|
||||||
|
if (!world.isClientSide) {
|
||||||
|
EntitySnowball entitysnowball = new EntitySnowball(world, entityhuman);
|
||||||
|
|
||||||
|
entitysnowball.a(entityhuman, entityhuman.pitch, entityhuman.yaw, 0.0F, 1.5F, 1.0F);
|
||||||
|
- world.addEntity(entitysnowball);
|
||||||
|
+ if (world.addEntity(entitysnowball)) {
|
||||||
|
+ if (!entityhuman.abilities.canInstantlyBuild) {
|
||||||
|
+ --itemstack.count;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ world.a((EntityHuman) null, entityhuman.locX, entityhuman.locY, entityhuman.locZ, SoundEffects.fG, SoundCategory.NEUTRAL, 0.5F, 0.4F / (ItemSnowball.i.nextFloat() * 0.4F + 0.8F));
|
||||||
|
+ } else if (entityhuman instanceof EntityPlayer) {
|
||||||
|
+ ((EntityPlayer) entityhuman).getBukkitEntity().updateInventory();
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
+ // CraftBukkit end
|
||||||
|
|
||||||
|
entityhuman.b(StatisticList.b((Item) this));
|
||||||
|
return new InteractionResultWrapper(EnumInteractionResult.SUCCESS, itemstack);
|
Loading…
Add table
Reference in a new issue