mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-24 03:29:28 +01:00
protocols: drop underscores from pre-defined opertypes
This commit is contained in:
parent
c71d2bfcb9
commit
19ac5b59a5
@ -508,7 +508,7 @@ class TS6Protocol(TS6BaseProtocol):
|
|||||||
|
|
||||||
# Call the OPERED UP hook if +o is being added to the mode list.
|
# Call the OPERED UP hook if +o is being added to the mode list.
|
||||||
if ('+o', None) in parsedmodes:
|
if ('+o', None) in parsedmodes:
|
||||||
otype = 'Server_Administrator' if ('+a', None) in parsedmodes else 'IRC_Operator'
|
otype = 'Server Administrator' if ('+a', None) in parsedmodes else 'IRC Operator'
|
||||||
self.irc.callHooks([uid, 'CLIENT_OPERED', {'text': otype}])
|
self.irc.callHooks([uid, 'CLIENT_OPERED', {'text': otype}])
|
||||||
|
|
||||||
# Set the accountname if present
|
# Set the accountname if present
|
||||||
@ -576,7 +576,7 @@ class TS6Protocol(TS6BaseProtocol):
|
|||||||
utils.applyModes(self.irc, target, changedmodes)
|
utils.applyModes(self.irc, target, changedmodes)
|
||||||
# Call the OPERED UP hook if +o is being set.
|
# Call the OPERED UP hook if +o is being set.
|
||||||
if ('+o', None) in changedmodes:
|
if ('+o', None) in changedmodes:
|
||||||
otype = 'Server_Administrator' if ('a', None) in self.irc.users[target].modes else 'IRC_Operator'
|
otype = 'Server Administrator' if ('a', None) in self.irc.users[target].modes else 'IRC Operator'
|
||||||
self.irc.callHooks([target, 'CLIENT_OPERED', {'text': otype}])
|
self.irc.callHooks([target, 'CLIENT_OPERED', {'text': otype}])
|
||||||
return {'target': target, 'modes': changedmodes}
|
return {'target': target, 'modes': changedmodes}
|
||||||
|
|
||||||
|
@ -371,7 +371,7 @@ class UnrealProtocol(TS6BaseProtocol):
|
|||||||
|
|
||||||
if ('+o', None) in parsedmodes:
|
if ('+o', None) in parsedmodes:
|
||||||
# If +o being set, call the CLIENT_OPERED internal hook.
|
# If +o being set, call the CLIENT_OPERED internal hook.
|
||||||
self.irc.callHooks([uid, 'CLIENT_OPERED', {'text': 'IRC_Operator'}])
|
self.irc.callHooks([uid, 'CLIENT_OPERED', {'text': 'IRC Operator'}])
|
||||||
|
|
||||||
if ('+x', None) not in parsedmodes:
|
if ('+x', None) not in parsedmodes:
|
||||||
# If +x is not set, update to use the person's real host.
|
# If +x is not set, update to use the person's real host.
|
||||||
@ -673,7 +673,7 @@ class UnrealProtocol(TS6BaseProtocol):
|
|||||||
|
|
||||||
if ('+o', None) in parsedmodes:
|
if ('+o', None) in parsedmodes:
|
||||||
# If +o being set, call the CLIENT_OPERED internal hook.
|
# If +o being set, call the CLIENT_OPERED internal hook.
|
||||||
self.irc.callHooks([numeric, 'CLIENT_OPERED', {'text': 'IRC_Operator'}])
|
self.irc.callHooks([numeric, 'CLIENT_OPERED', {'text': 'IRC Operator'}])
|
||||||
|
|
||||||
self.checkCloakChange(numeric, parsedmodes)
|
self.checkCloakChange(numeric, parsedmodes)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user