2 Commits

Author SHA1 Message Date
AlberLC
d47fdfb57e Fix bot insults ratio 2022-05-25 04:00:47 +02:00
AlberLC
20fb6e3223 Fix bot insults ratio 2022-05-25 02:55:28 +02:00

View File

@@ -447,7 +447,7 @@ class FlanaBot(MultiBot, ABC):
( (
message.chat.config['auto_insult'] message.chat.config['auto_insult']
and and
random.random() < 0.5 random.random() < constants.INSULT_PROBABILITY
) )
) )
) )