Codex commited on
Commit ·
6a0d361
1
Parent(s): 84c1610
Make stats commands public
Browse files- src/index.js +0 -3
src/index.js
CHANGED
|
@@ -276,7 +276,6 @@ async function handleRoi(interaction, store) {
|
|
| 276 |
await interaction.reply({
|
| 277 |
embeds: [embed],
|
| 278 |
files: [chart],
|
| 279 |
-
flags: MessageFlags.Ephemeral,
|
| 280 |
});
|
| 281 |
}
|
| 282 |
|
|
@@ -286,7 +285,6 @@ async function handleBets(interaction, store) {
|
|
| 286 |
|
| 287 |
await interaction.reply({
|
| 288 |
embeds: [buildBetsEmbed(summary, bets)],
|
| 289 |
-
flags: MessageFlags.Ephemeral,
|
| 290 |
});
|
| 291 |
}
|
| 292 |
|
|
@@ -301,7 +299,6 @@ async function handleSummary(interaction, store) {
|
|
| 301 |
await interaction.reply({
|
| 302 |
embeds: [embed],
|
| 303 |
files: [chart],
|
| 304 |
-
flags: MessageFlags.Ephemeral,
|
| 305 |
});
|
| 306 |
}
|
| 307 |
|
|
|
|
| 276 |
await interaction.reply({
|
| 277 |
embeds: [embed],
|
| 278 |
files: [chart],
|
|
|
|
| 279 |
});
|
| 280 |
}
|
| 281 |
|
|
|
|
| 285 |
|
| 286 |
await interaction.reply({
|
| 287 |
embeds: [buildBetsEmbed(summary, bets)],
|
|
|
|
| 288 |
});
|
| 289 |
}
|
| 290 |
|
|
|
|
| 299 |
await interaction.reply({
|
| 300 |
embeds: [embed],
|
| 301 |
files: [chart],
|
|
|
|
| 302 |
});
|
| 303 |
}
|
| 304 |
|