Skip to content

Commit

Permalink
forgot to initialize the list (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
sh0inx committed Jan 2, 2025
1 parent e2a6717 commit d5eec9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public class IridiumSkyblock extends IridiumTeams<Island, User> {
private ChunkGenerator chunkGenerator;
@Getter
private int mcVersion;
private List<IridiumChunkGenerator> iridiumChunkGenerators;
private List<IridiumChunkGenerator> iridiumChunkGenerators = new ArrayList<>();
private final HashMap<World.Environment, List<BlockPopulator>> blockPopulatorList = new HashMap<>();

public IridiumSkyblock(JavaPluginLoader loader, PluginDescriptionFile description, File dataFolder, File file) {
Expand Down

0 comments on commit d5eec9a

Please sign in to comment.