diff --git a/docs/README.md b/docs/README.md index 987f67c..e21dd49 100644 --- a/docs/README.md +++ b/docs/README.md @@ -2,3 +2,4 @@ Names for Valheim Mods [![NuGet Release](https://github.com/Digitalroot-Valheim/Digitalroot.Valheim.Common.Names/actions/workflows/nuget.release.yml/badge.svg)](https://github.com/Digitalroot-Valheim/Digitalroot.Valheim.Common.Names/actions/workflows/nuget.release.yml) + diff --git a/src/Digitalroot.Valheim.Common.Names.sln.DotSettings b/src/Digitalroot.Valheim.Common.Names.sln.DotSettings index 06505b4..f750084 100644 --- a/src/Digitalroot.Valheim.Common.Names.sln.DotSettings +++ b/src/Digitalroot.Valheim.Common.Names.sln.DotSettings @@ -16,4 +16,5 @@ True True True - True \ No newline at end of file + True + diff --git a/src/Digitalroot.Valheim.Common.Names/MonsternomiconMod/EnemyNames.cs b/src/Digitalroot.Valheim.Common.Names/MonsternomiconMod/EnemyNames.cs index a82170c..a1893bb 100644 --- a/src/Digitalroot.Valheim.Common.Names/MonsternomiconMod/EnemyNames.cs +++ b/src/Digitalroot.Valheim.Common.Names/MonsternomiconMod/EnemyNames.cs @@ -28,8 +28,8 @@ public static partial class EnemyNames public static readonly string SilverGolem = PrefabNames.SilverGolem; public static readonly string SmallAshNeck = PrefabNames.SmallAshNeck; public static readonly string SmallDarkSpider = PrefabNames.SmallDarkSpider; - public static readonly string SmallPolarSerpent = PrefabNames.SmallPolarSerpent; - public static readonly string SmallPolarLox = PrefabNames.SmallPolarLox; + public static readonly string PolarSerpentSmall = PrefabNames.PolarSerpentSmall; + public static readonly string PolarLoxSmall = PrefabNames.PolarLoxSmall; public static readonly string StormHatchling = PrefabNames.StormHatchling; public static readonly string SwollenBody = PrefabNames.SwollenBody; public static readonly string StormWolf = PrefabNames.StormWolf; @@ -52,7 +52,7 @@ public static IEnumerable AllNamesByBiome(Heightmap.Biome biome) case Heightmap.Biome.Ocean: yield return DrownedSoul; yield return StormHatchling; - yield return SmallPolarSerpent; + yield return PolarSerpentSmall; break; case Heightmap.Biome.Mistlands: @@ -88,7 +88,7 @@ public static IEnumerable AllNamesByBiome(Heightmap.Biome biome) yield return PolarFenring; yield return PolarLox; yield return SilverGolem; - yield return SmallPolarLox; + yield return PolarLoxSmall; break; } } diff --git a/src/Digitalroot.Valheim.Common.Names/MonsternomiconMod/PrefabNames.cs b/src/Digitalroot.Valheim.Common.Names/MonsternomiconMod/PrefabNames.cs index 6308a18..9dcb46b 100644 --- a/src/Digitalroot.Valheim.Common.Names/MonsternomiconMod/PrefabNames.cs +++ b/src/Digitalroot.Valheim.Common.Names/MonsternomiconMod/PrefabNames.cs @@ -36,8 +36,8 @@ public static partial class PrefabNames public static readonly string PolarFenring = $"{PrefixM}{nameof(PolarFenring)}"; public static readonly string PolarLox = $"{PrefixM}{nameof(PolarLox)}"; public static readonly string SilverGolem = $"{PrefixM}{nameof(SilverGolem)}"; - public static readonly string SmallPolarLox = $"{PrefixM}{nameof(SmallPolarLox)}"; - public static readonly string SmallPolarSerpent = $"{PrefixM}{nameof(SmallPolarSerpent)}"; + public static readonly string PolarLoxSmall = $"{PrefixM}{nameof(PolarLoxSmall)}"; + public static readonly string PolarSerpentSmall = $"{PrefixM}{nameof(PolarSerpentSmall)}"; // Mistlands public static readonly string DarkMosquito = $"{PrefixM}{nameof(DarkMosquito)}";