refactor: remove unused isFirstRig param from initAgentBeads (gt-fugmy)

The isFirstRig parameter was no longer used - it was being assigned
to a blank identifier. Since initAgentBeads is an internal function
with only 2 callers in this repo, remove the parameter entirely.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
immortan
2026-01-04 10:37:21 -08:00
committed by Steve Yegge
parent b7d82c7243
commit 4d24f79492
2 changed files with 3 additions and 6 deletions

View File

@@ -381,7 +381,7 @@ esac
t.Setenv("BEADS_DIR", "") // Clear any existing BEADS_DIR
manager := &Manager{townRoot: townRoot}
if err := manager.initAgentBeads(rigPath, "demo", "gt", false); err != nil {
if err := manager.initAgentBeads(rigPath, "demo", "gt"); err != nil {
t.Fatalf("initAgentBeads: %v", err)
}