mirror of
https://github.com/nichkara/InfinitumBotty.git
synced 2026-06-10 22:26:23 +02:00
mtell command aded
This commit is contained in:
@@ -17,6 +17,6 @@ class TellObserver(PrivMsgObserverPrototype):
|
|||||||
if data['message'].find('.tell') != -1 and self._is_idented_mod(data, connection):
|
if data['message'].find('.tell') != -1 and self._is_idented_mod(data, connection):
|
||||||
connection.send_channel(data['messageCaseSensitive'][6:])
|
connection.send_channel(data['messageCaseSensitive'][6:])
|
||||||
if data['message'].find('.mtell') != -1 and self._is_idented_mod(data, connection):
|
if data['message'].find('.mtell') != -1 and self._is_idented_mod(data, connection):
|
||||||
connection.send_channel('\001ACTION'+data['messageCaseSensitive'][7:]+'\001')
|
connection.send_channel('\001ACTION '+data['messageCaseSensitive'][7:]+'\001')
|
||||||
def _is_idented_mod(self, data: dict, connection: Connection):
|
def _is_idented_mod(self, data: dict, connection: Connection):
|
||||||
return data['nick'] in self._config.mods and connection.is_idented(data['nick'])
|
return data['nick'] in self._config.mods and connection.is_idented(data['nick'])
|
||||||
Reference in New Issue
Block a user