Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit 433f6ea

Browse files
committed
Support vanilla clearing chat via F3+D
1 parent a782d37 commit 433f6ea

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ ext {
2020
}
2121
apply plugin: 'net.minecraftforge.gradle.liteloader'
2222
apply plugin: 'org.spongepowered.mixin'
23-
version = '2.1.1.1'
23+
version = '2.1.2'
2424

2525
apply from: utils.file('gradle/minecraft.gradle')
2626

27+
archivesBaseName = 'tabbychat'
2728
group = 'mnm.mods'
2829

2930
minecraft {

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
rootProject.name = 'tabbychat'
1+
rootProject.name = 'TabbyChat-2'
22
include 'MnM-Utils'

src/main/java/mnm/mods/tabbychat/core/GuiNewChatTC.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ public void refreshChat() {
5454
chat.getChatBox().updateComponent();
5555
}
5656

57+
@Override
58+
public void clearChatMessages() {
59+
chat.clearMessages();
60+
}
61+
5762
@Override
5863
public void drawChat(int i) {
5964
if (prevScreenHeight != mc.displayHeight || prevScreenWidth != mc.displayWidth) {

0 commit comments

Comments
 (0)