Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
AxeBane authored Mar 31, 2022
1 parent c580c0e commit e59c407
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Common/Races/Kitsune/Kitsune.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ public class Kitsune : Race

// Debugging log function.
private void Log(object message)
{
{
if (DEBUG)
{
#pragma warning disable CS0162 // Unreachable code detected
ShaggyAddonRaces.Logger.Debug(message);
#pragma warning restore CS0162 // Unreachable code detected
}
}
}

private void Init(Player player)
{
Expand Down Expand Up @@ -218,7 +218,7 @@ public override void ModifyDrawLayers(Player player, List<PlayerLayer> layers)

modPlayer = player.GetModPlayer<MrPlagueRaces.MrPlagueRacesPlayer>();
if (texture_Color == null || texture_Tail == null)
{
{
ShaggyAddonRaces.Logger.Info("Tails are null... Acquiring.");
texture_Tail = ShaggyAddonRaces.GetTexture("Content/RaceTextures/Kitsune/Tail/Kitsune_Tail" + tailCount);
texture_Color = ShaggyAddonRaces.GetTexture("Content/RaceTextures/Kitsune/Tail/Kitsune_Tail" + tailCount + "_Color");
Expand Down Expand Up @@ -356,4 +356,4 @@ public override void ModifyDrawLayers(Player player, List<PlayerLayer> layers)
}
});
}
}
}

0 comments on commit e59c407

Please sign in to comment.