Removed the obsolete SendWholeInventory(cInventory &) function.
This won't compile because there's still a change in Protocol17x.cpp pending; the next commit will fix this.
This commit is contained in:
parent
e65ce13012
commit
88472b7ce6
@ -255,8 +255,8 @@ void cClientHandle::Authenticate(void)
|
||||
// Send time
|
||||
m_Protocol->SendTimeUpdate(World->GetWorldAge(), World->GetTimeOfDay());
|
||||
|
||||
// Send inventory
|
||||
m_Player->GetInventory().SendWholeInventory(*this);
|
||||
// Send contents of the inventory window
|
||||
m_Protocol->SendWholeInventory(*m_Player->GetWindow());
|
||||
|
||||
// Send health
|
||||
m_Player->SendHealth();
|
||||
@ -2004,15 +2004,6 @@ void cClientHandle::SendWeather(eWeather a_Weather)
|
||||
|
||||
|
||||
|
||||
void cClientHandle::SendWholeInventory(const cInventory & a_Inventory)
|
||||
{
|
||||
m_Protocol->SendWholeInventory(a_Inventory);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void cClientHandle::SendWholeInventory(const cWindow & a_Window)
|
||||
{
|
||||
m_Protocol->SendWholeInventory(a_Window);
|
||||
|
@ -134,7 +134,6 @@ public:
|
||||
void SendUpdateSign (int a_BlockX, int a_BlockY, int a_BlockZ, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4);
|
||||
void SendUseBed (const cEntity & a_Entity, int a_BlockX, int a_BlockY, int a_BlockZ );
|
||||
void SendWeather (eWeather a_Weather);
|
||||
void SendWholeInventory (const cInventory & a_Inventory);
|
||||
void SendWholeInventory (const cWindow & a_Window);
|
||||
void SendWindowClose (const cWindow & a_Window);
|
||||
void SendWindowOpen (char a_WindowID, char a_WindowType, const AString & a_WindowTitle, char a_NumSlots);
|
||||
|
@ -393,15 +393,6 @@ void cInventory::CopyToItems(cItems & a_Items)
|
||||
|
||||
|
||||
|
||||
void cInventory::SendWholeInventory(cClientHandle & a_Client)
|
||||
{
|
||||
a_Client.SendWholeInventory(*this);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void cInventory::SendSlot(int a_SlotNum)
|
||||
{
|
||||
cItem Item(GetSlot(a_SlotNum));
|
||||
|
@ -110,8 +110,6 @@ public:
|
||||
|
||||
// tolua_end
|
||||
|
||||
void SendWholeInventory(cClientHandle & a_Client);
|
||||
|
||||
/// Returns the player associated with this inventory (const version)
|
||||
const cPlayer & GetOwner(void) const { return m_Owner; }
|
||||
|
||||
|
@ -99,7 +99,6 @@ public:
|
||||
virtual void SendUpdateSign (int a_BlockX, int a_BlockY, int a_BlockZ, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4) = 0;
|
||||
virtual void SendUseBed (const cEntity & a_Entity, int a_BlockX, int a_BlockY, int a_BlockZ ) = 0;
|
||||
virtual void SendWeather (eWeather a_Weather) = 0;
|
||||
virtual void SendWholeInventory (const cInventory & a_Inventory) = 0;
|
||||
virtual void SendWholeInventory (const cWindow & a_Window) = 0;
|
||||
virtual void SendWindowClose (const cWindow & a_Window) = 0;
|
||||
virtual void SendWindowOpen (char a_WindowID, char a_WindowType, const AString & a_WindowTitle, char a_NumSlots) = 0;
|
||||
|
@ -940,15 +940,6 @@ void cProtocol125::SendWeather(eWeather a_Weather)
|
||||
|
||||
|
||||
|
||||
void cProtocol125::SendWholeInventory(const cInventory & a_Inventory)
|
||||
{
|
||||
SendWholeInventory(*(a_Inventory.GetOwner().GetWindow()));
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void cProtocol125::SendWholeInventory(const cWindow & a_Window)
|
||||
{
|
||||
cCSLock Lock(m_CSPacket);
|
||||
|
@ -76,7 +76,6 @@ public:
|
||||
virtual void SendUpdateSign (int a_BlockX, int a_BlockY, int a_BlockZ, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4) override;
|
||||
virtual void SendUseBed (const cEntity & a_Entity, int a_BlockX, int a_BlockY, int a_BlockZ ) override;
|
||||
virtual void SendWeather (eWeather a_Weather) override;
|
||||
virtual void SendWholeInventory (const cInventory & a_Inventory) override;
|
||||
virtual void SendWholeInventory (const cWindow & a_Window) override;
|
||||
virtual void SendWindowClose (const cWindow & a_Window) override;
|
||||
virtual void SendWindowOpen (char a_WindowID, char a_WindowType, const AString & a_WindowTitle, char a_NumSlots) override;
|
||||
|
@ -85,7 +85,6 @@ public:
|
||||
virtual void SendUpdateSign (int a_BlockX, int a_BlockY, int a_BlockZ, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4) override;
|
||||
virtual void SendUseBed (const cEntity & a_Entity, int a_BlockX, int a_BlockY, int a_BlockZ ) override;
|
||||
virtual void SendWeather (eWeather a_Weather) override;
|
||||
virtual void SendWholeInventory (const cInventory & a_Inventory) override;
|
||||
virtual void SendWholeInventory (const cWindow & a_Window) override;
|
||||
virtual void SendWindowClose (const cWindow & a_Window) override;
|
||||
virtual void SendWindowOpen (char a_WindowID, char a_WindowType, const AString & a_WindowTitle, char a_NumSlots) override;
|
||||
|
@ -605,16 +605,6 @@ void cProtocolRecognizer::SendWeather(eWeather a_Weather)
|
||||
|
||||
|
||||
|
||||
void cProtocolRecognizer::SendWholeInventory(const cInventory & a_Inventory)
|
||||
{
|
||||
ASSERT(m_Protocol != NULL);
|
||||
m_Protocol->SendWholeInventory(a_Inventory);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void cProtocolRecognizer::SendWholeInventory(const cWindow & a_Window)
|
||||
{
|
||||
ASSERT(m_Protocol != NULL);
|
||||
|
@ -111,7 +111,6 @@ public:
|
||||
virtual void SendUpdateSign (int a_BlockX, int a_BlockY, int a_BlockZ, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4) override;
|
||||
virtual void SendUseBed (const cEntity & a_Entity, int a_BlockX, int a_BlockY, int a_BlockZ ) override;
|
||||
virtual void SendWeather (eWeather a_Weather) override;
|
||||
virtual void SendWholeInventory (const cInventory & a_Inventory) override;
|
||||
virtual void SendWholeInventory (const cWindow & a_Window) override;
|
||||
virtual void SendWindowClose (const cWindow & a_Window) override;
|
||||
virtual void SendWindowOpen (char a_WindowID, char a_WindowType, const AString & a_WindowTitle, char a_NumSlots) override;
|
||||
|
Loading…
Reference in New Issue
Block a user