Nerf sinister in non-cryptid
This commit is contained in:
parent
052dff3224
commit
9b6f2e0d2f
1 changed files with 3 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue