s/RNAME/REALNAME/
This commit is contained in:
parent
8fe1cf9ef5
commit
05866b62ca
@ -5,7 +5,7 @@ PORT = 6667
|
|||||||
USERNAME = "" # for authentication, can be left blank if same as NICK
|
USERNAME = "" # for authentication, can be left blank if same as NICK
|
||||||
NICK = "mywolfbot"
|
NICK = "mywolfbot"
|
||||||
IDENT = NICK
|
IDENT = NICK
|
||||||
RNAME = NICK #realname/gecos, defaults to the same as the nick
|
REALNAME = NICK
|
||||||
CMD_CHAR = "!"
|
CMD_CHAR = "!"
|
||||||
CHANGING_HOST_QUIT_MESSAGE = "Changing host"
|
CHANGING_HOST_QUIT_MESSAGE = "Changing host"
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ def main():
|
|||||||
password=botconfig.PASS,
|
password=botconfig.PASS,
|
||||||
nickname=botconfig.NICK,
|
nickname=botconfig.NICK,
|
||||||
ident=botconfig.IDENT,
|
ident=botconfig.IDENT,
|
||||||
real_name=botconfig.RNAME,
|
real_name=botconfig.REALNAME,
|
||||||
sasl_auth=botconfig.SASL_AUTHENTICATION,
|
sasl_auth=botconfig.SASL_AUTHENTICATION,
|
||||||
use_ssl=botconfig.USE_SSL,
|
use_ssl=botconfig.USE_SSL,
|
||||||
connect_cb=modules.common.connect_callback
|
connect_cb=modules.common.connect_callback
|
||||||
|
Loading…
x
Reference in New Issue
Block a user