Skip to content

Commit 8d2c721

Browse files
Update overrides.lua
1 parent d916d56 commit 8d2c721

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

lib/overrides.lua

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2301,3 +2301,12 @@ function SMODS.calculate_round_score(flames)
23012301
end
23022302
return smods_calculate_round_score_stuff(flames)
23032303
end
2304+
2305+
-- Band-aid fix, need to figure out an actual fix later
2306+
local draw_self = UIElement.draw_self
2307+
function UIElement:draw_self()
2308+
if not self.config.colour then
2309+
self.config.colour = G.C.FILTER
2310+
end
2311+
draw_self(self)
2312+
end

0 commit comments

Comments
 (0)