Fixed handling of default values in EventHandler.SendNetworkEvent()

This commit is contained in:
alexey.lysiuk 2017-04-22 10:28:53 +03:00
parent 370b639ab1
commit ecbfb255f7
1 changed files with 3 additions and 3 deletions

View File

@ -582,9 +582,9 @@ DEFINE_ACTION_FUNCTION(DEventHandler, SendNetworkEvent)
{
PARAM_PROLOGUE;
PARAM_STRING(name);
PARAM_INT(arg1);
PARAM_INT(arg2);
PARAM_INT(arg3);
PARAM_INT_DEF(arg1);
PARAM_INT_DEF(arg2);
PARAM_INT_DEF(arg3);
//
ACTION_RETURN_BOOL(E_SendNetworkEvent(name, arg1, arg2, arg3, false));