Jump to content

MangoCoder

Members
  • Posts

    2
  • Joined

  • Last visited

MangoCoder's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. So do I just uninstall the plugin? EDIT: Yes that worked,thank you.The problem now is that the string that I want to render doesn't actually render.. My code: public class RenderHandler { public RenderHandler(){ MinecraftForge.EVENT_BUS.register(this); } private static Minecraft minecraft = Minecraft.getMinecraft(); public void RenderGameOverlayEvent(RenderGameOverlayEvent event){ if(event.getType() == RenderGameOverlayEvent.ElementType.TEXT){ minecraft.fontRenderer.drawString("Hello",1,1,0xfff); } } } Edit #2: I fixed it,I just had to add @SubscribeEvent over the event.
  2. I am trying to make a 1.12.1 mod but forge isn't cooperating right now.. I have encountered the error "SideOnly" error while using 2 classes,ScaledResolution and FontRenderer. Basically this happens: http://prntscr.com/gf447s Thanks in advance.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.