Lint
This commit is contained in:
parent
9847623b25
commit
bfe1111e29
14 changed files with 44 additions and 44 deletions
|
@ -255,8 +255,8 @@ const displayServerList = function (c) {
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
execute: function (c) {
|
execute: function (c) {
|
||||||
let subcmd;
|
let subcmd
|
||||||
if(c.args.length>=1) subcmd = c.args[0].toLowerCase();
|
if (c.args.length >= 1) subcmd = c.args[0].toLowerCase()
|
||||||
if (subcmd === 'servers') subcmd = 'serverlist'
|
if (subcmd === 'servers') subcmd = 'serverlist'
|
||||||
if (c.cmdName.toLowerCase() === 'serverinfo' || c.cmdName.toLowerCase() === 'specs') subcmd = 'server'
|
if (c.cmdName.toLowerCase() === 'serverinfo' || c.cmdName.toLowerCase() === 'specs') subcmd = 'server'
|
||||||
if (c.cmdName.toLowerCase() === 'serverlist' || c.cmdName.toLowerCase() === 'servers') subcmd = 'serverlist'
|
if (c.cmdName.toLowerCase() === 'serverlist' || c.cmdName.toLowerCase() === 'servers') subcmd = 'serverlist'
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
const { getMessage } = require('../util/lang.js')
|
const { getMessage } = require('../util/lang.js')
|
||||||
module.exports = {
|
module.exports = {
|
||||||
execute: (c) => {
|
execute: (c) => {
|
||||||
let subcmd;
|
let subcmd
|
||||||
if(c.args.length>=1) subcmd = c.args.splice(0, 1)[0].toLowerCase();
|
if (c.args.length >= 1) subcmd = c.args.splice(0, 1)[0].toLowerCase()
|
||||||
switch (subcmd) {
|
switch (subcmd) {
|
||||||
case 'add': {
|
case 'add': {
|
||||||
const rate = +(c.args.splice(0, 1)[0])
|
const rate = +(c.args.splice(0, 1)[0])
|
||||||
|
|
|
@ -2,21 +2,21 @@ const index = require('../index.js') // Not used in the code, but may be used by
|
||||||
const { getMessage } = require('../util/lang.js')
|
const { getMessage } = require('../util/lang.js')
|
||||||
module.exports = {
|
module.exports = {
|
||||||
execute: (c) => {
|
execute: (c) => {
|
||||||
const item = eval(c.args.join(' '));
|
const item = eval(c.args.join(' '))
|
||||||
c.reply({
|
c.reply({
|
||||||
translate: '%s: %s',
|
translate: '%s: %s',
|
||||||
color: c.colors.primary,
|
color: c.colors.primary,
|
||||||
with: [
|
with: [
|
||||||
{
|
{
|
||||||
text: getMessage(c.lang, `command.eval.output`),
|
text: getMessage(c.lang, 'command.eval.output'),
|
||||||
color: c.colors.secondary
|
color: c.colors.secondary
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: item + "",
|
text: item + '',
|
||||||
color: c.colors.primary,
|
color: c.colors.primary,
|
||||||
clickEvent: {
|
clickEvent: {
|
||||||
action: 'copy_to_clipboard',
|
action: 'copy_to_clipboard',
|
||||||
value: item + ""
|
value: item + ''
|
||||||
},
|
},
|
||||||
hoverEvent: {
|
hoverEvent: {
|
||||||
action: 'show_text',
|
action: 'show_text',
|
||||||
|
|
|
@ -65,8 +65,8 @@ const printHelp = (c) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const printCmdHelp = (c) => {
|
const printCmdHelp = (c) => {
|
||||||
let cmd;
|
let cmd
|
||||||
if(c.args.length>=1) cmd = c.args[0].toLowerCase();
|
if (c.args.length >= 1) cmd = c.args[0].toLowerCase()
|
||||||
if (!cmds[cmd] || (cmds[cmd].hidden && c.type !== 'console')) {
|
if (!cmds[cmd] || (cmds[cmd].hidden && c.type !== 'console')) {
|
||||||
c.reply({ text: getMessage(c.lang, 'command.help.noCommand') })
|
c.reply({ text: getMessage(c.lang, 'command.help.noCommand') })
|
||||||
return
|
return
|
||||||
|
|
|
@ -17,8 +17,8 @@ module.exports = {
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
let subcmd;
|
let subcmd
|
||||||
if(c.args.length>=1) subcmd = c.args.splice(0, 1)[0].toLowerCase();
|
if (c.args.length >= 1) subcmd = c.args.splice(0, 1)[0].toLowerCase()
|
||||||
switch (subcmd) {
|
switch (subcmd) {
|
||||||
case 'set':{
|
case 'set':{
|
||||||
const allowedKeys = ['colorPrimary', 'colorSecondary', 'lang']
|
const allowedKeys = ['colorPrimary', 'colorSecondary', 'lang']
|
||||||
|
|
|
@ -117,7 +117,7 @@ module.exports = {
|
||||||
|
|
||||||
b._client.on('system_chat', (data) => {
|
b._client.on('system_chat', (data) => {
|
||||||
const json = parse1204(data.content)
|
const json = parse1204(data.content)
|
||||||
if(json.translate == '%s %s › %s'){ // ChipmunkMod format
|
if (json.translate === '%s %s › %s') { // ChipmunkMod format
|
||||||
if (json.with && json.with[1] && json.with[2]) {
|
if (json.with && json.with[1] && json.with[2]) {
|
||||||
const username = parsePlain(json.with[1])
|
const username = parsePlain(json.with[1])
|
||||||
const uuid = b.findUUID(username)
|
const uuid = b.findUUID(username)
|
||||||
|
@ -135,13 +135,13 @@ module.exports = {
|
||||||
b.emit('chat', {
|
b.emit('chat', {
|
||||||
json,
|
json,
|
||||||
type: 'system',
|
type: 'system',
|
||||||
uuid: "00000000-0000-0000-0000-000000000000",
|
uuid: '00000000-0000-0000-0000-000000000000',
|
||||||
message: "",
|
message: '',
|
||||||
nickname: "",
|
nickname: '',
|
||||||
username: ""
|
username: ''
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
} else if(json.extra && json.extra[4] && json.extra[3] && json.extra[5] && json.extra[4].text == ' » '){ // ChipmunkMod format - m_c_player
|
} else if (json.extra && json.extra[4] && json.extra[3] && json.extra[5] && json.extra[4].text === ' » ') { // ChipmunkMod format - m_c_player
|
||||||
const username = parsePlain(json.extra[3])
|
const username = parsePlain(json.extra[3])
|
||||||
const uuid = b.findUUID(username)
|
const uuid = b.findUUID(username)
|
||||||
const nickname = b.findDisplayName(uuid)
|
const nickname = b.findDisplayName(uuid)
|
||||||
|
@ -181,14 +181,14 @@ module.exports = {
|
||||||
let username
|
let username
|
||||||
let message
|
let message
|
||||||
let uuid
|
let uuid
|
||||||
if(json.translate == '%s %s › %s'){ // ChipmunkMod format
|
if (json.translate === '%s %s › %s') { // ChipmunkMod format
|
||||||
if (json.with && json.with[1] && json.with[2]) {
|
if (json.with && json.with[1] && json.with[2]) {
|
||||||
username = parsePlain(json.with[1])
|
username = parsePlain(json.with[1])
|
||||||
uuid = b.findUUID(username)
|
uuid = b.findUUID(username)
|
||||||
nickname = b.findDisplayName(uuid)
|
nickname = b.findDisplayName(uuid)
|
||||||
message = parsePlain(json.with[2].extra)
|
message = parsePlain(json.with[2].extra)
|
||||||
}
|
}
|
||||||
} else if(json.extra && json.extra[4] && json.extra[3] && json.extra[5] && json.extra[4].text == ' » '){ // ChipmunkMod format - m_c_player
|
} else if (json.extra && json.extra[4] && json.extra[3] && json.extra[5] && json.extra[4].text === ' » ') { // ChipmunkMod format - m_c_player
|
||||||
username = parsePlain(json.extra[3])
|
username = parsePlain(json.extra[3])
|
||||||
uuid = b.findUUID(username)
|
uuid = b.findUUID(username)
|
||||||
nickname = b.findDisplayName(uuid)
|
nickname = b.findDisplayName(uuid)
|
||||||
|
|
|
@ -37,8 +37,8 @@ module.exports = {
|
||||||
b.lastCmd = Date.now()
|
b.lastCmd = Date.now()
|
||||||
const lang = settings.defaultLang
|
const lang = settings.defaultLang
|
||||||
|
|
||||||
const commandClass = new Command(uuid, name, nickname, text, msgType, prefix, b, userSettings);
|
const commandClass = new Command(uuid, name, nickname, text, msgType, prefix, b, userSettings)
|
||||||
b.emit("command",commandClass)
|
b.emit('command', commandClass)
|
||||||
if (commandClass.cancel === true) return
|
if (commandClass.cancel === true) return
|
||||||
|
|
||||||
if (cmds[commandClass.cmdName.toLowerCase()]) {
|
if (cmds[commandClass.cmdName.toLowerCase()]) {
|
||||||
|
|
|
@ -114,7 +114,7 @@ module.exports = {
|
||||||
let finalname = ''
|
let finalname = ''
|
||||||
if (b.host.options.useChat) {
|
if (b.host.options.useChat) {
|
||||||
if (b.host.options.useAmpersandColorCodes) {
|
if (b.host.options.useAmpersandColorCodes) {
|
||||||
b.chat(mcParser(message).replaceAll("§", "&"))
|
b.chat(mcParser(message).replaceAll('§', '&'))
|
||||||
} else {
|
} else {
|
||||||
b.chat(plainParser(message))
|
b.chat(plainParser(message))
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ const hashcheck = require('../util/hashcheck.js')
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
load: (b) => {
|
load: (b) => {
|
||||||
b.on("command", c => {
|
b.on('command', c => {
|
||||||
const cmd = c.command.split(' ')
|
const cmd = c.command.split(' ')
|
||||||
const command = cmds[c.cmdName.toLowerCase()]
|
const command = cmds[c.cmdName.toLowerCase()]
|
||||||
const verify = hashcheck(cmd, c.uuid)
|
const verify = hashcheck(cmd, c.uuid)
|
||||||
|
@ -24,7 +24,7 @@ module.exports = {
|
||||||
c.cancel = true
|
c.cancel = true
|
||||||
} else if (verify > 0) {
|
} else if (verify > 0) {
|
||||||
c.rewriteCommand(cmd.slice(0, cmd.length - 1).join(' '))
|
c.rewriteCommand(cmd.slice(0, cmd.length - 1).join(' '))
|
||||||
c.verify = verify;
|
c.verify = verify
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,7 +18,7 @@ class Command {
|
||||||
this.port = bot.host.port
|
this.port = bot.host.port
|
||||||
this.serverName = bot.host.options.name
|
this.serverName = bot.host.options.name
|
||||||
this.prefs = prefs
|
this.prefs = prefs
|
||||||
this.cancel = false;
|
this.cancel = false
|
||||||
if (prefs.lang) {
|
if (prefs.lang) {
|
||||||
this.lang = prefs.lang
|
this.lang = prefs.lang
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
const index = require('../index.js')
|
const index = require('../index.js')
|
||||||
const parse = require('../util/chatparse_console.js')
|
const parse = require('../util/chatparse_console.js')
|
||||||
const settings = require('../settings.json')
|
const settings = require('../settings.json')
|
||||||
const version = require("../version.json")
|
const version = require('../version.json')
|
||||||
class ConsoleCommand {
|
class ConsoleCommand {
|
||||||
constructor (cmd, index2) {
|
constructor (cmd, index2) {
|
||||||
this.send = () => {}
|
this.send = () => {}
|
||||||
|
@ -22,7 +22,7 @@ class ConsoleCommand {
|
||||||
this.host = ''
|
this.host = ''
|
||||||
this.port = '3'
|
this.port = '3'
|
||||||
this.serverName = `${version.botName} Console`
|
this.serverName = `${version.botName} Console`
|
||||||
this.cancel = false;
|
this.cancel = false
|
||||||
this.lang = settings.defaultLang
|
this.lang = settings.defaultLang
|
||||||
this.colors = settings.colors
|
this.colors = settings.colors
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
const mcd=require("minecraft-data")
|
const mcd = require('minecraft-data')
|
||||||
module.exports = function (ver) {
|
module.exports = function (ver) {
|
||||||
return mcd.versionsByMinecraftVersion.pc[ver].version
|
return mcd.versionsByMinecraftVersion.pc[ver].version
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue