-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 1.16.5 support and future-proof version system (#645)
* 1.16.5 players can now join * oops forgot abot this * sign block doesn't exists, only oak_sign * Add 1.16.5 to version.js * refactor: oops remove this console.log * fix: loginPacket may be null * Revert unneccesary example change * Remove another out of scope change * Update version list to include more recent and remove redundant * Supported versions should be explicit * Explicit support versions * Detailed feature data * Use previous supportFeature data * Remove bad newline * Test suite runs again (not sure if it passes) * Add newer versions to feature data * Fix duplicate item place handlers * Fix another duplicate registration bug * Remove non-1.16 versions * Fix wrong block bug * Empty commit to re-trigger CI * Hopefully this fixes the issue with the failing tests * Standard JS * Fixed placeBlock * A few logic fixes * Slight logic improvement * Update mineflayer to latest * Small bug I found * Another stupid bug fixed * Why the heck should *that* be necessary? * Update supportFeature stuff * Use mineflayer version system * Couple support fixes * Remove dumpCodec and move to 1.16.5 * Lint, begone! * Use updated node-minecraft-data * Use actual mineflayer version support logic * I'm stupid lol * Eliminate serv.supportFeature * Remove minecraft-data package * Typos * Fix a couple lint issues * Linter is happy now --------- Co-authored-by: ThallesP <[email protected]> Co-authored-by: Gavin John <> Co-authored-by: Romain Beaumont <[email protected]>
- Loading branch information
1 parent
98fc454
commit f776de8
Showing
40 changed files
with
341 additions
and
728 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,5 +25,5 @@ | |
}, | ||
"everybody-op": false, | ||
"max-entities":100, | ||
"version": "1.16.1" | ||
"version": "1.16.5" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,5 +27,5 @@ mcServer.createMCServer({ | |
}, | ||
'everybody-op': true, | ||
'max-entities': 100, | ||
version: '1.16.1' | ||
version: '1.16.5' | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.