Terraria.Player.beeType C# (CSharp) Method

beeType() public method

public beeType ( ) : int
return int
        public int beeType()
        {
            if (this.strongBees && Main.rand.Next(2) == 0)
            {
                this.makeStrongBee = true;
                return 566;
            }
            this.makeStrongBee = false;
            return 181;
        }
Player