Fix an oopsie. Our implementation is not the same as Lunar's.

This commit is contained in:
Refactoring 2023-12-31 17:09:06 -05:00 committed by GitHub
parent f019521fb7
commit f1c964fe94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ This article](https://github.com/Decencies/Articles/wiki/Lunar---Bridge) by Dece
The Bridge is an inheritance based system which uses Interfaces to allow the client to work on multiple versions with minimal modification. (Decencies 1)
This is how most clients multi version. Our implementation is the same as Lunar's
This is how most clients multi version. Our implementation is very similar to Lunar and other popular clients'
In our implementation, all the client code is stored in the Client module, which has no access to the Minecraft API.
You have to create your own bridges and use them. In the target versions, you'd implement those bridges to access the Minecraft API.