mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
fix camel and llama tack
This commit is contained in:
parent
6d2a16cbaa
commit
7da883115b
1 changed files with 1 additions and 1 deletions
|
@ -2533,7 +2533,7 @@ namespace HISP.Game
|
|||
continue;
|
||||
else if (horse.Breed.Type == "llama" && itemInfo.GetMiscFlag(1) != 2)
|
||||
continue;
|
||||
else if (itemInfo.GetMiscFlag(1) != 0)
|
||||
else if (!(horse.Breed.Type == "llama" || horse.Breed.Type == "camel") && itemInfo.GetMiscFlag(1) != 0)
|
||||
continue;
|
||||
message += Messages.FormatHorseEquip(itemInfo.IconId, item.ItemInstances.Length, itemInfo.Name, itemInfo.Id);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue