Jump to content

Recommended Posts

Posted (edited)

This is the code
 


package com.Denis.denmod;

import com.Denis.denmod.init.BlockInit;
import com.Denis.denmod.init.ItemInit;

import net.minecraft.world.item.CreativeModeTab;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.eventbus.api.IEventBus;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;

@Mod("denmod")

public class Denmod {
	
	
	public static final String MOD_ID = "denmod";



	public static final CreativeModeTab Everything= new CreativeModeTab ("Everything") {
		
		public ItemStack makeIcon() {
			return new ItemStack(ItemInit.RUBY.get());
		}			
	}

	


		
public Denmod() {
	IEventBus bus = FMLJavaModLoadingContext.get().getModEventBus();
	
	ItemInit.ITEMS.register(bus);
	BlockInit.BLOCKS.register(bus);
	
	
	MinecraftForge.EVENT_BUS.register(this);
}
}

The error is 
Please insert ";" to complete The fiels Declaration
Right at the closing Braket of this:
 

Public static final Creative mode tab


 

Edited by Denis12345
Posted

The error should be clear, you forgot a ; after Everything

	public static final CreativeModeTab Everything= new CreativeModeTab ("Everything") {
		
		public ItemStack makeIcon() {
			return new ItemStack(ItemInit.RUBY.get());
		}			
	} <- ; here

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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