mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 18:54:55 -05:00
remove the :* in vmoptions
This commit is contained in:
parent
32bbbb08d5
commit
eaff0ef132
1 changed files with 12 additions and 12 deletions
24
index.js
24
index.js
|
@ -268,23 +268,23 @@ function main() {
|
||||||
run: function(cmd) {
|
run: function(cmd) {
|
||||||
bot.core.run(cmd);
|
bot.core.run(cmd);
|
||||||
},
|
},
|
||||||
mc: mc,
|
mc,
|
||||||
mineflayer: mineflayer,
|
mineflayer,
|
||||||
chat: bot.chat,
|
chat: bot.chat,
|
||||||
moment: moment,
|
moment,
|
||||||
randomstring: randomstring,
|
randomstring,
|
||||||
uuid: uuid,
|
uuid,
|
||||||
chatMessage: chatMessage,
|
chatMessage,
|
||||||
crypto: crypto,
|
crypto,
|
||||||
colorConvert: colorConvert,
|
colorConvert,
|
||||||
bruhifyText: function(message) {
|
bruhifyText: function(message) {
|
||||||
if (typeof message!=='string') throw new SyntaxError('message must be a string');
|
if (typeof message!=='string') throw new SyntaxError('message must be a string');
|
||||||
bot.bruhifyText = message.substring(0, 1000);
|
bot.bruhifyText = message.substring(0, 1000);
|
||||||
},
|
},
|
||||||
generateEaglerUsername: generateEaglerUsername,
|
generateEaglerUsername,
|
||||||
cowsay: cowsay,
|
cowsay,
|
||||||
cows: cows,
|
cows,
|
||||||
mcData: mcData,
|
mcData,
|
||||||
},
|
},
|
||||||
// require: {
|
// require: {
|
||||||
// mock: {
|
// mock: {
|
||||||
|
|
Loading…
Reference in a new issue