mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 07:20:24 +01:00
Optimize Hoppers
This commit is contained in:
parent
0347d9b819
commit
f229e2c798
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ public class InventoryMoveItemEvent extends Event implements Cancellable {
|
|||
*/
|
||||
@NotNull
|
||||
public ItemStack getItem() {
|
||||
return itemStack.clone();
|
||||
return itemStack; // Paper - Removed clone, handled better in Server
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue