Files
igncore/core/chat_blob.py
T
Minidodo a3a26f2ba4 get rid of the MessageDistributor module... & update discord, to work with API v10
Added discord commands (issue: as they're running over the event hub, they're processed on the same track as other events. => activity ingame triggers the next run; otherwise there's some delay for responses)
relay is a standard module now.
2022-04-15 17:05:30 +02:00

23 lines
755 B
Python

class ChatBlob:
def __init__(self, title, msg, prefix="", suffix="", embed=True):
self.title = title
self.msg = msg.strip("\n")
self.page_prefix = prefix
self.page_postfix = suffix
self.embed = embed
def __str__(self):
return f"ChatBlob('{self.title}', '{self.msg}')"
def __repr__(self):
return self.__str__()
def __eq__(self, obj):
return isinstance(obj, ChatBlob) and \
obj.title == self.title and \
obj.msg == self.msg and \
obj.page_prefix == self.page_prefix and \
obj.page_postfix == self.page_postfix
def __len__(self):
return len(self.title + self.msg + self.page_postfix + self.page_prefix)