Skip to content

Commit

Permalink
fix: Fixes champ spawns using wrong constructor (#1438)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamronbatman authored Jul 31, 2023
1 parent 56c40ff commit 3ffe049
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public DungeonChampionSpawn()
CannedEvilTimer.AddSpawn(this);
}

public DungeonChampionSpawn(Serial serial)
public DungeonChampionSpawn(Serial serial) : base(serial)
{
CannedEvilTimer.AddSpawn(this);
}
Expand Down
2 changes: 1 addition & 1 deletion Projects/UOContent/Engines/CannedEvil/LLChampionSpawn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public LLChampionSpawn()
CannedEvilTimer.AddSpawn(this);
}

public LLChampionSpawn(Serial serial)
public LLChampionSpawn(Serial serial) : base(serial)
{
CannedEvilTimer.AddSpawn(this);
}
Expand Down

0 comments on commit 3ffe049

Please sign in to comment.