Initial MSVC 2008 projects workspace
This commit is contained in:
16
l2ooghelper/packet_handlers/ph_PartySmallWindowDelete.cpp
Normal file
16
l2ooghelper/packet_handlers/ph_PartySmallWindowDelete.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#include "stdafx.h"
|
||||
#include "Logger.h"
|
||||
#include "L2Client.h"
|
||||
|
||||
/** writeC(0x51);
|
||||
writeD(_member.getObjectId());
|
||||
writeS(_member.getName()); **/
|
||||
void L2Client::ph_PartySmallWindowDelete( class L2Client *pcls, L2GamePacket *p )
|
||||
{
|
||||
p->getPacketType();
|
||||
unsigned int oid = p->readUInt();
|
||||
//const wchar_t *playerName = p->readUnicodeStringPtr();
|
||||
pcls->party.delPlayer( oid );
|
||||
//pcls->party.delPlayer( playerName );
|
||||
pcls->postUpdateUI( UPDATE_PARTY );
|
||||
}
|
Reference in New Issue
Block a user