Boost slot activations frequency (extra_spin 10%, double 4%, guaranteed 7%, free 7%, quintuple 2%)

This commit is contained in:
root
2026-07-05 16:41:16 +00:00
parent 95f3dc7f20
commit 8110f39ef5
+5 -5
View File
@@ -1666,11 +1666,11 @@ async def api_open_slot_case(
# Assign activations to each reel's target item # Assign activations to each reel's target item
ACTIVATION_WEIGHTS = [ ACTIVATION_WEIGHTS = [
("extra_spin", 0.03), ("extra_spin", 0.10),
("double", 0.01), ("double", 0.04),
("guaranteed", 0.02), ("guaranteed", 0.07),
("free_spin", 0.02), ("free_spin", 0.07),
("quintuple", 0.005), ("quintuple", 0.02),
] ]
def pick_activation(): def pick_activation():
r = random.random() r = random.random()