Couple of critical fixes for bot trade code

This commit is contained in:
Uleat
2017-03-10 18:41:04 -05:00
parent 37d22e17a3
commit bf3d9b2d02
2 changed files with 18 additions and 10 deletions
+1 -1
View File
@@ -195,7 +195,7 @@ bool EQEmu::ItemData::IsClassBook() const
bool EQEmu::ItemData::IsType1HWeapon() const
{
return ((ItemType == item::ItemType1HBlunt) || (ItemType == item::ItemType1HSlash) || (ItemType == item::ItemType1HPiercing));
return ((ItemType == item::ItemType1HBlunt) || (ItemType == item::ItemType1HSlash) || (ItemType == item::ItemType1HPiercing) || (ItemType == item::ItemTypeMartial));
}
bool EQEmu::ItemData::IsType2HWeapon() const