Jump to content

[1.7.10] @SideOnly(Side.CLIENT) Not use it anymore?


American2050

Recommended Posts

I can't remember where but I think I read that @SideOnly(Side.CLIENT) shouldn't be used anymore.

 

My question is, wherever I have things like this:

	@Override
@SideOnly(Side.CLIENT)
public void registerIcons(IIconRegister iconRegister)
{
itemIcon = iconRegister.registerIcon(this.getUnlocalizedName().substring(this.getUnlocalizedName().indexOf(".") + 1));
}

 

I should modify them like

 

	if(!world.isRemote)
	{
		itemIcon = iconRegister.registerIcon(this.getUnlocalizedName().substring(this.getUnlocalizedName().indexOf(".") + 1));
	}

 

But what happens when I don't have "world" available to use, like in this case?

 

 

Link to comment
Share on other sites

I am pretty sure you cant have 2 annotations with the @SideOnly, you  dont need the overide. Maybe put the override below the @sideonly for some strange reason. This happens to me too. Trust me, it still works in 1.8

You can use as many annotations as you want. You should always use

@Override

when overriding a method and

@SideOnly

when overriding a method with

@SideOnly

.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

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.