Formatting of Heads or Tails

This commit is contained in:
Marcus Netz
2020-11-24 21:57:49 +01:00
parent 8ec58dc59f
commit e17476db21

View File

@ -1,5 +1,5 @@
const globals = require('../globals'); const globals = require('../globals');
module.exports = async (message, args, db) => { module.exports = async (message, args, db) => {
const coin = Math.floor(Math.random() * 2); const coin = Math.floor(Math.random() * 2);
message.reply('Folgende Seite hat der Münzwurf ergeben: ' + globals.Coin[coin] + '.'); message.reply('Die Münze bleibt auf **' + globals.Coin[coin] + '** liegen.');
}; };