Compare commits

...

2 Commits

Author SHA1 Message Date
ceze88 1210047197
Merge pull request #4 from TeamHRLive/development
[Fixed] Block stacking logic.
2024-04-05 13:25:44 +02:00
TeamHR f6461167b7 [Fixed] Block stacking logic. 2024-04-05 03:08:55 +05:30
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;
}