Skip to content

Commit

Permalink
Merge branch 'bork-fixes' into org-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Borketh committed Sep 11, 2024
2 parents 0661a5a + 84536cc commit 31f7995
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM python:3.12-alpine AS runtime
VOLUME /config
WORKDIR /app

RUN apk update; apk add --no-cache tesseract-ocr-data-eng re2
RUN apk update; apk add --no-cache tesseract-ocr-data-eng re2-dev
#ENV DEBIAN_FRONTEND=noninteractive APT="apt-get -qq"
#RUN $APT update; \
# $APT install tesseract-ocr; \
Expand Down
2 changes: 1 addition & 1 deletion fred/cogs/crashes.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ async def process_message(self, message: Message) -> bool:

if there_were_files:
self.logger.info("Removing reaction")
await message.remove_reaction("👀", self.bot.user)
await message.remove_reaction(EMOJI_CRASHES_ANALYZING, self.bot.user)

if filtered_responses := list(set(responses)): # remove dupes

Expand Down
2 changes: 1 addition & 1 deletion fred/fred.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from .fred_commands import Commands, FredHelpEmbed
from .libraries import createembed, common

__version__ = "2.22.3"
__version__ = "2.22.4"


class Bot(commands.Bot):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fred"
version = "2.22.3"
version = "2.22.4"
description = "A Discord bot for the Satisfactory Modding Discord "
authors = ["Feyko <[email protected]>", "Mircea Roata <[email protected]>", "Borketh <[email protected]>"]
license = "MIT License"
Expand Down

0 comments on commit 31f7995

Please sign in to comment.