Skip to content

Commit 2e42d48

Browse files
committedJun 18, 2022
update README
1 parent 4d8ce16 commit 2e42d48

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed
 

‎README.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ Click [here](https://labystudio.de/page/minecraft/) for a demo!
5858
- Controls Screen
5959
- Chat Input Screen
6060
- Creative Inventory Screen
61+
- Direct Connect Screen
62+
- Connecting Screen
63+
- Disconnected Screen
6164
- Widgets
6265
- Button
6366
- KeyBinding
@@ -69,6 +72,15 @@ Click [here](https://labystudio.de/page/minecraft/) for a demo!
6972
- Font rendering
7073
- Hot-Bar
7174
- Chat
75+
- Debug
76+
- Multiplayer
77+
- Networking
78+
- Sub-Protocols
79+
- Handshake
80+
- Status
81+
- Login
82+
- RSA Encryption
83+
- AES Encryption
7284
- Commands
7385
- /help
7486
- /time
@@ -88,8 +100,11 @@ _Note: All textures from the original game were used for the screenshots only!_
88100
### Licensing
89101
- The main rendering library is [three.js](https://github.com/mrdoob/three.js/)
90102
- 64 bits number implementation by [long.js](https://github.com/dcodeIO/long.js)
103+
- AES encryption implemented by [aes-js](https://github.com/ricmoo/aes-js)
104+
- BigInt extension for RSA encryption by [bigint-mod-arith](https://github.com/juanelas/bigint-mod-arith)
105+
- Public key parser implemented by [asn1-parser.js](https://git.coolaj86.com/coolaj86/asn1-parser.js)
106+
- Minecraft chat component parser by [mc-chat-format](https://github.com/janispritzkau/mc-chat-format)
91107
- All used sound resources are taken from [freesounds.org](https://freesound.org/people/C418/downloaded_sounds/?page=8#sound)
92-
93108
<hr>
94109

95110
NOT OFFICIAL MINECRAFT PRODUCT. NOT APPROVED BY OR ASSOCIATED WITH MOJANG.

‎libraries/aes.js

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/*! MIT License. Copyright 2015-2018 Richard Moore <me@ricmoo.com>. See LICENSE.txt. */
2+
// https://github.com/ricmoo/aes-js
3+
14
function checkInt(value) {
25
return (parseInt(value) === value);
36
}

‎src/js/net/minecraft/client/command/command/HelpCommand.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import Command from "../Command.js";
2+
import FontRenderer from "../../render/gui/FontRenderer.js";
23

34
export default class HelpCommand extends Command {
45

@@ -7,7 +8,7 @@ export default class HelpCommand extends Command {
78
}
89

910
execute(minecraft, args) {
10-
minecraft.addMessageToChat("&2--- Showing help page ---");
11+
minecraft.addMessageToChat(FontRenderer.COLOR_PREFIX + "2--- Showing help page ---");
1112
minecraft.commandHandler.commands.forEach(command => {
1213
minecraft.addMessageToChat("/" + command.command + " " + command.usage + " - " + command.description);
1314
});

0 commit comments

Comments
 (0)