mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-13 18:34:54 -05:00
10 lines
326 B
JavaScript
10 lines
326 B
JavaScript
module.exports = {
|
|
name: 'gamemodeall',
|
|
alias: [],
|
|
description: 'Gamemodes everyone (kinda useless now, used to be useful)',
|
|
usage: '<hash> <gamemode>',
|
|
trusted: 1,
|
|
execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
|
|
bot.core.run(`minecraft:gamemode ${args.join(' ')} @a`)
|
|
}
|
|
}
|