|
@@ -1,15 +1,19 @@
|
|
|
package com.gmail.nossr50.events.fake;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
+//import java.util.ArrayList;
|
|
|
|
|
|
import org.bukkit.block.Block;
|
|
|
import org.bukkit.entity.Player;
|
|
|
import org.bukkit.event.block.BlockBreakEvent;
|
|
|
-import org.bukkit.inventory.ItemStack;
|
|
|
+//import org.bukkit.inventory.ItemStack;
|
|
|
|
|
|
public class FakeBlockBreakEvent extends BlockBreakEvent {
|
|
|
|
|
|
public FakeBlockBreakEvent(Block theBlock, Player player) {
|
|
|
- super(theBlock, player, new ArrayList<ItemStack>(theBlock.getDrops()));
|
|
|
+ super(theBlock, player);
|
|
|
}
|
|
|
+
|
|
|
+// public FakeBlockBreakEvent(Block theBlock, Player player) {
|
|
|
+// super(theBlock, player, new ArrayList<ItemStack>(theBlock.getDrops()));
|
|
|
+// }
|
|
|
}
|