Skip to content

Commit

Permalink
Update to 1.21.2-3
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbuilder1961 committed Nov 5, 2024
1 parent d56c218 commit ad8efbf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## Chat Patches `213.6.9` for Minecraft 1.21, 1.21.1 on Fabric, Quilt
- Updated to 1.21.2-3

## Chat Patches `211.6.9` for Minecraft 1.21, 1.21.1 on Fabric, Quilt
- Fixed blank messages being sent instead of Xaero's Minimap waypoints ([#158](https://www.github.com/mrbuilder1961/ChatPatches/issues/158))
- Should also fix any issues in the special case where a message is modified in between receiving and storing it
Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ cfId=560042
mrId=MOqt4Z5n

# Required dependencies - https://fabricmc.net/develop
minecraft=1.21.1
yarn=+build.3
loader=0.16.5
api=0.103.0+1.21.1
minecraft=1.21.3
yarn=+build.2
loader=0.16.9
api=0.107.0+1.21.3

# Dependencies - modmenu: https://modrinth.com/mod/modmenu/versions?l=fabric and yacl: https://modrinth.com/mod/yacl/versions?l=fabric
modmenu=11.0.2
yacl=3.5.0+1.21
modmenu=12.0.0-beta.1
yacl=3.6.1+1.21.2

# Publishing metadata
# /- Typically the latest version, but can be 1.21.x for example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import net.minecraft.client.gui.widget.ButtonWidget;
import net.minecraft.client.gui.widget.TextFieldWidget;
import net.minecraft.client.network.PlayerListEntry;
import net.minecraft.client.render.RenderLayer;
import net.minecraft.client.util.ChatMessages;
import net.minecraft.client.util.SkinTextures;
import net.minecraft.network.message.MessageSignatureData;
Expand Down Expand Up @@ -273,6 +274,7 @@ public void renderSearchSettingsAndCopyMenu(DrawContext context, int mX, int mY,
// renders the bg and the buttons for the settings menu
if(showSettingsMenu && !config.hideSearchButton) {
context.drawTexture(
RenderLayer::getGuiTextured,
id("textures/gui/search_settings_panel.png"),
MENU_X, height + MENU_Y_OFFSET, 0, 0, MENU_WIDTH, MENU_HEIGHT, MENU_WIDTH, MENU_HEIGHT
);
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@

"depends": {
"java": ">=21",
"minecraft": [ "1.21", "1.21.1" ],
"fabricloader": ">=0.15.11",
"minecraft": [ "1.21.2", "1.21.3" ],
"fabricloader": ">=0.16.9",
"fabric-api": "*",
"yet_another_config_lib_v3": "*"
},
Expand Down

0 comments on commit ad8efbf

Please sign in to comment.