回答編集履歴

1

typoを修正しました。申し訳ございません。

2020/06/07 11:44

投稿

daima3629
daima3629

スコア163

test CHANGED
@@ -1,4 +1,4 @@
1
- [discord.Guild](https://discordpy.readthedocs.io/ja/latest/api.html#discord.Guild)オブジェクトには[create_textchannel](https://discordpy.readthedocs.io/ja/latest/api.html#discord.Guild.create_text_channel)というコルーチン関数があります。
1
+ [discord.Guild](https://discordpy.readthedocs.io/ja/latest/api.html#discord.Guild)オブジェクトには[create_text_channel](https://discordpy.readthedocs.io/ja/latest/api.html#discord.Guild.create_text_channel)というコルーチン関数があります。
2
2
 
3
3
  これの引数に作りたいテキストチャンネルの名前を渡すとカテゴリー属性のない(カテゴリーの中にない)チャンネルを作ることができます。
4
4
 
@@ -12,7 +12,7 @@
12
12
 
13
13
  guild = client.get_guild(1234567890)
14
14
 
15
- channel = await guild.create_textchannel("test-channel")
15
+ channel = await guild.create_text_channel("test-channel")
16
16
 
17
17
  await channel.send("チャンネルを作ったよ!")
18
18