diff --git a/Projects/UOContent/Engines/Harvest/Core/HarvestSystem.cs b/Projects/UOContent/Engines/Harvest/Core/HarvestSystem.cs index 84337d61d..b82040134 100644 --- a/Projects/UOContent/Engines/Harvest/Core/HarvestSystem.cs +++ b/Projects/UOContent/Engines/Harvest/Core/HarvestSystem.cs @@ -212,8 +212,8 @@ namespace Server.Engines.Harvest { var bonusItem = Construct(bonus.Type, from); - if (Give(from, bonusItem, true) - ) // Bonuses always allow placing at feet, even if pack is full irregrdless of def + // Bonuses always allow placing at feet, even if pack is full irregrdless of def + if (Give(from, bonusItem, true)) { bonus.SendSuccessTo(from); } diff --git a/Projects/UOContent/Gumps/Houses/ConfirmDemolishHouseGump.cs b/Projects/UOContent/Gumps/Houses/ConfirmDemolishHouseGump.cs index 91740c47e..a1476f438 100644 --- a/Projects/UOContent/Gumps/Houses/ConfirmDemolishHouseGump.cs +++ b/Projects/UOContent/Gumps/Houses/ConfirmDemolishHouseGump.cs @@ -124,7 +124,7 @@ public class ConfirmDemolishHouseGump : StaticGump if (!from.BankBox.TryDropItem(from, deed, false)) { - deed?.Delete(); + deed.Delete(); from.SendLocalizedMessage(500390); // Your bank box is full. return; }