Server.Items.BagOfReduction.GetTotal C# (CSharp) Méthode

GetTotal() public méthode

public GetTotal ( TotalType type ) : int
type TotalType
Résultat int
		public override int GetTotal(TotalType type){
			if(type==TotalType.Weight)
				return (int)(base.GetTotal(type)*(1.0-m_Redux));
			return base.GetTotal(type);
		}
	}