将人们转移到语音频道
Moving people to voice channels
我似乎遇到了这个奇怪的错误,我不知道如何解决它。
await userName.ModifyAsync(x =>
{
x.Channel = Program.client.GetChannel(588025239103995904) as IVoiceChannel;
});
Cannot implicitly convert type Discord.IVoiceChannel
to Discord.Optional<Discord.IVoiceChannel>
创建 Optional<T>
:
await user.ModifyAsync(x =>
{
var voiceChannel = Program.client.GetChannel(588025239103995904) as IVoiceChannel;
x.Channel = Optional.Create(voiceChannel);
});
我似乎遇到了这个奇怪的错误,我不知道如何解决它。
await userName.ModifyAsync(x =>
{
x.Channel = Program.client.GetChannel(588025239103995904) as IVoiceChannel;
});
Cannot implicitly convert type
Discord.IVoiceChannel
toDiscord.Optional<Discord.IVoiceChannel>
创建 Optional<T>
:
await user.ModifyAsync(x =>
{
var voiceChannel = Program.client.GetChannel(588025239103995904) as IVoiceChannel;
x.Channel = Optional.Create(voiceChannel);
});