A custom BC built from source at an arbitrary time is versionless. Versions are decided on release.
This commit is contained in:
parent
e9c0d29032
commit
e35e0f2240
2 changed files with 3 additions and 1 deletions
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
<property name="mc.version" value="1.5.1"/>
|
<property name="mc.version" value="1.5.1"/>
|
||||||
<property name="forge.version" value="7.7.0.604"/>
|
<property name="forge.version" value="7.7.0.604"/>
|
||||||
<property name="project.version" value="3.4.3"/>
|
<property name="project.version" value="0.0.0"/>
|
||||||
|
|
||||||
<property name="forge.name" value="minecraftforge-src-${mc.version}-${forge.version}.zip"/>
|
<property name="forge.name" value="minecraftforge-src-${mc.version}-${forge.version}.zip"/>
|
||||||
|
|
||||||
|
|
|
@ -63,6 +63,8 @@ public class Version implements Runnable {
|
||||||
public static void versionCheck() {
|
public static void versionCheck() {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
|
if ("0.0.0".equals(VERSION)) return;
|
||||||
|
|
||||||
String location = REMOTE_VERSION_FILE;
|
String location = REMOTE_VERSION_FILE;
|
||||||
HttpURLConnection conn = null;
|
HttpURLConnection conn = null;
|
||||||
while (location != null && !location.isEmpty()) {
|
while (location != null && !location.isEmpty()) {
|
||||||
|
|
Loading…
Reference in a new issue