Misc fixes

This commit is contained in:
Hondacrx
2025-06-08 18:32:12 -04:00
parent c2877fe813
commit e88513b855
4 changed files with 11 additions and 6 deletions
+2 -2
View File
@@ -999,13 +999,13 @@ namespace Game
SendPacket(auctionHelloResponse);
}
public void SendAuctionCommandResult(uint auctionId, AuctionCommand command, AuctionResult errorCode, TimeSpan delayForNextAction, InventoryResult bagError = 0)
public void SendAuctionCommandResult(uint auctionId, AuctionCommand command, AuctionResult errorCode, TimeSpan delayForNextAction, InventoryResult bagResult = 0)
{
AuctionCommandResult auctionCommandResult = new();
auctionCommandResult.AuctionID = auctionId;
auctionCommandResult.Command = (int)command;
auctionCommandResult.ErrorCode = (int)errorCode;
auctionCommandResult.BagResult = (int)bagError;
auctionCommandResult.BagResult = (int)bagResult;
auctionCommandResult.DesiredDelay = (uint)delayForNextAction.TotalSeconds;
SendPacket(auctionCommandResult);
}