Skip to content
This repository has been archived by the owner on Aug 23, 2024. It is now read-only.

Commit

Permalink
another logic issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dj1ch committed Jun 8, 2024
1 parent ada744d commit db3fd79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minigotchi/deauth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ void Deauth::start() {

// send the deauth 150 times(ur cooked if they find out)
for (int i = 0; i < packetCount; ++i) {
if (Deauth::send(deauthFrame, deauthFrameSize, 0) ||
if (Deauth::send(deauthFrame, deauthFrameSize, 0) &&
Deauth::send(disassociateFrame, disassociateFrameSize, 0)) {
packets++;
float pps = packets / (float)(millis() - startTime) * 1000;
Expand Down

0 comments on commit db3fd79

Please sign in to comment.