Skip to content

Commit

Permalink
v1.20 patch 2
Browse files Browse the repository at this point in the history
  • Loading branch information
StupidRepo committed Jul 21, 2023
1 parent c84634f commit 33fd331
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .idea/discord.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions src/com/stupidrepo/mcscanner/MCScanner.java
Original file line number Diff line number Diff line change
Expand Up @@ -133,25 +133,25 @@ public void windowClosing(java.awt.event.WindowEvent windowEvent) {
int thisOffsetJ = offsetJ;
int thisOffsetK = offsetK;
int thisOffsetL = offsetL;
for (int i = thisOffsetI; i <= (maxRange-thisOffsetI); ++i) {
for (int i = thisOffsetI; i <= maxRange; ++i) {
if(stopping) {
break;
} else {
offsetI = i;
}
for (int j = thisOffsetJ; j <= (255-thisOffsetJ); ++j) {
for (int j = thisOffsetJ; j <= 255; ++j) {
if(stopping) {
break;
} else {
offsetJ = j;
}
for (int k = thisOffsetK; k <= (255-thisOffsetK); ++k) {
for (int k = thisOffsetK; k <= 255; ++k) {
if(stopping) {
break;
} else {
offsetK = k;
}
for (int l = thisOffsetL; l <= (255-thisOffsetL); ++l) {
for (int l = thisOffsetL; l <= 255; ++l) {
String ip = "...";
if(stopping) {
break;
Expand All @@ -178,8 +178,11 @@ public void windowClosing(java.awt.event.WindowEvent windowEvent) {
threadList.clear();
}
}
thisOffsetL = 0;
}
thisOffsetK = 0;
}
thisOffsetJ = 0;
}

for (Thread nextThreadAgain: threadList) {
Expand Down

0 comments on commit 33fd331

Please sign in to comment.