fix: Fixes champ spawns using wrong constructor (#1438)
This commit is contained in:
parent
56c40fffbd
commit
3ffe049e08
2 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue