[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()); player.getWorld().dropItemNaturally(block.getLocation(), stack.getMaterial().parseItem());
} }
} }
if (stack.getAmount() == 0) { if (stack.getAmount() == 1) {
//Remove stack //Remove stack
stack.destroy(); stack.destroy();
return; return;

View File

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