- refactored a few more native meta properties.

This commit is contained in:
Christoph Oelckers 2017-02-28 12:47:44 +01:00
commit 2a4a5e7a70
9 changed files with 44 additions and 46 deletions

View file

@ -1022,7 +1022,7 @@ static int DamageMobj (AActor *target, AActor *inflictor, AActor *source, int da
}
if (target == source && damage < TELEFRAG_DAMAGE)
{
damage = int(damage * target->GetClass()->SelfDamageFactor);
damage = int(damage * target->SelfDamageFactor);
}
// [MC] Changed it to check rawdamage here for consistency, even though that doesn't actually do anything