forked from rDrama/rDrama
1
0
Fork 0

Treasure: raise minimum reward 10 -> 12.

A rare case where users receive 0 lotto tickets from a treasure chest
occurs when they received 10 or 11 coins from a chest pre-conversion
to lotto tickets. Rather than change ticket_count to the ceil of
dividing coins by ticket cost, it seems less distortionary to instead
imperceptibly raise the minimum to avoid this case.
master
Snakes 2022-05-31 20:23:19 -04:00
parent ac8f726d88
commit 79e338de38
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ from files.helpers.lottery import *
special_min = 100
special_max = 200
standard_min = 10
standard_min = 12
standard_max = 100
lotterizer_rate = 33