Skip to content

Commit

Permalink
Fix NRE in ModInitializationBatch
Browse files Browse the repository at this point in the history
  • Loading branch information
Popax21 committed Nov 7, 2023
1 parent ee238b5 commit 660de82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Celeste.Mod.mm/Mod/Everest/Everest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ internal class ModInitializationBatch : IDisposable {
public bool IsActive { get; private set; }

private bool shouldReloadMaps = false;
private Queue<EverestModule> lateModuleInitQueue = null;
private Queue<EverestModule> lateModuleInitQueue = new Queue<EverestModule>();

public ModInitializationBatch() {
if (_ModInitBatch != null)
Expand Down

0 comments on commit 660de82

Please sign in to comment.