From adfbefb427a579081f24fdd737ba7559f2ebf7ac Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 13 Apr 2024 01:08:09 -0400 Subject: [PATCH] Fix --- commands/games-mp/lie-swatter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-mp/lie-swatter.js b/commands/games-mp/lie-swatter.js index 2d6b3f9c..7c284149 100644 --- a/commands/games-mp/lie-swatter.js +++ b/commands/games-mp/lie-swatter.js @@ -67,7 +67,7 @@ module.exports = class LieSwatterCommand extends Command { let choices; try { choices = await msg.channel.awaitMessageComponent({ - filter: res => awaitedPlayers.includes(res.author.id), + filter: res => awaitedPlayers.includes(res.user.id), max: pts.size, time: 30000 });