Some questions
ZepsiZola opened this issue · 1 comments
-
What is the difference between
remove-awareness
andremove-random-movement
. I tried them both and it seems like it just made the animals in the farm stop moving. I wonder whatremove-awareness
does that is different toremove-random-movement
in that case. -
I want to trim vehicles in a certain area with this profile, but it says this in console when I try to enable it
profiles.yml
# No more than 6 vehicles per area
trim-vehicles:
group:
types:
- "category:vehicle"
count: 6
distance: 8
actions:
- kill
console
[22:49:27 WARN]: [FarmControl] Note: action 'kill' in profile 'trim-vehicles' is incompatible with the following entity types: category:vehicle
[22:49:27 WARN]: [FarmControl] Unknown entity type 'type:monster' for profile 'disable-mob-collection-ai'.
[22:49:27 WARN]: [FarmControl] Reactive mode is not supported on your version - ignoring reactive profiles for world 'world'
[22:49:27 WARN]: [FarmControl] Reactive mode is not supported on your version - ignoring reactive profiles for world 'world_nether'
[22:49:27 WARN]: [FarmControl] Reactive mode is not supported on your version - ignoring reactive profiles for world 'world_the_end'
[22:49:27 INFO]: Plugin reloaded.
Hey - remove-awareness
disables the entity's brain and pathfinder goals (mobs won't react to a player holding food, sheep won't eat grass, mobs won't attack players, etc) while remove-random-movement
only disables the random movement pathfinder goals, which stops them from moving around but doesn't stop other important activities.
The kill action can only be applied to mobs (i.e. entities with health) - to remove vehicles you should use the remove
action instead. The wiki page here tells you which actions apply to which entity types