gofmt: bring internal/ and cmd/ back to gofmt -l clean

Mechanical `gofmt -w ./internal ./cmd`. Mostly struct-field realignment that
had drifted, plus a few trailing-newline fixes. No behaviour change — gofmt is
semantics-preserving, and build/vet/test are green either side.

Split out from the code-review fixes that follow so those stay reviewable
instead of hiding inside a wall of realignment.
This commit is contained in:
prosolis
2026-07-10 07:18:07 -07:00
parent 08d3053368
commit 3369d7d8fe
108 changed files with 1248 additions and 1260 deletions

View File

@@ -38,28 +38,28 @@ func setupAuditTestDB(t *testing.T) {
// regardless of MaxHP parity.
func TestOrcRage_ThresholdExact(t *testing.T) {
cases := []struct {
hp, maxHP int
hp, maxHP int
shouldFire bool
}{
{50, 100, false}, // exactly 50% — does NOT fire (strict <)
{49, 100, true}, // just under
{8, 16, false}, // exactly 50% even MaxHP
{7, 16, true},
{8, 15, true}, // 8/15 = 53% — under former threshold of MaxHP/2=7. New: 8*2=16, 16<15 false. Hmm.
{8, 15, true}, // 8/15 = 53% — under former threshold of MaxHP/2=7. New: 8*2=16, 16<15 false. Hmm.
}
// Re-derive: HP*2 < MaxHP. So 8*2=16 < 15? No. Doesn't fire. That means at MaxHP=15, threshold trips at HP*2 < 15, i.e. HP < 7.5, i.e. HP ≤ 7.
// Old behavior used HP < MaxHP/2 = HP < 7 (integer div). So fired at HP < 7, i.e., HP ≤ 6. Different by one.
// Pick cases that distinguish.
cases = []struct {
hp, maxHP int
hp, maxHP int
shouldFire bool
}{
{50, 100, false},
{49, 100, true},
{8, 16, false},
{7, 16, true},
{6, 15, true}, // 6*2=12 < 15 ✓
{7, 15, true}, // 7*2=14 < 15 ✓ (old code's MaxHP/2=7 would have NOT fired at HP=7)
{6, 15, true}, // 6*2=12 < 15 ✓
{7, 15, true}, // 7*2=14 < 15 ✓ (old code's MaxHP/2=7 would have NOT fired at HP=7)
{8, 15, false}, // 8*2=16, not < 15
}
for _, c := range cases {