mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-24 11:42:52 +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.')
|
||||
|
||||
def nick(self, irc, msg, args):
|
||||
"""<nick>
|
||||
"""[<nick>]
|
||||
|
||||
Changes the bot's nick to <nick>."""
|
||||
nick = privmsgs.getArgs(args)
|
||||
if ircutils.isNick(nick):
|
||||
conf.supybot.nick.setValue(nick)
|
||||
irc.queueMsg(ircmsgs.nick(nick))
|
||||
self.pendingNickChanges[irc.getRealIrc()] = irc
|
||||
Changes the bot's nick to <nick>. If no nick is given, returns the
|
||||
bot's current nick.
|
||||
"""
|
||||
nick = privmsgs.getArgs(args, required=0, optional=1)
|
||||
if nick:
|
||||
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:
|
||||
irc.error('That\'s not a valid nick.')
|
||||
irc.reply(irc.nick)
|
||||
|
||||
def part(self, irc, msg, args):
|
||||
"""<channel> [<channel> ...] [<reason>]
|
||||
|
Loading…
Reference in New Issue
Block a user