mirror of
https://github.com/nichkara/InfinitumBotty.git
synced 2026-06-11 06:36:24 +02:00
added guests are always greeted by first greeter
This commit is contained in:
@@ -1,7 +1,5 @@
|
|||||||
from FaustBot.Communication.Connection import Connection
|
from FaustBot.Communication.Connection import Connection
|
||||||
from FaustBot.Modules.JoinObserverPrototype import JoinObserverPrototype
|
from FaustBot.Modules.JoinObserverPrototype import JoinObserverPrototype
|
||||||
import time
|
|
||||||
from collections import defaultdict
|
|
||||||
from FaustBot.Model.UserProvider import UserProvider
|
from FaustBot.Model.UserProvider import UserProvider
|
||||||
|
|
||||||
class First_Greeter(JoinObserverPrototype):
|
class First_Greeter(JoinObserverPrototype):
|
||||||
@@ -23,6 +21,9 @@ class First_Greeter(JoinObserverPrototype):
|
|||||||
|
|
||||||
def update_on_join(self, data, connection: Connection):
|
def update_on_join(self, data, connection: Connection):
|
||||||
if data['channel'] == connection.details.get_channel():
|
if data['channel'] == connection.details.get_channel():
|
||||||
|
if data['nick'].find("Guest") != -1:
|
||||||
|
connection.send_back(self.first_greeting + " " + data['nick'], data)
|
||||||
|
return
|
||||||
UProvider= UserProvider()
|
UProvider= UserProvider()
|
||||||
if(UProvider.get_characters(data['nick'])) < 100:
|
if(UProvider.get_characters(data['nick'])) < 100:
|
||||||
connection.send_back(self.first_greeting + " " + data['nick'], data)
|
connection.send_back(self.first_greeting + " " + data['nick'], data)
|
||||||
Reference in New Issue
Block a user