Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hi

 

I'm updating Mo'Creatures. Some of my creatures do mountEntity(entityplayer), like the bunnies and birds. So when the player right clicks on the entity, the entity mounts the player.

 

However with the new code I've noticed that the interact method seems to be called twice, I'm assuming once for client and once for server. So when the player interacts with these creatures, they mount and then rapidly unmount the player. Any ideas for workarounds?

 

@Override
public boolean interact(EntityPlayer entityplayer)
{

	if (this.riddenByEntity == null)
	{
		mountEntity(entityplayer);
	}
	return true;
}

 

Have you tried this?

 

@Override
public boolean interact(EntityPlayer entityplayer)
{
 if(entityplayer.worldObj.isRemote)
 {
	 if (this.riddenByEntity == null)
	 {
		 mountEntity(entityplayer);
	 }
 }
 return true;
}

 

isRemote should stop it happening on the side it doesn't need to. Not sure if it'll work, but it's worth a shot.

Or you could try using

@SideOnly(Side="CLIENT")
@Override
public boolean interact(EntityPlayer entityplayer)
{
  
  if (this.riddenByEntity == null)
  {
   mountEntity(entityplayer);
  }
  return true;
}

Or you could check which side you're on using

@Override
public boolean interact(EntityPlayer entityplayer)
{
  if (FMLCommonHandler.getEffectiveSide() == Side.CLIENT) {
   if (this.riddenByEntity == null)
   {
    mountEntity(entityplayer);
   }
   return true;
}
}

Protip: try and find answers yourself before asking on the forum.

It's pretty likely that there is an answer.

 

Was I helpful? Give me a thank you!

 

 

width=635 height=903http://bit.ly/HZ03zy[/img]

 

 

Tired of waiting for mods to port to bukkit?

use BukkitForge! (now with a working version of WorldEdit!)

  • Author

Thanks for your help...  However I'm still stuck.

 

@vroominator

didn't work :(

 

@keepcalm

using this:

if (FMLCommonHandler.getEffectiveSide() == Side.CLIENT)

 

gives me the following error message, so it doesn't compile

Cannot make a static reference to the non-static method getEffectiveSide() from the type FMLCommonHandler

 

 

also using

@SideOnly(Side="CLIENT")

gives me the following error:

The annotation @SideOnly must define the attribute value

 

Isn't there:

    	if (FMLCommonHandler.instance().getSide().isClient())

and

     	if (FMLCommonHandler.instance().getSide().isServer())

  • Author

@Hobos

Thanks

 

I found out that

@SideOnly(Side.CLIENT)

 

works fine. I'll work around things with that

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.