[Fixed] Block stacking logic.

This commit is contained in:
TeamHR 2024-04-05 03:08:55 +05:30
parent 7a3980555f
commit f6461167b7
2 changed files with 3 additions and 3 deletions

View File

@ -124,7 +124,7 @@ public class BlockListeners implements Listener {
player.getWorld().dropItemNaturally(block.getLocation(), stack.getMaterial().parseItem());
}
}
if (stack.getAmount() == 0) {
if (stack.getAmount() == 1) {
//Remove stack
stack.destroy();
return;

View File

@ -23,7 +23,7 @@ public class BlockStackImpl implements BlockStack {
// The id that identifies this stack in the database.
private int id;
private int amount = 1;
private int amount = 2;
private XMaterial material;
private Location location;
@ -79,7 +79,7 @@ public class BlockStackImpl implements BlockStack {
@Override
public void setAmount(int amount) {
if (amount < 1) {
if (amount == 1) {
destroy();
return;
}