Skip to content

Commit

Permalink
Remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
tr4wzified committed Sep 30, 2020
1 parent fe643d4 commit 2b9f83b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions KnowYourEnemyMutagen/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,8 @@ private static void RunPatch(SynthesisState<ISkyrimMod, ISkyrimModGetter> state)
FormKey dummySilverKey = new FormKey("know_your_enemy.esp", 0x0BBE10);
if (state.LinkCache.TryLookup<IPerkGetter>(silverKey, out var silverPerk))
{
Console.WriteLine("silverPerk resolved");
if (state.LinkCache.TryLookup<IPerkGetter>(dummySilverKey, out var dummySilverPerk))
{
Console.WriteLine("dummySilverPerk resolved");
Perk kyePerk = silverPerk.DeepCopy();
kyePerk.Effects.Clear();
foreach (var aPerkEffectGetter in dummySilverPerk.Effects)
Expand Down Expand Up @@ -265,9 +263,6 @@ private static void RunPatch(SynthesisState<ISkyrimMod, ISkyrimModGetter> state)

var traits = new List<string>();

if (npc.EditorID != null)
Console.WriteLine("Patching NPC " + npc.EditorID);

// If ghost
if (npc.Keywords != null && npc.Keywords.Contains(Skyrim.Keyword.ActorTypeGhost))
{
Expand Down

0 comments on commit 2b9f83b

Please sign in to comment.