有人可以帮我找出我的代码有什么问题吗?

Can someone help me find what is wrong with my code?

我正在尝试制作一个秒表命令,当您说 !duty on 然后 !duty off 时,它将计算停止它所花费的时间。它像普通秒表一样工作,但它是为了不和谐。我一直在尝试修复错误一个星期,但我不明白为什么它不起作用请帮助我。错误在第 10 行 id 中显示 message.guild.id

代码:

const Discord = require('discord.js');
const StopWatch = require("timer-stopwatch-dev"); 
const moment = require('moment');

module.exports = {
    name: 'duty',
    description: "This is a stopwatch command",
    async execute(client, message, args, CurrentTimers) {
      try {
          let guildTimers = CurrentTimers.get(message.guild.id);
          let guildTimersUser = guildTimers.get(message.author.id);
          if(!guildTimersUser){ guildTimers.set(message.author.id, new StopWatch()); guildTimersUser = guildTimers.get(message.author.id); };

 if(!args[0] || args[0] === 'on'){
   if(guildTimersUser.isRunning()) return message.channel.send('You need to stop your shift first!')
   guildTimersUser.start();
   message.channel.send('You have started your shift')
 } else if(args[0] === 'off'){
  if(!guildTimersUser.isRunning()) return message.channel.send('You need to start the Stopwatch first!')
  guildTimersUser.stop();
  message.channel.send(new Discord.RichEmbed().setTitle('You have stopped the Stopwatch!').setDescription('Total Time: ' + dhm(guildTimersUser.ms)).setTimestamp());
 }

 }
 
 catch(err) {
   console.log(err)
 }

 function dhm(ms){
  days = Math.floor(ms / (24*60*60*1000));
  daysms=ms % (24*60*60*1000);
  hours = Math.floor((daysms)/(60*60*1000));
  hoursms=ms % (60*60*1000);
  minutes = Math.floor((hoursms)/(60*1000));
  minutesms=ms % (60*1000);
  sec = Math.floor((minutesms)/(1000));
  return days+" days, "+hours+" hours, "+minutes+" minutes, "+sec+" seconds.";
    }
   }
  }

我的主要:

require('dotenv').config();
//create cooldowns map
const cooldowns = new Map();
module.exports = (Discord, client, message) => {
    const prefix = '!';

    if(!message.content.startsWith(prefix) || message.author.bot) return;

    const args = message.content.slice(prefix.length).split(/ +/);
    const cmd = args.shift().toLowerCase();

    const command = client.commands.get(cmd) || 
                    client.commands.find(a => a.aliases && a.aliases.includes(cmd));
    
    if(command){

    //If cooldowns map doesn't have a command.name key then create one.
    if(!cooldowns.has(command.name)){
        cooldowns.set(command.name, new Discord.Collection());
    }

    const current_time = Date.now();
    const time_stamps = cooldowns.get(command.name);
    const cooldown_amount = (command.cooldown) * 1000;

    //If time_stamps has a key with the author's id then check the expiration time to send a message to a user.
    if(time_stamps.has(message.author.id)){
        const expiration_time = time_stamps.get(message.author.id) + cooldown_amount;

        if(current_time < expiration_time){
            const time_left = (expiration_time - current_time) / 1000;

            return message.reply(`Please wait ${time_left.toFixed(1)} more seconds before using ${command.name}`);
        }
    }

    //If the author's id is not in time_stamps then add them with the current time.
    time_stamps.set(message.author.id, current_time);
    //Delete the user's id once the cooldown is over.
    setTimeout(() => time_stamps.delete(message.author.id), cooldown_amount);
    }
    
    try{
        command.execute(message,args, cmd, client, Discord, CurrentTimers);
    } catch (err){
        message.reply("There was an error trying to execute this command!");
        console.log(err);
    }

}

您没有显示实际错误,但我怀疑它类似于 Cannot read property 'id' of undefined。解决这个问题的方法是确保两件事:

  1. 确保消息不在 DM 中
  2. 确保您的执行参数传递正确。
command.execute(client, message, args, CurrentTimers)
//these may not be the same variable names, but make sure the values are correct