-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add join/leave data #205
Add join/leave data #205
Conversation
…nt to promise; fix: changed accidental double output on player join to single output
Okay, now that we're here, please note the following for the future:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems overall okay - although didn't really look through the meat of commits. Don't see why this should be on main branch however.
@@ -22,19 +22,19 @@ | |||
"dependencies": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please only update dependencies if strictly necessary - it tends to break things and be more trouble than it's worth.
Dependabot alerts are disabled in GH but still seem to be happening. Will look into that.
@@ -0,0 +1,8 @@ | |||
[ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Refrain from committing idiosyncratic files to git. Add files to the .gitignore
as appropriate. Also please move this to a more appropriate location, not the root folder.
logErrors: true, | ||
hideErrors: true, | ||
checkTimeoutInterval: 30000, | ||
defaultChatPatterns: false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why have you removed this config option? This option is present to prevent listeners from being created unnecessarily - we do not use the defaults. See here.
@@ -34,11 +34,10 @@ class Bot { | |||
password: process.env.MINECRAFT_PASSWORD, | |||
host: "mc.hypixel.net", | |||
auth: "microsoft", | |||
version: "1.16.4", | |||
version: "1.8.9", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why have you changed the version? AFAIK, this only reduces our chat character limit from 256 -> 100 (changed in 1.12)
No description provided.