1
0

cProtocol::SendWindowOpen() signature changed.

This implements #313.
This commit is contained in:
madmaxoft
2013-11-08 21:32:14 +01:00
parent b24bdff308
commit 07fa8313b1
15 changed files with 61 additions and 50 deletions

View File

@@ -956,19 +956,19 @@ void cProtocol125::SendWindowClose(const cWindow & a_Window)
void cProtocol125::SendWindowOpen(char a_WindowID, char a_WindowType, const AString & a_WindowTitle, char a_NumSlots)
void cProtocol125::SendWindowOpen(const cWindow & a_Window)
{
if (a_WindowType < 0)
if (a_Window.GetWindowType() < 0)
{
// Do not send for inventory windows
return;
}
cCSLock Lock(m_CSPacket);
WriteByte (PACKET_WINDOW_OPEN);
WriteByte (a_WindowID);
WriteByte (a_WindowType);
WriteString(a_WindowTitle);
WriteByte (a_NumSlots);
WriteByte (a_Window.GetWindowID());
WriteByte (a_Window.GetWindowType());
WriteString(a_Window.GetWindowTitle());
WriteByte (a_Window.GetNumNonInventorySlots());
Flush();
}