Most useless update

This commit is contained in:
histmy 2021-03-17 23:03:02 +01:00
parent 64806629e2
commit f868686256

View File

@ -69,28 +69,28 @@ module.exports = {
case 'nazor': case 'nazor':
case 'názor': case 'názor':
mes.channel.send([`mam rad ${celArgs}`, `${celArgs} je picovina`][rand(2)]); mes.channel.send(rand(2) ? `mam rad ${celArgs}` : `${celArgs} je picovina`);
break; break;
case 'si': case 'si':
case 'jsi': case 'jsi':
corict = celArgs.replace('?', ''); corict = celArgs.replace('?', '');
mes.channel.send([`jo sem ${corict}`, `ne nejsem ${corict}`][rand(2)]); mes.channel.send(rand(2) ? `jo sem ${corict}` : `ne nejsem ${corict}`);
break; break;
case 'mas': case 'mas':
case 'máš': case 'máš':
corict = celArgs.replace('?', ''); corict = celArgs.replace('?', '');
mes.channel.send([`jo mam ${corict}`, `ne nemam ${corict}`][rand(2)]); mes.channel.send(rand(2) ? `jo mam ${corict}` : `ne nemam ${corict}`);
break; break;
case 'je': case 'je':
mes.channel.send(['jo je', 'ne neni'][rand(2)]); mes.channel.send(rand(2) ? 'jo je' : 'ne neni');
break; break;
case 'má': case 'má':
case 'ma': case 'ma':
mes.channel.send(['jo ma', 'ne nema'][rand(2)]); mes.channel.send(rand(2) ? 'jo ma' : 'ne nema');
break; break;
case 'jakmoc': case 'jakmoc':