mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-25 20:22:45 +01:00
More fix0rs for prefixName.
This commit is contained in:
parent
9b5f945d28
commit
3537c34a58
@ -615,7 +615,7 @@ class IrcObjectProxy(RichReplyMethods):
|
|||||||
else:
|
else:
|
||||||
self._callCommand(name, cb)
|
self._callCommand(name, cb)
|
||||||
|
|
||||||
def reply(self, s, noLengthCheck=False, prefixName=True,
|
def reply(self, s, noLengthCheck=False, prefixName=None,
|
||||||
action=None, private=None, notice=None, to=None, msg=None):
|
action=None, private=None, notice=None, to=None, msg=None):
|
||||||
"""reply(s) -> replies to msg with s
|
"""reply(s) -> replies to msg with s
|
||||||
|
|
||||||
@ -638,8 +638,11 @@ class IrcObjectProxy(RichReplyMethods):
|
|||||||
'Old code alert: there is no longer a "msg" argument to reply.'
|
'Old code alert: there is no longer a "msg" argument to reply.'
|
||||||
if msg is None:
|
if msg is None:
|
||||||
msg = self.msg
|
msg = self.msg
|
||||||
|
if prefixName is not None:
|
||||||
|
self.prefixName = prefixName
|
||||||
if action is not None:
|
if action is not None:
|
||||||
self.action = self.action or action
|
self.action = self.action or action
|
||||||
|
self.prefixName = False
|
||||||
if notice is not None:
|
if notice is not None:
|
||||||
self.notice = self.notice or notice
|
self.notice = self.notice or notice
|
||||||
if private is not None:
|
if private is not None:
|
||||||
@ -647,7 +650,6 @@ class IrcObjectProxy(RichReplyMethods):
|
|||||||
if to is not None:
|
if to is not None:
|
||||||
self.to = self.to or to
|
self.to = self.to or to
|
||||||
# action=True implies noLengthCheck=True and prefixName=False
|
# action=True implies noLengthCheck=True and prefixName=False
|
||||||
self.prefixName = prefixName and self.prefixName and not self.action
|
|
||||||
self.noLengthCheck=noLengthCheck or self.noLengthCheck or self.action
|
self.noLengthCheck=noLengthCheck or self.noLengthCheck or self.action
|
||||||
if self.finalEvaled:
|
if self.finalEvaled:
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user