Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TexBlock authored Apr 7, 2024
1 parent e928f56 commit 97ef02f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### Changes

- Port to Forge
- **Fixed** [#5.](https://github.com/KessokuTeaTime/Edgeless-Chat-Screen/issues/5)
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
maven-group = "band.kessokuteatime"
archives-name = "edgelesschatscreen"
mod = "1.1.1"
mod = "1.1.2"
loader = "forge"

minecraft = "1.20.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ public class ChatScreenMixin {
target = "Lnet/minecraft/client/gui/DrawContext;fill(IIIII)V"
)
)
/* MatrixStack *, int x1, int x2, int y1, int y2, int color */
/* int x1, int x2, int y1, int y2, int color */
private void fillEdgeless(Args args) {
args.set(1, (int) args.get(1) - 2);
args.set(0, (int) args.get(0) - 2);
args.set(2, (int) args.get(2) + 2);
args.set(3, (int) args.get(3) + 2);
args.set(4, (int) args.get(4) + 2);
}
}

0 comments on commit 97ef02f

Please sign in to comment.