mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-24 05:45:36 +03:00
Fixed bug in set_msg_arg_int() reported by fsfod
This commit is contained in:
parent
b33a53d258
commit
6da1dc3e4a
@ -382,7 +382,8 @@ static cell AMX_NATIVE_CALL set_msg_arg_int(AMX *amx, cell *params)
|
||||
return 0;
|
||||
}
|
||||
|
||||
Msg[argn]->iData = params[2];
|
||||
Msg[argn]->type = params[2];
|
||||
Msg[argn]->iData = params[3];
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user