Skip to content

Commit 3d7aab4

Browse files
committed
freenode -> Libera
1 parent e5bf310 commit 3d7aab4

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Werewolf is a popular party game, similar to and inspired by [mafia][mafia]. In
1212

1313
### Where can I play this game?
1414

15-
We run an instance of the bot in the [##werewolf channel][game_webchat] on freenode. Off-topic discussion happens in ##werewolf-meta on the same network, and channel operators can be reached in ##werewolf-ops. There are also other networks listed in the [Networks page][wikinet] of our [official wiki][wiki]. Keep in mind that, just because someone appears online, does not mean they are around or available to play.
15+
We run an instance of the bot in the [##werewolf channel][game_webchat] on Libera. Off-topic discussion happens in ##werewolf-meta on the same network, and channel operators can be reached in ##werewolf-ops. There are also other networks listed in the [Networks page][wikinet] of our [official wiki][wiki]. Keep in mind that, just because someone appears online, does not mean they are around or available to play.
1616

1717
## For players
1818

@@ -56,7 +56,7 @@ OWNERS_ACCOUNTS: This is the account of the owner of the bot. This also supports
5656

5757
### I entered everything correctly, but the bot doesn't work in some way. What can I do?
5858

59-
We can help you with these kinds of issues in our [development channel, #lykos][dev_webchat] on freenode. Ask directly in the channel, and wait for someone to answer. Please do not message people directly, as that prevents other people from helping as well. People who are voiced (typically a '+' before their name in the user list, or a blue circle for Hexchat) are developers and are more likely to be able to help.
59+
We can help you with these kinds of issues in our [development channel, #lykos][dev_webchat] on Libera. Ask directly in the channel, and wait for someone to answer. Please do not message people directly, as that prevents other people from helping as well. People who are voiced (typically a '+' before their name in the user list, or a blue circle for Hexchat) are developers and are more likely to be able to help.
6060

6161
### The bot works fine, but there's just something I'd like to tweak. Is that possible?
6262

@@ -114,11 +114,11 @@ Special thanks to LaneAtomic for their work on the messages system, which made c
114114

115115
[mafia]: https://en.wikipedia.org/wiki/Mafia_(party_game)
116116
[license]: https://github.com/lykoss/lykos/blob/master/LICENSE
117-
[game_webchat]: http://webchat.freenode.net/?channels=##werewolf
117+
[game_webchat]: https://kiwiirc.com/client/irc.libera.chat/##werewolf
118118
[wikinet]: https://werewolf.chat/Networks
119119
[wiki]: https://werewolf.chat/Main_Page
120120
[pydownload]: https://www.python.org/downloads/
121121
[git]: https://git-scm.com/downloads
122-
[dev_webchat]: http://webchat.freenode.net/?channels=#lykos
122+
[dev_webchat]: https://kiwiirc.com/client/irc.libera.chat/#lykos
123123
[new_issue]: https://github.com/lykoss/lykos/issues/new
124124
[events]: https://werewolf.chat/Events

botconfig.py.example

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
HOST = "chat.freenode.net"
1+
HOST = "irc.libera.net"
22
PORT = 6697
33
NICK = "mywolfbot"
44
IDENT = NICK
@@ -13,10 +13,10 @@ SSL_VERIFY = True
1313
# you may set this. Otherwise, we validate certificates as long as they chain up to a trusted CA.
1414
# If set, CA validation is not considered, and we validate based on the fingerprint. If the server
1515
# is using self-signed certificates, you will want to make use of SSL_CERTFP.
16-
# An example below is for freenode; note that certificate fingerprints can and do change over time,
16+
# An example below is for Libera; note that certificate fingerprints can and do change over time,
1717
# so manual adjustment may be required if you make use of this setting.
1818
# Example of how to obtain a fingerprint:
19-
# openssl s_client -connect chat.freenode.net:6697 < /dev/null 2>/dev/null | openssl x509 -fingerprint -sha256 -noout -in /dev/stdin
19+
# openssl s_client -connect irc.libera.net:6697 < /dev/null 2>/dev/null | openssl x509 -fingerprint -sha256 -noout -in /dev/stdin
2020
# The comma at the end is required if there is only one fingerprint.
2121
#SSL_CERTFP = ("51:F4:3A:29:80:49:10:F0:23:5C:5E:F4:3B:0C:0A:6E:D9:42:BF:A1:60:89:4A:28:38:AD:CF:F7:DE:49:B4:16",)
2222

@@ -39,7 +39,7 @@ SERVER_PASS = None
3939
OWNERS = ("unaffiliated/wolfbot_admin1",) # The comma is required at the end if there is only one owner.
4040
OWNERS_ACCOUNTS = ("1owner_acc",)
4141

42-
#RULES = "https://werewolf.chat/Freenode:Rules"
42+
#RULES = "https://werewolf.chat/Libera:Rules"
4343

4444
OWNERS_ONLY_COMMANDS = [] # Commands that should only be allowed for owners, regardless of their original permissions
4545

@@ -71,7 +71,7 @@ USE_UTC = True # If True, logs will use the UTC time, else local time.
7171
TIMESTAMP_FORMAT = "[%Y-%m-%d %H:%M:%S{tzoffset}]"
7272

7373

74-
# The defaults used by the bot should work on freenode and other networks using Atheme.
74+
# The defaults used by the bot should work on Libera and other networks using Atheme.
7575
#
7676
# An example configuration for Undernet is provided below; if you're running the bot on Undernet,
7777
# you can simply uncomment the following lines. For other networks, you can set the appropriate

oyoyo/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def connect(self):
167167
""" initiates the connection to the server set in self.host:self.port
168168
and returns a generator object.
169169
170-
>>> cli = IRCClient(my_handler, host="irc.freenode.net", port=6667)
170+
>>> cli = IRCClient(my_handler, host="irc.libera.net", port=6667)
171171
>>> g = cli.connect()
172172
>>> while 1:
173173
... next(g)

src/db/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -960,7 +960,7 @@ def _upgrade(oldversion):
960960
print("Upgrades complete!", file=sys.stderr)
961961
except sqlite3.Error:
962962
print("An error has occurred while upgrading the database schema.",
963-
"Please report this issue to #lykos on irc.freenode.net.",
963+
"Please report this issue to #lykos on irc.libera.net.",
964964
"Include all of the following details in your report:",
965965
sep="\n", file=sys.stderr)
966966
if have_backup:

wolfbot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"If you don't have pip and don't know how to install it, follow this link:",
4242
"https://pip.pypa.io/en/stable/installing/", "",
4343
"If you need any further help with setting up and/or running the bot,",
44-
" we will be happy to help you in #lykos on irc.freenode.net", "",
44+
" we will be happy to help you in #lykos on irc.libera.net", "",
4545
"- The lykos developers"]))
4646
sys.exit(1)
4747

0 commit comments

Comments
 (0)