Server.Items.Gold.GetTotal C# (CSharp) Method

GetTotal() public method

public GetTotal ( TotalType type ) : int
type TotalType
return int
		public override int GetTotal( TotalType type )
		{
			int baseTotal = base.GetTotal( type );

			if ( type == TotalType.Gold )
				baseTotal += this.Amount;

			return baseTotal;
		}