Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.

Commit e3befa9

Browse files
committed
Fix reactions xp
1 parent 985ac84 commit e3befa9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/fr/jielos/playzefamilybot/client/guilds/levels/LevelsController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ private CompletableFuture<Boolean> checkReactionValidity(@NotNull MessageReactio
262262
return channel.retrieveMessageById(messageReaction.getMessageId()).submit()
263263
.thenApply(message -> {
264264
if(message.getMentions().mentionsEveryone()) return true;
265-
if(message.getAuthor().isBot() && message.getInteraction() == null && message.getType() == MessageType.INLINE_REPLY) return true;
265+
if(message.getAuthor().isBot()) return true;
266266

267267
return false;
268268
});

0 commit comments

Comments
 (0)