Fix version number.

This commit is contained in:
LexManos 2016-06-22 23:46:02 -07:00
parent 260be68723
commit 09e109cac0

View file

@ -52,11 +52,11 @@ public class ForgeVersion
//This number is incremented every time we remove deprecated code/major API changes, never reset
public static final int majorVersion = 12;
//This number is incremented every minecraft release, never reset
public static final int minorVersion = 17;
public static final int minorVersion = 18;
//This number is incremented every time a interface changes or new major feature is added, and reset every Minecraft version
public static final int revisionVersion = 0;
//This number is incremented every time Jenkins builds Forge, and never reset. Should always be 0 in the repo code.
public static final int buildVersion = 9999;
public static final int buildVersion = 0;
// This is the minecraft version we're building for - used in various places in Forge/FML code
public static final String mcVersion = "1.10";
// This is the MCP data version we're using