1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00

Merge pull request #2232 from wb180/fixCrashInVCAI

Okay, that's certainly a good change even if the code is quite messy otherwise.
This commit is contained in:
DjWarmonger
2023-06-15 15:20:38 +02:00
committed by GitHub

View File

@@ -133,7 +133,7 @@ TSubgoal CollectRes::whatToDoToTrade()
ai->retrieveVisitableObjs(visObjs, true);
for(const CGObjectInstance * obj : visObjs)
{
if(const IMarket * m = IMarket::castFrom(obj, false); m->allowsTrade(EMarketMode::RESOURCE_RESOURCE))
if(const IMarket * m = IMarket::castFrom(obj, false); m && m->allowsTrade(EMarketMode::RESOURCE_RESOURCE))
{
if(obj->ID == Obj::TOWN)
{