Skip to content

Commit

Permalink
BETA VERSON 0.67.3 (#1825)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mittelblut9 authored Dec 23, 2023
2 parents 4acef6f + 85aeef6 commit 3f99041
Show file tree
Hide file tree
Showing 4 changed files with 324 additions and 1,699 deletions.
2 changes: 1 addition & 1 deletion bot/events/messageDelete.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const Auditlog = require('~utils/classes/Auditlog');
const { messageDeleteReasons } = require('~assets/js/messageDeleteReasons');

module.exports.messageDelete = async (bot, message) => {
if (!message.author) return;
if (!message.author || !message.guild) return;
const auditLog = new Auditlog();
const isEnabled = await auditLog.checkEnabledEvents(message.guild.id, 'message_delete');
if (!isEnabled) return;
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ services:

mysql:
container_name: mittelbot-mysql
image: mysql:5.7
image: mysql:8.2
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=mittelbot
Expand Down
Loading

0 comments on commit 3f99041

Please sign in to comment.