Skip to content

Commit

Permalink
Update BlockStorage.java
Browse files Browse the repository at this point in the history
  • Loading branch information
mcchampions committed Nov 3, 2024
1 parent 9d543c1 commit 75f392f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ public class BlockStorage {
private static final Config emptyData = new EmptyBlockData();

public static BlockStorage getStorage(World world) {
return null;
return new BlockStorage();
}

public static BlockStorage getOrCreate(World world) {
return new BlockStorage();
}

public static void store(Block block, ItemStack item) {
Expand Down

0 comments on commit 75f392f

Please sign in to comment.