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

OnAmountChange() protected method

protected OnAmountChange ( int oldValue ) : void
oldValue int
return void
		protected override void OnAmountChange( int oldValue )
		{
			int newValue = this.Amount;

			UpdateTotal( this, TotalType.Gold, newValue - oldValue );
		}