chore(glow): raise default small-player glow strength to 35%

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
evanpelle
2026-07-17 19:56:08 -07:00
co-authored by Claude Fable 5
parent 4544e18ce6
commit eee7d793f8
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -399,9 +399,9 @@ describe("applyGraphicsOverrides", () => {
).toBe(0);
});
test("smallPlayerGlow strength absent → keeps default of 0.25", () => {
expect(gen({}).smallPlayerGlow.strength).toBe(0.25);
expect(gen({ smallPlayerGlow: {} }).smallPlayerGlow.strength).toBe(0.25);
test("smallPlayerGlow strength absent → keeps default of 0.35", () => {
expect(gen({}).smallPlayerGlow.strength).toBe(0.35);
expect(gen({ smallPlayerGlow: {} }).smallPlayerGlow.strength).toBe(0.35);
});
test("smallPlayerGlow override leaves other glow fields at defaults", () => {