Tweak numbers

This commit is contained in:
Emik 2026-06-10 13:02:13 +02:00
parent ee984ed5f3
commit 7d9dd4f54d
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF
3 changed files with 3 additions and 3 deletions

View file

@ -19,5 +19,5 @@
"conflicts": [ "conflicts": [
"Jen" "Jen"
], ],
"version": "1.7.18" "version": "1.7.19"
} }

View file

@ -154,7 +154,7 @@ local esc = SMODS.Joker {
"{C:inactive,s:0.75,E:1}#5#{C:red,s:1.5,E:1}#6#", "{C:inactive,s:0.75,E:1}#5#{C:red,s:1.5,E:1}#6#",
}, },
}, },
config = {extra = {money = 2, xmoney = 2, max = 1000}}, config = {extra = {money = 2, xmoney = 2, max = 200}},
attributes = {"destroy_card", "economy", "tag"}, attributes = {"destroy_card", "economy", "tag"},
pos = {x = 0, y = 0}, pos = {x = 0, y = 0},
sinis = {x = 2, y = 0}, sinis = {x = 2, y = 0},

View file

@ -302,7 +302,7 @@ function Game:update(dt)
local ante = G.GAME.round_resets.ante local ante = G.GAME.round_resets.ante
local blind = get_blind_amount((ante >= 1 and ante <= 8) and math.floor(ante) or ante) local blind = get_blind_amount((ante >= 1 and ante <= 8) and math.floor(ante) or ante)
G.P_BLINDS["bl_jane_wee"].mult = 22 / blind G.P_BLINDS["bl_jane_wee"].mult = 22 / blind
G.P_BLINDS["bl_jane_descending"].mult = math.floor(8 * math.sqrt(blind)) / blind G.P_BLINDS["bl_jane_descending"].mult = math.ceil(8 * math.sqrt(blind)) / blind
Jane.update_honey() Jane.update_honey()
if not Jane.bans_done then if not Jane.bans_done then