diff --git a/sources/Zeds/Mean/MeanZombieCrawler.uc b/sources/Zeds/Mean/MeanZombieCrawler.uc index cbc2dce..41288e6 100644 --- a/sources/Zeds/Mean/MeanZombieCrawler.uc +++ b/sources/Zeds/Mean/MeanZombieCrawler.uc @@ -31,8 +31,7 @@ function Poison(KFHumanPawn poisonedPawn) { for (I = poisonedPawn.Inventory; I != none; I = I.Inventory) { - // why we double check Inv != none here??? - if (I != none && MeanPoisonInventory(I) != none) + if (MeanPoisonInventory(I) != none) { bFoundPoison = true; MeanPoisonInventory(I).poisonStartTime = Level.TimeSeconds;