From 7ad00dceacba80f22f406dbb4f18745a8efac2d1 Mon Sep 17 00:00:00 2001 From: mark Date: Tue, 27 Nov 2007 06:40:16 +0000 Subject: [PATCH] --- Scripts/Multis/HouseFoundation.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Scripts/Multis/HouseFoundation.cs b/Scripts/Multis/HouseFoundation.cs index 860742f49..9dfd13c82 100644 --- a/Scripts/Multis/HouseFoundation.cs +++ b/Scripts/Multis/HouseFoundation.cs @@ -913,12 +913,7 @@ namespace Server.Multis } else if ( cost < 0 ) { - if ( this.Deleted ) { - from.SendLocalizedMessage( 1060397, ( -cost ).ToString() ); // ~1_AMOUNT~ gold has been deposited into your bank box. (let them think it worked) - using ( StreamWriter op = new StreamWriter( "customexploiters.log", true ) ) - op.WriteLine( "{0}\t{1}\t{2}\tLocation: {3}", from.Account, from.NetState != null ? from.NetState.ToString() : "null account", from.RawName, from.Location.ToString() ); - } - else if ( Banker.Deposit( from, -cost ) ) + if ( Banker.Deposit( from, -cost ) ) from.SendLocalizedMessage( 1060397, ( -cost ).ToString() ); // ~1_AMOUNT~ gold has been deposited into your bank box. else return;