Bladeren bron

Quick fix for https://bugs.vcmi.eu/view.php?id=3041

AlexVinS 6 jaren geleden
bovenliggende
commit
f36a86412e
1 gewijzigde bestanden met toevoegingen van 3 en 0 verwijderingen
  1. 3 0
      AI/VCAI/Goals/AdventureSpellCast.cpp

+ 3 - 0
AI/VCAI/Goals/AdventureSpellCast.cpp

@@ -44,6 +44,9 @@ TSubgoal AdventureSpellCast::whatToDoToAchieve()
 	if(hero->mana < hero->getSpellCost(spell))
 		throw cannotFulfillGoalException("Hero has not enough mana to cast " + spell->name);
 
+	if(spellID == SpellID::TOWN_PORTAL && town && town->visitingHero)
+		throw cannotFulfillGoalException("The town is already occupied by " + town->visitingHero->name);
+
 	return iAmElementar();
 }