Fix Example Mod (Again)

This commit is contained in:
TheBrokenRail 2024-11-18 20:15:15 -05:00
parent 5d7056645d
commit 871288ee12

View File

@ -17,9 +17,8 @@ HOOK(chat_handle_packet_send, void, (const Minecraft *minecraft, ChatPacket *pac
if (out.length() > 0 && out[out.length() - 1] == '\n') { if (out.length() > 0 && out[out.length() - 1] == '\n') {
out[out.length() - 1] = '\0'; out[out.length() - 1] = '\0';
} }
char *cp437_out = to_cp437(out.c_str()); std::string cp437_out = to_cp437(out);
gui->addMessage(cp437_out); gui->addMessage(cp437_out);
free(cp437_out);
} else { } else {
// Call Original Method // Call Original Method
real_chat_handle_packet_send()(minecraft, packet); real_chat_handle_packet_send()(minecraft, packet);