mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Fixed ghost item drops when hitting an entity. Closes #513
This commit is contained in:
parent
1920233090
commit
5d8f9e37b4
1 changed files with 4 additions and 4 deletions
|
@ -167,11 +167,11 @@ public class PhysicsBodyProjectileEntity extends PersistentProjectileEntity impl
|
||||||
stack.damage(1 + random.nextInt(10), sw, null, i -> {
|
stack.damage(1 + random.nextInt(10), sw, null, i -> {
|
||||||
playSound(USounds.Vanilla.ENTITY_ITEM_BREAK, 1, 1);
|
playSound(USounds.Vanilla.ENTITY_ITEM_BREAK, 1, 1);
|
||||||
});
|
});
|
||||||
}
|
|
||||||
if (!stack.isEmpty()) {
|
if (!stack.isEmpty()) {
|
||||||
dropStack(stack);
|
dropStack(stack);
|
||||||
}
|
}
|
||||||
setStack(ItemStack.EMPTY);
|
discard();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
super.onEntityHit(hit);
|
super.onEntityHit(hit);
|
||||||
|
|
Loading…
Reference in a new issue