我正在制作一个对特定对象有反应的机器人,它将创建一个频道... 一切正常,我希望在创建具有特定起点的通道时能发布一个想法。
client.on('channelCreate', (channel, message) => {
if(channel.name.startsWith('ticket-')){
message.channel.send('test');
});
我没有收到任何错误,什么也没有...
答案 0 :(得分:0)
您不能在 @Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(ViewPumpContextWrapper.wrap(Restring.wrapContext(newBase)));
}
@Override
public Resources getResources() {
return Restring.wrapContext(getBaseContext()).getResources();
}
事件中使用message
变量。您唯一收到的是一个channelCreate
对象,因此您需要使用channel
:
channel.send()