1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

Fixed CID 1366310

This commit is contained in:
AlexVinS 2016-11-25 13:58:20 +03:00
parent 692d23e580
commit 3c9695abcc

View File

@ -701,7 +701,7 @@ void processCommand(const std::string &message)
if(const CIntObject *obj = dynamic_cast<const CIntObject *>(child))
printInfoAboutIntObject(obj, 0);
else
std::cout << typeid(*obj).name() << std::endl;
std::cout << typeid(*child).name() << std::endl;
}
}
else if(cn=="tell")