Skip to content

Commit

Permalink
fix: Update AnimalLore.cs to include gold as a food
Browse files Browse the repository at this point in the history
  • Loading branch information
Bohicatv authored Nov 20, 2024
1 parent 1d08572 commit 73e1fd2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Projects/UOContent/Skills/AnimalLore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,10 @@ public AnimalLoreGump(BaseCreature c) : base(250, 50)
{
foodPref = 1044477; // Eggs
}
else if ((c.FavoriteFood & FoodType.Gold) != 0)
{
foodPref = 1062577; // Gold
}

// TODO: Add 1115752 "Blackrock Stew" as a food type

Expand Down

0 comments on commit 73e1fd2

Please sign in to comment.