Yes, that is definitely the problem. I'm currently only looking for things with a category of Meal.
When the game comes back up, can you still please run the following code snippet in the RebornConsole. I'd like to see all of the results and not just the one for Buffalo's Milk so I have some context to match it against. It would be perfect if you could make sure to have another Ingredient Item in your back that you can't use as food.
Code:
foreach (var item in ff14bot.Managers.InventoryManager.FilledSlots.Where(x => x.BagId == InventoryBagId.Bag1 || x.BagId == InventoryBagId.Bag2 || x.BagId == InventoryBagId.Bag3 || x.BagId == InventoryBagId.Bag4))
{
Log("Name: " + item.Item.EnglishName + "\tItemCategory: " + item.Item.EquipmentCatagory + "\tActionType: " + item.ActionType + "\tCanUse: " + item.CanUse());
}