Browse Source

Fix using tabs instead of spaces in some places

master
Anton Tarasenko 4 years ago
parent
commit
c582d29a94
  1. 4
      sources/FixFFHack/FFHackRule.uc

4
sources/FixFFHack/FFHackRule.uc

@ -34,7 +34,9 @@ function int NetDamage(
local FixFFHack ffHackFix; local FixFFHack ffHackFix;
gameType = KFGameType(level.game); gameType = KFGameType(level.game);
// Something is very wrong and we can just bail on this damage // Something is very wrong and we can just bail on this damage
if (damageType == none || gameType == none) return 0; if (damageType == none || gameType == none) {
return 0;
}
// We only check when suspicious instigators that aren't a world // We only check when suspicious instigators that aren't a world
if (!damageType.default.bCausedByWorld && IsSuspicious(instigator)) if (!damageType.default.bCausedByWorld && IsSuspicious(instigator))

Loading…
Cancel
Save