Skip to content

Commit

Permalink
Solve small error in Plugin logs
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoKaios committed Jun 26, 2022
1 parent 39ee973 commit feb9850
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/DebugUtilityPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ public class DebugUtilityPlugin : BaseUnityPlugin
public static ConfigEntry<bool> hasInfiniteReroll;
public static ConfigEntry<bool> hasGunPatch;
public static ConfigEntry<bool> hasWeakBossesAndElites;


//public static ConfigEntry<bool> hasUnlocks;
//public static ConfigEntry<bool> hasSoulUnlock;



public void Awake()
Expand Down Expand Up @@ -118,7 +118,7 @@ public void Awake()
{
Harmony.CreateAndPatchAll(typeof(EnemyPatch));
}
Logger.LogInfo((hasInvincibility.Value ? "<Active>" : "<Inactive>") + " Weak Bosses & Elites");
Logger.LogInfo((hasWeakBossesAndElites.Value ? "<Active>" : "<Inactive>") + " Weak Bosses & Elites");
}
catch
{
Expand Down

0 comments on commit feb9850

Please sign in to comment.