-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Request] More mob detection #39
Comments
Sure, can you provide a list of mobs and AI features you would like. As we don't auto enable everything to prevent mod incompatibility issues. Though likely could improve generic script detection for mobs using the same AI features. |
It would be nice to have it for Alex's mobs. Untamed wilds since those are major mob mods |
You should have a config that says if you want to auto enable everything or not and default is false |
Can you provide a link to these mods. As we likely will need their source to verify if it is possible to support. If they use vanilla AI logic we likely can support it. Anything custom we recommend asking their team to implement. As it is better for mods to add their own configs so AI improvements is not required.
Guess it would be useful to note we have no entity detection. As the mod targets AI goals attached to entities https://github.com/BuiltBrokenModding/AI-Improvements/blob/1.18/src/main/java/com/builtbroken/ai/improvements/modifier/ModifierSystem.java#L60 Not to say we couldn't implement general detection but it wouldn't be very useful. Best we can offer is ability to disable AI logic but this could make the game rather unstable. As we have attempted to be selective with what we expose to users. Especially given we already get blamed for defects in cases where our code doesn't touch. More specific, some AI logic is required for other components to work. A good example is combat AIs needing to have target searching and attack enabled. Removing one can cause the other to fail with worse case crashing the game. There is also a concern about performance during mob spawning. As our main method for interacting with entities is during onJoinWorld events. Meaning the more general purpose stuff we add... the worse performance can get for all users. Not just the few with advanced configurations. |
Alex mobs source is here https://github.com/AlexModGuy/AlexsMobs |
And untamed wilds https://github.com/RayTrace082/untamedwilds |
Any update on this? |
Another mod that has lots of mobs here |
Mowsies mobs too here |
This would also be a good one to add here |
Or for modpacks you can just try to detect mods and mobs and use general performance optimizations for mobs |
Not much feature additions have been done due to time commitment issues. As I said in the other ticket the mod is only receiving MC updates and bug fixes. I get you're are excited... please chill on the reply spam, you can edit your existing reply to add more info or collect information then reply. |
Oh sorry. Just hope you guys implement this as it would improve lots of mobs all over the place would be amazing to see in modpacks as people would have a huge performance increase. |
So I have more mobs in my modpack and I would like to be able to configure the ai improvements of them but I don't see them in the config could you make it so the mobs load in the config if a new mob is added?
The text was updated successfully, but these errors were encountered: