From d11c6d12bf2eeb3a1beb49ddae366bb1963e9663 Mon Sep 17 00:00:00 2001 From: Dusk-92 Date: Thu, 30 Jul 2026 16:16:02 +0200 Subject: [PATCH] Change out of range button color to lighter shade Updated out of range color from red to a lighter shade. --- mods/actionbar-range-color.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/actionbar-range-color.lua b/mods/actionbar-range-color.lua index 210dbc0..4807932 100644 --- a/mods/actionbar-range-color.lua +++ b/mods/actionbar-range-color.lua @@ -18,7 +18,7 @@ module.enable = function(self) if ( this.rangeTimer <= 0.2 ) then -- 0.1 if ( IsActionInRange( ActionButton_GetPagedID(this)) == 0 ) then if not this.a then - this.r,this.g,this.b,this.a = 1,.1,.1,1 -- out of range colour + this.r,this.g,this.b,this.a = 0.9, 0.35, 0.35, 1 -- out of range colour end _G[this:GetName() .. 'Icon']:SetVertexColor(this.r, this.g, this.b, this.a) elseif IsUsableAction(ActionButton_GetPagedID(this)) then