mirror of
https://gitlab.com/phoenix-dvpmt/mmocore.git
synced 2024-11-24 00:15:16 +01:00
API Change: Added setter for CustomBlockMineEvent drops
If issues arise with MMOCore Block Regen Drops @Monzter :D
This commit is contained in:
parent
c5b661e3e2
commit
3014cc0a72
@ -14,7 +14,7 @@ public class CustomBlockMineEvent extends PlayerDataEvent implements Cancellable
|
||||
|
||||
private final Block block;
|
||||
private final BlockInfo info;
|
||||
private final List<ItemStack> drops;
|
||||
private List<ItemStack> drops;
|
||||
|
||||
private boolean cancelled;
|
||||
|
||||
@ -39,6 +39,10 @@ public class CustomBlockMineEvent extends PlayerDataEvent implements Cancellable
|
||||
return info;
|
||||
}
|
||||
|
||||
public void setDrops(List<ItemStack> list) {
|
||||
this.drops = list;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isCancelled() {
|
||||
return cancelled;
|
||||
|
@ -102,6 +102,8 @@ public class BlockListener implements Listener {
|
||||
return;
|
||||
}
|
||||
|
||||
drops = called.getDrops();
|
||||
|
||||
/*
|
||||
* Remove vanilla drops if needed and
|
||||
* decreases the durability of the item
|
||||
|
Loading…
Reference in New Issue
Block a user