ABM_creator.ConsumableCreator.nonpotion C# (CSharp) Method

nonpotion() public method

public nonpotion ( int spellid ) : bool
spellid int
return bool
        public bool nonpotion(int spellid)
        {
            if (spellid >= 174 && spellid <= 182 || spellid == 2)
                return true;
            else return false;
        }