diff --git a/lovely.toml b/lovely.toml index 3988b99..41addbf 100644 --- a/lovely.toml +++ b/lovely.toml @@ -36,7 +36,9 @@ target = "functions/misc_functions.lua" pattern = "local AC = G.SETTINGS.ambient_control" position = "before" payload = '''if Jane and G.ARGS.score_intensity.required_score ~= 0 then - Jane.sinister = (G.ARGS.score_intensity.earned_score / (to_big(10) ^ to_big(G.ARGS.score_intensity.required_score))):to_number() > 1 + local base = Cryptid and 10 or G.ARGS.score_intensity.required_score + local expo = Cryptid and G.ARGS.score_intensity.required_score or 10 + Jane.sinister = (G.ARGS.score_intensity.earned_score / (to_big(base) ^ to_big(expo))):to_number() > 1 end''' match_indent = true