Skip to content

Commit

Permalink
v1.17 patch 4
Browse files Browse the repository at this point in the history
  • Loading branch information
StupidRepo committed Jul 19, 2023
1 parent 562817c commit 0481917
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# Changes
All notable changes to this project will be documented in `CHANGELOG.md`.

## Added
* Resuming function!
Nothing has been added.

## Modified
* ScannerThread checks if IP is in DB before even making a Socket for the IP.
* Fixed scanner setting `offset.mcscan` to 255.255.255.255

## Removed
Nothing has been removed.
* Debug prints

## TODOs
- [ ] Optimise IP generation and inital scanning code.[¹][1]
Expand Down
1 change: 0 additions & 1 deletion src/com/stupidrepo/mcscanner/MCScanner.java
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ public void windowClosing(java.awt.event.WindowEvent windowEvent) {
offsetK = k;
for (int l = thisOffsetL; l <= 255; ++l) {
offsetL = l;
System.out.println(String.format("%d%d%d%d", i, j, k, l));
String ip = i + "." + j + "." + k + "." + l;

ScannerThread scannerThread = new ScannerThread(ip, port, timeout, databaseHandler);
Expand Down

0 comments on commit 0481917

Please sign in to comment.