Skip to content

Commit

Permalink
Disable the buzzword bingo buttons for now
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Oct 1, 2024
1 parent 941aab7 commit b8e7062
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sources/D2Commands/Fun/BuzzwordBingoCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ public class BuzzwordBingoCommand: StringCommand {
try .actionRow(.init(components: (0..<cols).map { _ in try generator.primitiveWord() }.map { word in
.button(.init(
customId: "buzzwordbingo:\(word)",
label: convertToFixedWidth(word)
label: convertToFixedWidth(word),
disabled: true // TODO: Make the buttons interactive
))
}))
}))
Expand Down

0 comments on commit b8e7062

Please sign in to comment.