wServer.realm.entities.player.Player.MaxPotionOnDeath C# (CSharp) Метод

MaxPotionOnDeath() приватный Метод

private MaxPotionOnDeath ( List maxed ) : void
maxed List
Результат void
        private void MaxPotionOnDeath(List<string> maxed)
        {
            maxed.Shuffle();
            psr.Account.Bonuses.Add(XmlDatas.IdToType["Potion of Max " + maxed[0]]);
            new Database().SetBonuses(psr.Account.AccountId, psr.Account.Bonuses);
            maxed.RemoveAt(0);
        }