1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-05-23 22:40:07 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
} }
} }