Skip to content

Commit 6ebe244

Browse files
committed
Bug fix & READ.ME change
1 parent 4a2d20a commit 6ebe244

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,21 @@ pm2 start index.js --name NAMEOFBRIDGE-BridgeBot
9393
If we make a update to the code, you will have to update the code manually for each bridge bot, to do this you can use the commands below **for each individual bridge bot**.
9494

9595
```sh
96+
97+
npm update --save
98+
9699
cd bridges/bridgebots/<NAME_OF_GUILD>-Bridgebot/Hypixel-Chat-Bot/
97100

98101
git pull
99102

100103
pm2 restart NAMEOFBRIDGE-BridgeBot
101104
```
102105

106+
## How To Fix A Bridge Bot
107+
If you are having trouble with your bridge bot, you should try updating it with the "How To Update A Bridge Bot" instructions above.
108+
109+
If the bot is still not working, feel free to join our discord linked at the top of this page and open a support ticket!
110+
103111

104112
## Change Log
105113
### March 19th:

src/minecraft/handlers/StateHandler.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ class StateHandler extends EventHandler {
2020
onLogin() {
2121
this.minecraft.app.log.minecraft('Client ready, logged in as ' + this.bot.username)
2222

23-
console.log(this.bot.chatPatterns);
24-
this.bot.chatPatterns.pop();
25-
this.bot.chatPatterns.pop();
26-
this.bot.chatPatterns.pop();
23+
// console.log(this.bot.chatPatterns);
24+
// this.bot.chatPatterns.pop();
25+
// this.bot.chatPatterns.pop();
26+
// this.bot.chatPatterns.pop();
2727

2828
this.loginAttempts = 0
2929
this.exactDelay = 0

0 commit comments

Comments
 (0)