mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-24 19:52:54 +01:00
Added a default behavior for Admin.nick if no nick is given.
This commit is contained in:
parent
eb60864c51
commit
af994cfcff
21
src/Admin.py
21
src/Admin.py
@ -214,16 +214,21 @@ class Admin(privmsgs.CapabilityCheckingPrivmsg):
|
|||||||
self.log.debug('Got NICK without Admin.nick being called.')
|
self.log.debug('Got NICK without Admin.nick being called.')
|
||||||
|
|
||||||
def nick(self, irc, msg, args):
|
def nick(self, irc, msg, args):
|
||||||
"""<nick>
|
"""[<nick>]
|
||||||
|
|
||||||
Changes the bot's nick to <nick>."""
|
Changes the bot's nick to <nick>. If no nick is given, returns the
|
||||||
nick = privmsgs.getArgs(args)
|
bot's current nick.
|
||||||
if ircutils.isNick(nick):
|
"""
|
||||||
conf.supybot.nick.setValue(nick)
|
nick = privmsgs.getArgs(args, required=0, optional=1)
|
||||||
irc.queueMsg(ircmsgs.nick(nick))
|
if nick:
|
||||||
self.pendingNickChanges[irc.getRealIrc()] = irc
|
if ircutils.isNick(nick):
|
||||||
|
conf.supybot.nick.setValue(nick)
|
||||||
|
irc.queueMsg(ircmsgs.nick(nick))
|
||||||
|
self.pendingNickChanges[irc.getRealIrc()] = irc
|
||||||
|
else:
|
||||||
|
irc.error('That\'s not a valid nick.')
|
||||||
else:
|
else:
|
||||||
irc.error('That\'s not a valid nick.')
|
irc.reply(irc.nick)
|
||||||
|
|
||||||
def part(self, irc, msg, args):
|
def part(self, irc, msg, args):
|
||||||
"""<channel> [<channel> ...] [<reason>]
|
"""<channel> [<channel> ...] [<reason>]
|
||||||
|
Loading…
Reference in New Issue
Block a user