Skip to content
This repository has been archived by the owner on May 27, 2023. It is now read-only.

Commit

Permalink
Changed spawn server port to match the proper one
Browse files Browse the repository at this point in the history
  • Loading branch information
Saboteur committed Aug 3, 2016
1 parent 7d647aa commit 5908910
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion SaboteurSniper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>xyz.saboteur.pokemongo</groupId>
<artifactId>SaboteurSniper</artifactId>
<version>2.13</version>
<version>2.14</version>

<repositories>
<repository>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import java.io.InputStream;
import java.net.URISyntaxException;
import java.net.URL;
import java.text.DecimalFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
Expand Down Expand Up @@ -64,8 +63,6 @@ public class MainWindow {
static JScrollPane scrollPane;
public JLabel lblStatus;
private String version;
private DecimalFormat ivFormat = new DecimalFormat("0.00");

public static MainWindow window;

private static PokemonGo go;
Expand Down Expand Up @@ -340,7 +337,7 @@ public void adjustmentValueChanged(AdjustmentEvent e) {
public void run() {
Socket socket;
try {
socket = IO.socket("http://spawns.sebastienvercammen.be:49002");
socket = IO.socket("http://spawns.sebastienvercammen.be:49005");
} catch (URISyntaxException e1) {
log(Log.ERROR, "Couldn't use socket. Try restarting the program?");
return;
Expand Down
2 changes: 1 addition & 1 deletion SaboteurSniper/src/main/resources/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2.13
version=2.14

0 comments on commit 5908910

Please sign in to comment.