3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-01-23 10:44:09 +01:00

ServiceBot: remove defaults for nick and ident

This fallback is handled by coreplugin already.
This commit is contained in:
James Lu 2016-06-11 10:54:07 -07:00
parent bbcddceaf9
commit 77fa3573a1

View File

@ -154,8 +154,8 @@ class ServiceBot():
self.name = name self.name = name
# Nick/ident to take. Defaults to the same as the service name if not given. # Nick/ident to take. Defaults to the same as the service name if not given.
self.nick = nick or name self.nick = nick
self.ident = ident or name self.ident = ident
# Tracks whether the bot should be manipulatable by the 'bots' plugin and other commands. # Tracks whether the bot should be manipulatable by the 'bots' plugin and other commands.
self.manipulatable = manipulatable self.manipulatable = manipulatable