vc
This commit is contained in:
parent
8dbf566de2
commit
6e50997f43
2 changed files with 4 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
||||||
from json.encoder import INFINITY
|
from json.encoder import INFINITY
|
||||||
import random
|
import random
|
||||||
|
from files.helpers.const import *
|
||||||
|
|
||||||
def shuffle(stuff):
|
def shuffle(stuff):
|
||||||
random.shuffle(stuff)
|
random.shuffle(stuff)
|
||||||
|
@ -8,7 +9,8 @@ def shuffle(stuff):
|
||||||
class Slots:
|
class Slots:
|
||||||
command_word = "!slots"
|
command_word = "!slots"
|
||||||
casino_word = "!casino"
|
casino_word = "!casino"
|
||||||
minimum_bet = 100
|
if SITE == 'rdrama.net': minimum_bet = 100
|
||||||
|
else: minimum_bet = 10
|
||||||
maximum_bet = INFINITY
|
maximum_bet = INFINITY
|
||||||
payout_to_symbols = {
|
payout_to_symbols = {
|
||||||
2: ["👣", "🍀", "🌈", "⭐️"],
|
2: ["👣", "🍀", "🌈", "⭐️"],
|
||||||
|
|
|
@ -193,7 +193,7 @@ def searchposts(v):
|
||||||
)
|
)
|
||||||
|
|
||||||
@app.get("/search/comments")
|
@app.get("/search/comments")
|
||||||
@auth_required
|
@auth_desired
|
||||||
def searchcomments(v):
|
def searchcomments(v):
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue