Skip to content

Commit

Permalink
Fix whitespace in Celeste.Mod.mm/Mod/Everest/Everest.Loader.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
0x0ade authored Nov 1, 2021
1 parent 1a00c6c commit b70e70f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Celeste.Mod.mm/Mod/Everest/Everest.Loader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ public static void LoadModAssembly(EverestModuleMetadata meta, Assembly asm) {

if (typeof(EverestModule).IsAssignableFrom(type) && !type.IsAbstract) {
foundModule = true;
if(!typeof(NullModule).IsAssignableFrom(type)) {
if (!typeof(NullModule).IsAssignableFrom(type)) {
EverestModule mod = (EverestModule) type.GetConstructor(_EmptyTypeArray).Invoke(_EmptyObjectArray);
mod.Metadata = meta;
mod.Register();
Expand Down

0 comments on commit b70e70f

Please sign in to comment.