@@ -35,7 +35,7 @@ public class ForgeVersion
35
35
//This number is incremented every minecraft release, never reset
36
36
public static final int minorVersion = 16 ;
37
37
//This number is incremented every time a interface changes or new major feature is added, and reset every Minecraft version
38
- public static final int revisionVersion = 0 ;
38
+ public static final int revisionVersion = 1 ;
39
39
//This number is incremented every time Jenkins builds Forge, and never reset. Should always be 0 in the repo code.
40
40
public static final int buildVersion = 0 ;
41
41
// This is the minecraft version we're building for - used in various places in Forge/FML code
@@ -92,47 +92,47 @@ public static enum Status
92
92
AHEAD (),
93
93
BETA (),
94
94
BETA_OUTDATED (6 , true );
95
-
95
+
96
96
final int sheetOffset ;
97
97
final boolean draw , animated ;
98
98
99
99
Status ()
100
100
{
101
101
this (0 , false , false );
102
102
}
103
-
103
+
104
104
Status (int sheetOffset )
105
105
{
106
106
this (sheetOffset , true , false );
107
107
}
108
-
108
+
109
109
Status (int sheetOffset , boolean animated )
110
110
{
111
111
this (sheetOffset , true , animated );
112
112
}
113
-
113
+
114
114
Status (int sheetOffset , boolean draw , boolean animated )
115
115
{
116
116
this .sheetOffset = sheetOffset ;
117
117
this .draw = draw ;
118
118
this .animated = animated ;
119
119
}
120
-
120
+
121
121
public int getSheetOffset ()
122
122
{
123
123
return sheetOffset ;
124
124
}
125
-
125
+
126
126
public boolean shouldDraw ()
127
127
{
128
128
return draw ;
129
129
}
130
-
130
+
131
131
public boolean isAnimated ()
132
132
{
133
133
return animated ;
134
134
}
135
-
135
+
136
136
}
137
137
138
138
public static class CheckResult
0 commit comments