Skip to content

Commit

Permalink
Fix multiblock-related NPE
Browse files Browse the repository at this point in the history
  • Loading branch information
esotericenderman committed Aug 13, 2024
1 parent 45bccb5 commit 5e8baab
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package net.slqmy.template_paper_plugin.custom_multiblock;

import java.util.ArrayList;
import java.util.List;

public class StoredCustomMultiblocks {
private List<StoredCustomMultiblock> storedCustomMultiblocks;
private List<StoredCustomMultiblock> storedCustomMultiblocks = new ArrayList<>();

public List<StoredCustomMultiblock> getStoredCustomMultiblocks() {
return storedCustomMultiblocks;
Expand Down

0 comments on commit 5e8baab

Please sign in to comment.