diff --git a/src/main/java/org/drtshock/Potato.java b/src/main/java/org/drtshock/Potato.java index 78c93cf7..eeb051e4 100644 --- a/src/main/java/org/drtshock/Potato.java +++ b/src/main/java/org/drtshock/Potato.java @@ -88,7 +88,7 @@ public boolean isPutIntoOven() throws OvenException, BurntException { final URL url = new URL("https://www.google.com/search?q=potato"); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("GET"); - connection.addRequestProperty("User-Agent", "Potato/1.7.5"); + connection.addRequestProperty("User-Agent", "Potato/2.0.0"); connection.connect(); int inOven = connection.getResponseCode(); long bakeTime = (System.currentTimeMillis() - begin);