Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/commands/duel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import {
} from '../utils/CommandUtils.js'
import { shuffleArray } from '../utils/Helpers.js'

export const DUEL_COOLDOWN = 10 * 10 * 1000 // Cooldown period after loss in milliseconds
const GLOBAL_DUEL_TIMEOUT_DURATION = 5 * 10 * 1000
export const DUEL_COOLDOWN = 10 * 60 * 1000 // Cooldown period after loss in milliseconds
const GLOBAL_DUEL_TIMEOUT_DURATION = 5 * 60 * 1000
const NAMED_DUEL_TIMEOUT_DURATION = 1 * 60 * 1000
const DRAW_TIMEOUT_DURATION = 10 * 60 * 1000

Expand Down Expand Up @@ -115,7 +115,7 @@ class Duel {

timeoutDuration = NAMED_DUEL_TIMEOUT_DURATION
content = `${wagerMsg}${challenger} is looking for a duel against ${wantedAccepter}, press the button to accept.`
failedDuelContent = `${wagerMsg}${wantedAccepter} failed accept ${challenger}'s duel.`
failedDuelContent = `${wagerMsg}${wantedAccepter} failed to accept ${challenger}'s duel.`
}

// Are we on global CD?
Expand Down