From f1c964fe948b69d1fb9b8a21f9a853e2caaf0d61 Mon Sep 17 00:00:00 2001 From: Refactoring <143757135+refactorinqq@users.noreply.github.com> Date: Sun, 31 Dec 2023 17:09:06 -0500 Subject: [PATCH] Fix an oopsie. Our implementation is not the same as Lunar's. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c95b36b..eb7dfbc 100644 --- a/README.md +++ b/README.md @@ -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.