I'd like to know if it's possible to check if the last 2 messages in a channel (either the specific channel or the whole server, doesn't really matter for my purpose) were sent by the same person in discord.py, e.g. something like this:
async def on_message(self, message):
lastmessage = #something to check the last message
if message.author.id == lastmessage.author.id:
#...
Thanks.