Skip to content

Commit

Permalink
remove Harmony debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
egocarib committed May 28, 2023
1 parent 8f07cf7 commit d593728
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
Binary file modified mods/immersivecorpsedrop/immersivecorpsedrop.dll
Binary file not shown.
Binary file modified mods/immersivecorpsedrop/immersivecorpsedrop.pdb
Binary file not shown.
10 changes: 2 additions & 8 deletions mods/immersivecorpsedrop/src/ImmersiveCorpseDropMod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ public override void StartClientSide(ICoreClientAPI api)
{
base.StartClientSide(api);

#if DEBUG
Harmony.DEBUG = true;
#endif

//Harmony.DEBUG = true;
Harmony harmony = new Harmony("egocarib:ImmersiveCorpseDropMod");
harmony.PatchAll(Assembly.GetExecutingAssembly());
}
Expand All @@ -26,10 +23,7 @@ public override void StartServerSide(ICoreServerAPI api)
{
base.StartServerSide(api);

#if DEBUG
Harmony.DEBUG = true;
#endif

//Harmony.DEBUG = true;
Harmony harmony = new Harmony("egocarib:ImmersiveCorpseDropMod");
harmony.PatchAll(Assembly.GetExecutingAssembly());
}
Expand Down

0 comments on commit d593728

Please sign in to comment.