double inv != none check removed
This commit is contained in:
parent
8609b8fef8
commit
d697163803
1 changed files with 1 additions and 2 deletions
|
|
@ -31,8 +31,7 @@ function Poison(KFHumanPawn poisonedPawn)
|
||||||
{
|
{
|
||||||
for (I = poisonedPawn.Inventory; I != none; I = I.Inventory)
|
for (I = poisonedPawn.Inventory; I != none; I = I.Inventory)
|
||||||
{
|
{
|
||||||
// why we double check Inv != none here???
|
if (MeanPoisonInventory(I) != none)
|
||||||
if (I != none && MeanPoisonInventory(I) != none)
|
|
||||||
{
|
{
|
||||||
bFoundPoison = true;
|
bFoundPoison = true;
|
||||||
MeanPoisonInventory(I).poisonStartTime = Level.TimeSeconds;
|
MeanPoisonInventory(I).poisonStartTime = Level.TimeSeconds;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue