parent
64cb79823e
commit
bfb68b1edd
1 changed files with 5 additions and 5 deletions
10
server.py
10
server.py
|
@ -462,11 +462,6 @@ def session(connection, client, ip, isssl=False):
|
|||
processedExternally = False
|
||||
for i in commandProviders:
|
||||
cmdrun = i.command(command=command, args=args, nick=pending, ip=client[0], user=property_list[pending], connection=connection, v3tag=tags())
|
||||
if cmdrun["success"] == "skip":
|
||||
pass
|
||||
elif cmdrun["success"]:
|
||||
processedExternally = True
|
||||
break
|
||||
if "identify" in cmdrun:
|
||||
if cmdrun["identify"] == "logout":
|
||||
if "o" in property_list[pending]["modes"]:
|
||||
|
@ -492,6 +487,11 @@ def session(connection, client, ip, isssl=False):
|
|||
lower_chans[chran["name"].lower()] = chran["name"]
|
||||
channel_modestore_identify[chran["name"]] = chran["automodes"]
|
||||
channel_modestore[chran["name"]] = {}
|
||||
if cmdrun["success"] == "skip":
|
||||
pass
|
||||
elif cmdrun["success"]:
|
||||
processedExternally = True
|
||||
break
|
||||
if processedExternally:
|
||||
pass
|
||||
elif command == "JOIN":
|
||||
|
|
Loading…
Add table
Reference in a new issue