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, my problem is that I have an EntityThrowable and I must spawn it server-side, but then I need to do stuff when the entity hit something: on single player (internal server) all works perfect, but when I try to spawn that entity on a dedicated server some methods and classes don't exist and I run into an exception like NoClassDefFound. I post here a simple example, when I try it on a dedicated server and the entity hit somethings the server crash and I get a method not found error on the method e.setVelocity():

import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;

public class TestProj extends EntityThrowable {

private EntityPlayer caster;

public TestProj(World world, EntityLivingBase entity) {
	super(world, entity);
	this.caster = ((EntityPlayer)entity);
}

@Override
protected void onImpact(MovingObjectPosition mop) {
	if(mop.entityHit != null && mop.entityHit instanceof EntityLiving) {
		EntityLiving e = (EntityLiving) mop.entityHit;
		double vecX = caster.posX - e.posX, vecY = caster.posY - e.posY, vecZ = caster.posZ - e.posZ;
		e.setVelocity(vecX / 2.5, vecY / 3.5, vecZ / 2.5);
	}
	this.setDead();
}

}

How can I know which methods I can use on both sides? Or there is an other way to solve my problem?

  • Author

If a method/class/field is not available on a specific side it will be marked with @SideOnly. So a method with @SideOnly(Side.CLIENT) can only be used on the client.

Thanks! Solved it! I just have to use e.addVelocity(), which isn't marked whit a @SideOnly annotation!

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.