10 lines
164 B
Python
10 lines
164 B
Python
def get_winnings_bb(jackpot_cash):
|
|
return {
|
|
1: [5,7,20,50,jackpot_cash]
|
|
}
|
|
|
|
|
|
def get_winnings_no_bb():
|
|
return {
|
|
1: [0,0,0,20,1_501]
|
|
} |