mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-26 06:42:50 +02:00
Change Variable Names, Remove Useless Commands
This commit is contained in:
@@ -15,7 +15,7 @@ module.exports = class QuantumCoinCommand extends Command {
|
||||
}
|
||||
|
||||
run(message) {
|
||||
const qcoin = sides[Math.floor(Math.random() * sides.length)];
|
||||
return message.say(`It landed ${qcoin}.`);
|
||||
const side = sides[Math.floor(Math.random() * sides.length)];
|
||||
return message.say(`It landed ${side}.`);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user