Skip to content

Commit b88fb19

Browse files
committed
Fix screen send mode not recapturing cursor
1 parent ef58495 commit b88fb19

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.4.3
4+
5+
- Fixed screen send mode not recapturing cursor
6+
37
## 2.4.2
48

59
- Fixed processing of messages with consecutive placeholders

common/src/main/java/dev/terminalmc/chatnotify/ChatNotify.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ private static void sendMessages(List<String> messages, ClientPacketListener con
128128
cs.handleChatInput(msg, false);
129129
}
130130
}
131-
mc.screen = oldScreen;
131+
mc.setScreen(oldScreen);
132132
}
133133
case PACKET -> {
134134
for (String msg : messages) {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Neo/Forge version ranges: https://maven.apache.org/enforcer/enforcer-rules/versionRanges.html
44

55
# Project
6-
mod_version=2.4.2
6+
mod_version=2.4.3
77
mod_group=dev.terminalmc
88
mod_id=chatnotify
99
mod_name=ChatNotify

0 commit comments

Comments
 (0)