mirror of
https://github.com/prosolis/gogobee.git
synced 2026-07-15 16:42:41 +00:00
Long expeditions D7-d: corpus re-run + sim heavy-preset fix
Fix sim regression introduced by D5-b: bare `expedition start <zone>` returns the loadout prompt DM without outfitting, so SimRunner.RunExpedition was halting before persisting any expedition. Pass `heavy` from the harness — tier-max packs, no prod paths touched. D7-d corpus (sim_results/, gitignored): n=100 × 10 classes × 5 zones × L10. Leaderboard mirrors J2b — martials 78–82%, casters 21–42%, cluster gap unchanged by long-expedition mechanics. Cleric worst at 21% (L10). Bard/cleric trailers not relieved by autopilot camp pacing; remains J3-territory. T3/T4 cleared runs hit their §2 target durations. D5-d retune decision: no change. phase5BDailyBurnRatePct=50 + per-tier DailyBurn stay as-is — heavy-preset cleared runs end with 78–98% SU surplus; even TPK runs leave packs mostly full. Supply economy is not a binding constraint at heavy preset. Closes the long-expedition track.
This commit is contained in:
@@ -406,7 +406,10 @@ func (s *SimRunner) RunExpedition(uid id.UserID, zoneID ZoneID, walkCap, maxDays
|
||||
}
|
||||
|
||||
ctx := MessageContext{Sender: uid}
|
||||
if err := s.P.handleDnDExpeditionCmd(ctx, "start "+string(zoneID)); err != nil {
|
||||
// D5-b made a bare "start <zone>" return the loadout prompt without
|
||||
// outfitting. Force the tier-max "heavy" preset so multi-day runs
|
||||
// have enough supplies to actually exercise [[project-sim-event-anchored-broken]] rollovers.
|
||||
if err := s.P.handleDnDExpeditionCmd(ctx, "start "+string(zoneID)+" heavy"); err != nil {
|
||||
return res, fmt.Errorf("expedition start: %w", err)
|
||||
}
|
||||
exp, _ := getActiveExpedition(uid)
|
||||
|
||||
Reference in New Issue
Block a user