Пример #1
0
		public bool AddGoldCheck(BankCheck check)
		{
			if ( !GoldLedger )
				return false;
			check.Worth = (int)AddGoldAmount((ulong)check.Worth);
			if (check.Worth == 0)
			{
				check.Consume();
				return true;
			}
			return false;
		}