Deal with Creatures being deleted before a battle they're part of.
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
This commit is contained in:
2021-08-28 19:05:52 +02:00
parent d89e0b0d77
commit 512a39e158
5 changed files with 23 additions and 3 deletions

View File

@@ -54,7 +54,7 @@ void BattleSide::SetCreature(ArbUt::OptionalBorrowedPtr<Creature> creature, uint
if (old.HasValue()) {
old.GetValue()->SetOnBattleField(false);
}
_creatures[index] = creature.GetValue();
_creatures[index] = creature;
if (!creature.HasValue()) {
return;
}