{
OutputHandler.chatNotification(offer.buyer, "The seller agreed to sell plot " + offer.plot.getName() + " to you. " + offer.amount + " will be deducted from your wallet.");
APIRegistry.wallet.removeFromWallet(offer.amount, offer.buyer.getPersistentID());
APIRegistry.wallet.addToWallet(offer.amount, seller.getPersistentID());
Plot plot = offer.plot;
plot.changeOwner(offer.buyer.getPersistentID());
PlotManager.addPlot(plot);
OutputHandler.chatNotification(seller, "Transaction complete. " + offer.amount + "added to your wallet.");
OutputHandler.chatNotification(offer.buyer, "Transaction complete. You are now owner of " + plot.getName());
PlotManager.pendingOffers.remove(args[0]);