Tamed Foxhounds are seen as hostile by drones
Awesomespore opened this issue ยท 3 comments
Quark adds foxhounds (fire doggos), which guard drones seem to see as hostile even when tamed (I made one and deployed it with no weapons and it seemed quite keen on targeting one of my foxhounds, though they didn't seem to damage them). Perhaps there could be an option in the config file to blacklist certain mobs from being targeted, or possibly just make an exception for foxhounds?
Yeah, the default behaviour of guard drones is to target anything that's a hostile mob (code-wise, any entity which implements IMob
).
However, it looks like foxhounds also extend TameableEntity
, so it wouldn't be hard to ignore mobs that are tamed. I can add this for the next release.
Yeah, the default behaviour of guard drones is to target anything that's a hostile mob (code-wise, any entity which implements
IMob
).However, it looks like foxhounds also extend
TameableEntity
, so it wouldn't be hard to ignore mobs that are tamed. I can add this for the next release.
Cool!