la-cosa-nostra
Version:
A Mafia bot designed to run in Discord - beware the traitors and the lies!
24 lines (16 loc) • 653 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;
};
var game = process.timer.game;
if (!game.isDay()) {
await message.channel.send(":x: You may only recreate a trial during the day.");
return null;
};
// Do not load pre-emptives
game.createTrialVote(false);
game.clearTrialVoteCollectors();
game.getPeriodLog().voting_halted = false;
await message.channel.send(":ok: Trial vote recreated. Please ensure that reaction votes are functional.");
};