diff --git a/src/main/java/us/tastybento/bskyblock/listeners/protection/InventorySave.java b/src/main/java/us/tastybento/bskyblock/listeners/protection/InventorySave.java index a9934a0c2..04b1ad904 100644 --- a/src/main/java/us/tastybento/bskyblock/listeners/protection/InventorySave.java +++ b/src/main/java/us/tastybento/bskyblock/listeners/protection/InventorySave.java @@ -14,13 +14,13 @@ import us.tastybento.bskyblock.BSkyBlock; * */ public class InventorySave { - private static InventorySave instance = new InventorySave(BSkyBlock.getInstance()); + private static InventorySave instance = new InventorySave(); private HashMap inventories; /** * Saves the inventory of a player */ - public InventorySave(BSkyBlock plugin) { + public InventorySave() { inventories = new HashMap<>(); }