Corrected isGhost

develop
PatrikLundell 2018-06-13 17:28:57 +02:00 committed by lethosor
parent f329774059
commit 51584c2d9e
1 changed files with 1 additions and 1 deletions

@ -1572,7 +1572,7 @@ bool Units::isGhost(df::unit *unit)
{
CHECK_NULL_POINTER(unit);
return !unit->flags3.bits.ghostly;
return unit->flags3.bits.ghostly;
}
bool Units::isActive(df::unit *unit)