// Token: 0x060038E6 RID: 14566 RVA: 0x001A1754 File Offset: 0x0019FB54
        private static void onClickedSellingButton(SleekButton button)
        {
            byte          index         = (byte)PlayerNPCVendorUI.sellingBox.search(button);
            VendorSelling vendorSelling = PlayerNPCVendorUI.selling[(int)index];

            if (!vendorSelling.canBuy(Player.player))
            {
                return;
            }
            Player.player.quests.sendBuyFromVendor(PlayerNPCVendorUI.vendor.id, vendorSelling.index);
        }