We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d916d56 commit 8d2c721Copy full SHA for 8d2c721
lib/overrides.lua
@@ -2301,3 +2301,12 @@ function SMODS.calculate_round_score(flames)
2301
end
2302
return smods_calculate_round_score_stuff(flames)
2303
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