Skip to content

Commit

Permalink
nemuiコマンドを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
irumaru committed Oct 12, 2023
1 parent 43038a8 commit 6d130cd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions python/pantyetta.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,9 @@ async def gomi(interaction: discord.Interaction, private:bool=True):
await interaction.response.send_message(embed=embed, ephemeral=private)

@tree.command(name="masa",description="descriptioin")
async def pantyetta(interaction: discord.Interaction, private:bool=False):
await interaction.response.send_message("バーニングレッド",ephemeral=private)#ephemeral=True→「これらはあなただけに表示されています」
async def masa(interaction: discord.Interaction, private:bool=False):
await interaction.response.send_message("バーニングレッド",ephemeral=private)#ephemeral=True→「これらはあなただけに表示されています」

@tree.command(name="nemui",description="descriptioin")
async def nemui(interaction: discord.Interaction, private:bool=False):
await interaction.response.send_message("おやすみー",ephemeral=private)#ephemeral=True→「これらはあなただけに表示されています」

0 comments on commit 6d130cd

Please sign in to comment.