From e35e0f22403759a7a00a8dbd96eed0cfc8301cba Mon Sep 17 00:00:00 2001 From: Krapht Date: Sat, 23 Mar 2013 18:06:10 +0100 Subject: [PATCH] A custom BC built from source at an arbitrary time is versionless. Versions are decided on release. --- build.xml | 2 +- common/buildcraft/core/Version.java | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/build.xml b/build.xml index 5a8807b3..15b69dda 100644 --- a/build.xml +++ b/build.xml @@ -19,7 +19,7 @@ - + diff --git a/common/buildcraft/core/Version.java b/common/buildcraft/core/Version.java index 2564f82f..b6110953 100644 --- a/common/buildcraft/core/Version.java +++ b/common/buildcraft/core/Version.java @@ -63,6 +63,8 @@ public class Version implements Runnable { public static void versionCheck() { try { + if ("0.0.0".equals(VERSION)) return; + String location = REMOTE_VERSION_FILE; HttpURLConnection conn = null; while (location != null && !location.isEmpty()) {