Forgot that I need a noarg ctor. I'm so rusty.
This commit is contained in:
parent
a8cbbfcd99
commit
613c5edc7d
1 changed files with 6 additions and 1 deletions
|
@ -32,7 +32,12 @@ public abstract class FMLHandshakeMessage {
|
|||
public static class ServerHello extends FMLHandshakeMessage {
|
||||
private byte serverProtocolVersion;
|
||||
private int overrideDimension;
|
||||
public ServerHello(int overrideDim) {
|
||||
public ServerHello()
|
||||
{
|
||||
// noargs for the proto
|
||||
}
|
||||
public ServerHello(int overrideDim)
|
||||
{
|
||||
this.overrideDimension = overrideDim;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue