3
0
mirror of https://github.com/pragma-/pbot.git synced 2025-07-05 21:17:28 +02:00

Fix stray comma in Wordle plugin.

This commit is contained in:
Alex Belanger 2024-03-08 20:28:31 -05:00
parent a493a7162e
commit 328d34b889
No known key found for this signature in database
GPG Key ID: 31736D2B10A5F158
2 changed files with 3 additions and 3 deletions

View File

@ -1,14 +1,14 @@
FROM perl:5.34
# Install system dependencies.
RUN apt-get update && apt-get install -y make gcc clang cpanminus dos2unix wamerican
RUN apt-get update && apt-get install -y make gcc clang cpanminus wamerican
# Install pbot and its own dependencies.
# FIXME: Replace nitrix with pragma-.
RUN cd /opt && git clone --recursive https://github.com/nitrix/pbot
RUN cd /opt/pbot && cpanm -n --installdeps . --with-all-features --without-feature=compiler_vm_win32
# Mount point for to persist the bot's data.
# Mount point to persist the bot's data.
RUN mkdir /mnt/persistent
# Just in case files are created in the working directory.

View File

@ -125,7 +125,7 @@ sub wordle($self, $context) {
hostmask => "$botnick!wordle\@localhost",
command => 'wordle',
checkflood => 1,
message => "$context->{nick} started a custom $result";
message => "$context->{nick} started a custom $result",
};
$self->{pbot}->{interpreter}->add_message_to_output_queue($custom_channel, $message, 0);