Skip to content

Commit 77c014e

Browse files
committed
Change default realname, thanks Zarthus
1 parent d03555a commit 77c014e

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

cloudbot/clients/irc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def connect(self):
120120
self.set_pass(self.config["connection"].get("password"))
121121
self.set_nick(self.nick)
122122
self.cmd("USER", self.config.get('user', 'cloudbot'), "3", "*",
123-
self.config.get('realname', 'CloudBotRefresh - http://cloudbot.pw'))
123+
self.config.get('realname', 'CloudBot - https://git.io/CloudBot'))
124124

125125
def quit(self, reason=None):
126126
if self._quit:

config.default.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
},
1212
"nick": "MyCloudBot",
1313
"user": "cloudbot",
14-
"real_name": "CloudBot Refresh <https://github.com/CloudBotIRC/CloudBot/>",
1514
"avoid_notices": false,
1615
"channels": [
1716
"#cloudbot",

plugins/core_ctcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@asyncio.coroutine
1010
@hook.regex(r'^\x01VERSION\x01$')
1111
def ctcp_version(notice):
12-
notice("\x01VERSION: CloudBot {} - http://cloudbot.pw/".format(cloudbot.__version__))
12+
notice("\x01VERSION: CloudBot {} - https://git.io/CloudBot".format(cloudbot.__version__))
1313

1414

1515
@asyncio.coroutine

0 commit comments

Comments
 (0)