Started by
PeskySpyCrab
on
Topic category: Help with Minecraft modding (Java Edition)
I'm working on a xenomorph mod for fun but I don't want the xenos to attack entities that have a chestburster
Topic category: Help with Minecraft modding (Java Edition)
I'm working on a xenomorph mod for fun but I don't want the xenos to attack entities that have a chestburster
you should add a condition on the "attack entities of type" AI procedure block
Should be like this:
IF Has (Source Entity) active potion: (*your potion*)
Do
Return: false
Return: true
Hope this helps.