mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-28 13:36:16 +01:00
Fixed Creative not having infinite items.
This commit is contained in:
parent
53b32f43cc
commit
3c5632de31
@ -266,7 +266,16 @@ public class ItemInWorldManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (itemstack != null && !result) {
|
if (itemstack != null && !result) {
|
||||||
|
int j1 = itemstack.getData();
|
||||||
|
int k1 = itemstack.count;
|
||||||
|
|
||||||
result = itemstack.placeItem(entityhuman, world, i, j, k, l);
|
result = itemstack.placeItem(entityhuman, world, i, j, k, l);
|
||||||
|
|
||||||
|
// The item count should not decrement in Creative mode.
|
||||||
|
if (this.b()) {
|
||||||
|
itemstack.b(j1);
|
||||||
|
itemstack.count = k1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// If we have 'true' and no explicit deny *or* an explicit allow -- run the item part of the hook
|
// If we have 'true' and no explicit deny *or* an explicit allow -- run the item part of the hook
|
||||||
|
Loading…
Reference in New Issue
Block a user