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

Update ISpellMechanics.cpp

This commit is contained in:
Mikko
2019-01-24 15:09:01 +00:00
committed by GitHub
parent a77cbc311e
commit ae7821462d

View File

@@ -607,7 +607,7 @@ bool BaseMechanics::isSmart() const
} }
else else
{ {
return smart; return (bool)smart;
} }
} }
@@ -620,7 +620,7 @@ bool BaseMechanics::isMassive() const
} }
else else
{ {
return massive; return (bool)massive;
} }
} }