Skip to content

Commit

Permalink
Fix event enabled check
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPowerGamerBR committed Oct 30, 2024
1 parent 2fdb22b commit ecf7f15
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class EventCommand(val loritta: LorittaBot) : SlashCommandDeclarationWrapper {
?.get(ReactionEventsConfigs.enabled) ?: true
}

if (eventsEnabled) {
if (!eventsEnabled) {
context.reply(true) {
styled(
"A equipe do servidor atual desativou meus eventos neste servidor! Para entrar no evento, vá em outro servidor que os meus eventos estejam ativados.",
Expand Down Expand Up @@ -187,7 +187,7 @@ class EventCommand(val loritta: LorittaBot) : SlashCommandDeclarationWrapper {
?.get(ReactionEventsConfigs.enabled) ?: true
}

if (eventsEnabled) {
if (!eventsEnabled) {
context.reply(true) {
styled(
"A equipe do servidor atual desativou meus eventos neste servidor! Para ver as suas estatísticas do evento, vá em outro servidor que os meus eventos estejam ativados.",
Expand Down Expand Up @@ -328,7 +328,7 @@ class EventCommand(val loritta: LorittaBot) : SlashCommandDeclarationWrapper {
?.get(ReactionEventsConfigs.enabled) ?: true
}

if (eventsEnabled) {
if (!eventsEnabled) {
context.reply(true) {
styled(
"A equipe do servidor atual desativou meus eventos neste servidor! Para ver o seu inventário do evento, vá em outro servidor que os meus eventos estejam ativados.",
Expand Down

0 comments on commit ecf7f15

Please sign in to comment.