diff --git a/Source/CombatExtended/CombatExtended/Comps/CompCIWSImpactHandler_Skyfaller.cs b/Source/CombatExtended/CombatExtended/Comps/CompCIWSImpactHandler_Skyfaller.cs index d7fd56f364..9669b87242 100644 --- a/Source/CombatExtended/CombatExtended/Comps/CompCIWSImpactHandler_Skyfaller.cs +++ b/Source/CombatExtended/CombatExtended/Comps/CompCIWSImpactHandler_Skyfaller.cs @@ -67,27 +67,27 @@ private Thing TryDropThing(Thing thingToDrop, Map map, IntVec3 position) { GenSpawn.CheckMoveItemsAside(parent.Position, rot, thingToDrop.def, map); } - Thing dropedThing; + Thing droppedThing; if (contents?.spawnWipeMode == null) { - GenPlace.TryPlaceThing(thingToDrop, position, map, ThingPlaceMode.Near, out dropedThing, null, null, rot); + GenPlace.TryPlaceThing(thingToDrop, position, map, ThingPlaceMode.Near, out droppedThing, null, null, rot); } else if (contents?.setRotation != null) { - dropedThing = GenSpawn.Spawn(thingToDrop, position, map, contents.setRotation.Value, contents.spawnWipeMode.Value, false, false); + droppedThing = GenSpawn.Spawn(thingToDrop, position, map, contents.setRotation.Value, contents.spawnWipeMode.Value, false, false); } else { - dropedThing = GenSpawn.Spawn(thingToDrop, position, map, contents.spawnWipeMode.Value); + droppedThing = GenSpawn.Spawn(thingToDrop, position, map, contents.spawnWipeMode.Value); } - if (dropedThing is Pawn pawn && pawn.RaceProps.Humanlike) + if (droppedThing is Pawn pawn && pawn.RaceProps.Humanlike) { TaleRecorder.RecordTale(TaleDefOf.LandedInPod, new object[] { pawn }); } - return dropedThing; + return droppedThing; } } }