forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-01-25 20:30:41 +02:00
parent 05d3cb6d04
commit cfadcd5823
1 changed files with 6 additions and 2 deletions

View File

@ -46,7 +46,9 @@ class Slots:
from_comment.slots_result = f'{symbols} {text}'
self.db.add(from_comment)
except: break
except Exception as e:
print(e, flush=True)
break
if self.casino_word in in_text:
for word in in_text.split():
@ -73,7 +75,9 @@ class Slots:
from_comment.slots_result = f'{symbols} {text}'
self.db.add(from_comment)
except: break
except Exception as e:
print(e, flush=True)
break
def determine_payout(self):