Added check for if the new flags are different

This commit is contained in:
OciXCrom 2018-01-09 15:44:33 +01:00
parent 6edebc9584
commit 9b26923b4e

View File

@ -2868,6 +2868,7 @@ static cell AMX_NATIVE_CALL set_user_flags(AMX *amx, cell *params) /* 4 param */
else
pPlayer->flags[id] |= flag;
if(oldflags != pPlayer->flags[id])
executeForwards(FF_ClientFlagsUpdated, static_cast<cell>(pPlayer->index), oldflags, pPlayer->flags[id], id);
return 1;
@ -2896,6 +2897,8 @@ static cell AMX_NATIVE_CALL remove_user_flags(AMX *amx, cell *params) /* 3 param
int oldflags = pPlayer->flags[id];
pPlayer->flags[id] &= ~flag;
if(oldflags != pPlayer->flags[id])
executeForwards(FF_ClientFlagsUpdated, static_cast<cell>(pPlayer->index), oldflags, pPlayer->flags[id], id);
return 1;