My mod in 1.2.5 extended the WorldType class just fine but now as I am trying to update to 1.3.1 I can't extend because WorldType is private.
1.3.1
private WorldType(int par1, String par2Str)
{
this(par1, par2Str, 0);
}
private WorldType(int par1, String par2Str, int par3)
{
1.2.5
protected WorldType(int par1, String par2Str)
{
this(par1, par2Str, 0);
}
protected WorldType(int par1, String par2Str, int par3)
{
Am I missing something or have I made nooby mistake? I can fix this by changing WorldType 1.3 to protected but its not an ideal fix. Any help would be appreciated.