This commit is contained in:
2026-02-25 17:30:59 +08:00
parent 0509f26c3c
commit fff40b0edb
70 changed files with 3951 additions and 1219 deletions

View File

@@ -109,7 +109,7 @@ namespace WulaFallenEmpire
var pilotKind = Props.SelectRandomPilotKind();
if (pilotKind == null)
{
Log.Warning($"[DD] No valid pilot kind found");
Log.Warning($"[WULA] No valid pilot kind found");
return false;
}
@@ -151,7 +151,7 @@ namespace WulaFallenEmpire
}
else
{
Log.Warning($"[DD] Cannot add pilot {pilot.LabelShortCap} to mech");
Log.Warning($"[WULA] Cannot add pilot {pilot.LabelShortCap} to mech");
// 清理生成的pawn
pilot.Destroy();
return false;
@@ -159,7 +159,7 @@ namespace WulaFallenEmpire
}
catch (System.Exception ex)
{
Log.Error($"[DD] Error generating default pilot: {ex}");
Log.Error($"[WULA] Error generating default pilot: {ex}");
return false;
}
}