Terraria.Player.TryPortalJumping C# (CSharp) Method

TryPortalJumping() public method

public TryPortalJumping ( ) : void
return void
        public void TryPortalJumping()
        {
            if (this.mount.Active || this.dead)
                return;
            PortalHelper.TryGoingThroughPortals((Entity)this);
        }
Player