diff --git a/Source/CombatExtended/CombatExtended/Comps/CompCIWSImpactHandler_Skyfaller.cs b/Source/CombatExtended/CombatExtended/Comps/CompCIWSImpactHandler_Skyfaller.cs index 18a6d66f1b..d7fd56f364 100644 --- a/Source/CombatExtended/CombatExtended/Comps/CompCIWSImpactHandler_Skyfaller.cs +++ b/Source/CombatExtended/CombatExtended/Comps/CompCIWSImpactHandler_Skyfaller.cs @@ -80,15 +80,12 @@ private Thing TryDropThing(Thing thingToDrop, Map map, IntVec3 position) { dropedThing = GenSpawn.Spawn(thingToDrop, position, map, contents.spawnWipeMode.Value); } - if (dropedThing is Pawn pawn) + if (dropedThing is Pawn pawn && pawn.RaceProps.Humanlike) { - if (pawn.RaceProps.Humanlike) + TaleRecorder.RecordTale(TaleDefOf.LandedInPod, new object[] { - TaleRecorder.RecordTale(TaleDefOf.LandedInPod, new object[] - { - pawn - }); - } + pawn + }); } return dropedThing; }