Posted August 17, 20169 yr The new boat is not moving when the player is in it. Why? Entity: http://pastebin.com/CPJMQSan Render: http://pastebin.com/NXqcgFKP Model: http://pastebin.com/m3D1aeu2 Item: http://pastebin.com/iu4mU5t7
August 20, 20169 yr Author I added to event. @SubscribeEvent public void move(PlayerEvent event) { if (event.getEntity() instanceof EntityPlayer) { if(event.getEntityPlayer().isRiding()) { if(event.getEntityPlayer().getRidingEntity() instanceof EntityVehicle) { event.getEntityPlayer().addStat(StatList.BOAT_ONE_CM); } } } } But it still does not move.
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.