From 3ffe049e0876de37821f6b28ff4ec36ea6396f3a Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Mon, 31 Jul 2023 13:53:24 -0700 Subject: [PATCH] fix: Fixes champ spawns using wrong constructor (#1438) --- Projects/UOContent/Engines/CannedEvil/DungeonChampionSpawn.cs | 2 +- Projects/UOContent/Engines/CannedEvil/LLChampionSpawn.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Projects/UOContent/Engines/CannedEvil/DungeonChampionSpawn.cs b/Projects/UOContent/Engines/CannedEvil/DungeonChampionSpawn.cs index eeff89c3c..1adbe5097 100644 --- a/Projects/UOContent/Engines/CannedEvil/DungeonChampionSpawn.cs +++ b/Projects/UOContent/Engines/CannedEvil/DungeonChampionSpawn.cs @@ -26,7 +26,7 @@ public partial class DungeonChampionSpawn : ChampionSpawn CannedEvilTimer.AddSpawn(this); } - public DungeonChampionSpawn(Serial serial) + public DungeonChampionSpawn(Serial serial) : base(serial) { CannedEvilTimer.AddSpawn(this); } diff --git a/Projects/UOContent/Engines/CannedEvil/LLChampionSpawn.cs b/Projects/UOContent/Engines/CannedEvil/LLChampionSpawn.cs index 51d7fe462..2d9cdb115 100644 --- a/Projects/UOContent/Engines/CannedEvil/LLChampionSpawn.cs +++ b/Projects/UOContent/Engines/CannedEvil/LLChampionSpawn.cs @@ -28,7 +28,7 @@ public partial class LLChampionSpawn : ChampionSpawn CannedEvilTimer.AddSpawn(this); } - public LLChampionSpawn(Serial serial) + public LLChampionSpawn(Serial serial) : base(serial) { CannedEvilTimer.AddSpawn(this); }