TheidenHD Posted May 30, 2024 Posted May 30, 2024 I am currently Porting a mod from 1.19 to 1.20.1, one of the Items writes some information into the chat when used. To prevent spamming older messages are deleted. public boolean receive(Supplier<NetworkEvent.Context> context) { context.get().enqueueWork(() -> { ChatComponent chatGui = Minecraft.getInstance().gui.getChat(); chatGui.deleteMessage(signature); chatGui.addMessage(message, signature, GuiMessageTag.system()); }); return true; } In 1.20.1 it doesn't work anymore. The Message gets replaced after 60 Seconds with a message saying: "This chat message has been deleted by the server." Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.