This commit is contained in:
Tourswen
2026-03-02 00:08:41 +08:00
parent bd4843bc89
commit efa7c88e9c
20 changed files with 18 additions and 3 deletions

View File

@@ -65,8 +65,12 @@ namespace WulaFallenEmpire
if (comp != null && comp.CanAddPilot(pawn))
{
comp.AddPilot(pawn);
Messages.Message("WULA_PilotEnteredMech".Translate(pawn.LabelShort, mech.LabelShort),
MessageTypeDefOf.PositiveEvent, false);
if (mech.drafter != null && !mech.Drafted)
{
mech.drafter.Drafted = true;
}
//Messages.Message("WULA_PilotEnteredMech".Translate(pawn.LabelShort, mech.LabelShort),
// MessageTypeDefOf.PositiveEvent, false);
}
};
enterToil.defaultCompleteMode = ToilCompleteMode.Instant;