This commit is contained in:
@@ -20,6 +20,7 @@ class Chatbot(commands.Cog):
|
||||
self.START_OF_MESSAGE = "<SOM>"
|
||||
self.pmLast = datetime(2018, 1, 1, 1, 1, 1)
|
||||
self.pmCount = 0
|
||||
self.nosLast = datetime(2018, 1, 1, 1, 1, 1)
|
||||
self.nosPosts = []
|
||||
try:
|
||||
np.load('markov_dict.npy', allow_pickle=True)
|
||||
@@ -491,6 +492,11 @@ class Chatbot(commands.Cog):
|
||||
await ctx.message.delete()
|
||||
except:
|
||||
pass
|
||||
diff = datetime.now() - self.nosLast
|
||||
self.nosLast = datetime.now()
|
||||
if diff.days <= 0 and diff.seconds <= 300:
|
||||
await ctx.channel.send(f"Kappen nou {ctx.author.mention}")
|
||||
return
|
||||
opties = [
|
||||
"algemeen",
|
||||
"binnenland",
|
||||
|
||||
Reference in New Issue
Block a user