I am currently Trying update a method Form
addRenderableWidget(new Button(width / 2 - 100, height - 25, 100, 20, Component.translatable("gui.done"), (w) -> { options.save(); if (saver != null) { saver.run(); } onClose(); }));
to this
addRenderableWidget(new EditBox(font,width / 2 - 100, height - 25, 100, 20, Component.translatable("gui.done"), (w) -> { options.saver(); if (saver != null) { saver.run(); } onClose(); }));
I keep Receiving this problem Multiple non-overriding abstract methods found in interface net.minecraft.network.chat.Component
I kind of need help making this problem stop Thx