Doggy Talents

Doggy Talents

27M Downloads

[Compatibility Request | 1.18.2] Farmer's Delight dog food

LilJagty opened this issue ยท 1 comments

commented

Feature Description: Farmer's Delight (a popular food mod) adds a "Dog Food" item that grants tamed Wolves five minutes of Speed, Strength, and Resistance. Unfortunately, you cannot feed these directly to Doggy Talents dogs and feeding it to them in Food Bowls does not apply the effects of the food. It would be awesome if the effects would still work on Doggy Talents dogs, either from the Food Bowl or by directly feeding it.

Relation to any Known/Unknown Bug: FD Dog Food does not apply potion affects as expected

Additional Information: N/A

commented

To anyone wishing to be able to right-click FD dog food on Doggy Talents dogs, you just need to add the dogs to FD's dog_food_users tag, which can be done via datapack or other methods. However, I don't believe this makes it work in the dog bowl.
Here's the KubeJS script in server_scripts:

// Add Doggy Talents dogs to FD Dog Food
onEvent('tags.entity_types', event => {
  event.add("farmersdelight:dog_food_users", "doggytalents:dog");
})