so my current code is as follows
import static com.mojang.text2speech.Narrator.LOGGER;
@Mixin(ClientPlayerEntity.class)
public class ChatMixin {
@Inject(at=@At("HEAD"), method="sendMessage(Lnet/minecraft/text/Text;)V")
public void sendMessage(Text message, CallbackInfo ci){
LOGGER.info(message.toString());
}
}
but when I run it, it doesnt work. ive already added the mixin to the json and tried to just use system.out too, no output for either