From 9e694b498b72319b132d3aae2d45f8c74d5e88bd Mon Sep 17 00:00:00 2001 From: Vivacious Box Date: Wed, 29 Oct 2025 00:40:01 +0100 Subject: [PATCH] Fill the range indicator with white for better clarity (#2319) ## Description: Fill the range indicators image ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: Mr.Box --- src/client/graphics/layers/StructureDrawingUtils.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/client/graphics/layers/StructureDrawingUtils.ts b/src/client/graphics/layers/StructureDrawingUtils.ts index a8a7ef930..cc8dbfaa9 100644 --- a/src/client/graphics/layers/StructureDrawingUtils.ts +++ b/src/client/graphics/layers/StructureDrawingUtils.ts @@ -453,7 +453,8 @@ export class SpriteFactory { } circle .circle(0, 0, radius) - .stroke({ width: 1, color: 0xffffff, alpha: 0.2 }); + .fill({ color: 0xffffff, alpha: 0.2 }) + .stroke({ width: 1, color: 0xffffff, alpha: 0.5 }); parentContainer.addChild(circle); parentContainer.position.set(pos.x, pos.y); parentContainer.scale.set(this.transformHandler.scale);