Skip to content
This repository was archived by the owner on Jul 8, 2020. It is now read-only.

Commit 8e9aac0

Browse files
committed
Disallow SSL
Only temporary, I just need to switch to use Unirest for queries
1 parent 9428baa commit 8e9aac0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/net/mcapi/uuid/ServerRegion.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ public enum ServerRegion {
1313
/**
1414
* European servers
1515
*/
16-
EU("eu.mc-api.net", "Delta", "Zeta"),
16+
EU("eu.mc-api.net", false, "Delta", "Zeta"),
1717

1818
/**
1919
* American servers
2020
*/
21-
US("us.mc-api.net", "Iota"),
21+
US("us.mc-api.net", false, "Iota"),
2222

2323
/**
2424
* Australian servers
2525
*/
26-
AU("au.mc-api.net", "Zeus");
26+
AU("au.mc-api.net", false, "Zeus");
2727

2828
private String hostname;
2929
private boolean https = true;

0 commit comments

Comments
 (0)