forked from MarseyWorld/MarseyWorld
make the chance of snappy marseys and snappy quotes even
instead of being dependant on the number of eachmaster
parent
c619204ec0
commit
9176a7746a
|
@ -43,10 +43,16 @@ def execute_snappy(post, v):
|
||||||
elif v.id == LAWLZ_ID:
|
elif v.id == LAWLZ_ID:
|
||||||
if random.random() < 0.5: body = "wow, this lawlzpost sucks!"
|
if random.random() < 0.5: body = "wow, this lawlzpost sucks!"
|
||||||
else: body = "wow, a good lawlzpost for once!"
|
else: body = "wow, a good lawlzpost for once!"
|
||||||
elif len(SNAPPY_QUOTES) == 0:
|
elif not SNAPPY_MARSEYS and not SNAPPY_QUOTES:
|
||||||
body = ""
|
body = ""
|
||||||
else:
|
else:
|
||||||
body = random.choice(SNAPPY_QUOTES).strip()
|
if SNAPPY_MARSEYS and SNAPPY_QUOTES:
|
||||||
|
if random.random() < 0.5: SNAPPY_CHOICES = SNAPPY_MARSEYS
|
||||||
|
else: SNAPPY_CHOICES = SNAPPY_QUOTES
|
||||||
|
elif SNAPPY_MARSEYS: SNAPPY_CHOICES = SNAPPY_MARSEYS
|
||||||
|
elif SNAPPY_QUOTES: SNAPPY_CHOICES = SNAPPY_QUOTES
|
||||||
|
|
||||||
|
body = random.choice(SNAPPY_CHOICES).strip()
|
||||||
if body.startswith('▼'):
|
if body.startswith('▼'):
|
||||||
body = body[1:]
|
body = body[1:]
|
||||||
vote = Vote(user_id=SNAPPY_ID,
|
vote = Vote(user_id=SNAPPY_ID,
|
||||||
|
|
|
@ -917,15 +917,12 @@ marseys_const = [x[0] for x in db.query(Marsey.name).filter(Marsey.name!='chudse
|
||||||
marseys_const2 = marseys_const + ['chudsey','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z','0','1','2','3','4','5','6','7','8','9','exclamationpoint','period','questionmark']
|
marseys_const2 = marseys_const + ['chudsey','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z','0','1','2','3','4','5','6','7','8','9','exclamationpoint','period','questionmark']
|
||||||
db.close()
|
db.close()
|
||||||
|
|
||||||
SNAPPY_QUOTES = []
|
if SITE_NAME not in ('PCM', 'LGBDropTheT'):
|
||||||
if not SITE_NAME in ['PCM', 'LGBDropTheT']:
|
SNAPPY_MARSEYS = [f':#{x}:' for x in marseys_const2]
|
||||||
SNAPPY_QUOTES = [f':#{x}:' for x in marseys_const2]
|
|
||||||
|
|
||||||
snappy_name = SITE_NAME
|
if path.isfile(f'snappy_{SITE_NAME}.txt'):
|
||||||
|
with open(f'snappy_{SITE_NAME}.txt', "r", encoding="utf-8") as f:
|
||||||
if path.isfile(f'snappy_{snappy_name}.txt'):
|
SNAPPY_QUOTES = f.read().split("\n{[para]}\n")
|
||||||
with open(f'snappy_{snappy_name}.txt', "r", encoding="utf-8") as f:
|
|
||||||
SNAPPY_QUOTES += f.read().split("\n{[para]}\n")
|
|
||||||
|
|
||||||
YOUTUBE_KEY = environ.get("YOUTUBE_KEY", "").strip()
|
YOUTUBE_KEY = environ.get("YOUTUBE_KEY", "").strip()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue