Would I change this so that I can equip hossu whilst using a non epic backsword?
As it stands I can equip a hossu as a main weapon >.< It appears I am unable to equip a backsword and hossu at the same time it's either equip a backsword or equip a hossu
Code:
public bool EpicTaoist()
{
if (EntityFlag == Game.EntityFlag.Player)
{
var weapons = Owner.Weapons;
if (weapons.Item1 != null && weapons.Item2 != null)
if (weapons.Item1.ID / 1000 == 620 && weapons.Item2.ID / 1000 == 619)//Backsword,Hossu
return true;
}
return false;
}