Skip to content

Commit

Permalink
Merge pull request #531 from Groruk/fix-@ALL
Browse files Browse the repository at this point in the history
Process multiple targets again instead of temporarily unbanning them
  • Loading branch information
Groruk authored Nov 4, 2018
2 parents 642229c + 99468de commit 3840845
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions game/addons/sourcemod/scripting/sbpp_comms.sp
Original file line number Diff line number Diff line change
Expand Up @@ -2416,15 +2416,7 @@ stock void ProcessUnBlock(int client, int targetId = 0, int type, char[] sReason
}
}

DataPack dataPack = new DataPack();
dataPack.WriteCell(GetClientUserId2(client));
dataPack.WriteCell(GetClientUserId(target));
dataPack.WriteCell(type);
dataPack.WriteString(adminAuth);
dataPack.WriteString(targetAuth); // not in use in this case
dataPack.WriteString(reason);

TempUnBlock(dataPack);
ProcessUnBlock(GetClientUserId2(client), GetClientUserId(target), type, reason);
}

#if defined DEBUG
Expand Down

0 comments on commit 3840845

Please sign in to comment.