Skip to content

Commit aa672ea

Browse files
committed
Bump version for new RB.
1 parent 42404c5 commit aa672ea

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/main/java/net/minecraftforge/common/ForgeVersion.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class ForgeVersion
3535
//This number is incremented every minecraft release, never reset
3636
public static final int minorVersion = 16;
3737
//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;
3939
//This number is incremented every time Jenkins builds Forge, and never reset. Should always be 0 in the repo code.
4040
public static final int buildVersion = 0;
4141
// 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
9292
AHEAD(),
9393
BETA(),
9494
BETA_OUTDATED(6, true);
95-
95+
9696
final int sheetOffset;
9797
final boolean draw, animated;
9898

9999
Status()
100100
{
101101
this(0, false, false);
102102
}
103-
103+
104104
Status(int sheetOffset)
105105
{
106106
this(sheetOffset, true, false);
107107
}
108-
108+
109109
Status(int sheetOffset, boolean animated)
110110
{
111111
this(sheetOffset, true, animated);
112112
}
113-
113+
114114
Status(int sheetOffset, boolean draw, boolean animated)
115115
{
116116
this.sheetOffset = sheetOffset;
117117
this.draw = draw;
118118
this.animated = animated;
119119
}
120-
120+
121121
public int getSheetOffset()
122122
{
123123
return sheetOffset;
124124
}
125-
125+
126126
public boolean shouldDraw()
127127
{
128128
return draw;
129129
}
130-
130+
131131
public boolean isAnimated()
132132
{
133133
return animated;
134134
}
135-
135+
136136
}
137137

138138
public static class CheckResult

0 commit comments

Comments
 (0)