Posted August 25, 20205 yr I've already tried adding it using an EntityJoinWorldEvent, but it didn't work (the goal was added, I checked).
August 25, 20205 yr AI tasks have a priority value and a "can run simultaneously" bitmask value. If your task has the same bits set as another take, but a lower priority (towards positive infinity, iirc) then it won't run. So Show your code. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
August 25, 20205 yr Author Quote AI tasks have a priority value and a "can run simultaneously" bitmask value. If your task has the same bits set as another take, but a lower priority (towards positive infinity, iirc) then it won't run. So Show your code. @SubscribeEvent public static void onSheepJoinWorld(EntityJoinWorldEvent event) { Entity entity = event.getEntity(); if (entity instanceof SheepEntity && !(entity instanceof RubySheepEntity)) { SheepEntity sheepEntity = (SheepEntity) entity; sheepEntity.goalSelector.addGoal(2, new BreedGoal(sheepEntity, 1.0f, RubySheepEntity.class)); } } Here's the code for the event. The problem might be that I set the priority to be the same as the regular BreedGoal. Edited August 25, 20205 yr by TheOnlyTails
August 25, 20205 yr 49 minutes ago, TheOnlyTails said: The problem might be that I set the priority to be the same as the regular BreedGoal. Probably. Which means that it is a lower priority than the regular BreedGoal because it's later in the task list. You either: (a) need to remove the original goal (b) make your goal have a higher priority Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
August 25, 20205 yr Author 25 minutes ago, Draco18s said: (a) need to remove the original goal (b) make your goal have a higher priority I tried both, and both yielded the same result (as if nothing has changed).
August 25, 20205 yr Are you sure your event is being called? Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
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.