Fixed the onStart load string to match the module's name change from NickServ to Services

This commit is contained in:
James Vega 2003-08-31 21:58:08 +00:00
parent 07d46283ef
commit 5c034ead98
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ def configure(onStart, afterConnect, advanced):
from questions import expect, anything, something, yn
nick = anything('What is your registered nick?')
password = anything('What is your password for that nick?')
onStart.append('load NickServ')
onStart.append('load Services')
onStart.append('startnickserv %s %s' % (nick, password))
class Services(privmsgs.CapabilityCheckingPrivmsg):