1
0

Added cClientHandle::SendPluginMessage().

It is not yet exported in the API, though.
This commit is contained in:
madmaxoft
2014-01-09 11:39:42 +01:00
parent bd17662412
commit fe978f0d1e
9 changed files with 50 additions and 0 deletions

View File

@@ -1978,6 +1978,15 @@ void cClientHandle::SendPlayerSpawn(const cPlayer & a_Player)
void cClientHandle::SendPluginMessage(const AString & a_Channel, const AString & a_Message)
{
m_Protocol->SendPluginMessage(a_Channel, a_Message);
}
void cClientHandle::SendRemoveEntityEffect(const cEntity & a_Entity, int a_EffectID)
{
m_Protocol->SendRemoveEntityEffect(a_Entity, a_EffectID);