la-cosa-nostra
Version:
A Mafia bot designed to run in Discord - beware the traitors and the lies!
12 lines (8 loc) • 326 B
JavaScript
module.exports = async function (message, params, config) {
if (!process.timer || !["pre-game", "playing"].includes(process.timer.game.state)) {
await message.channel.send(":x: No game in progress.");
return null;
};
await message.channel.send(":ok: Setting a step in the Timer.");
process.timer.step();
};