DhServerLevel use base shouldDoWorldGen()

@pshsh @s809 do you know why DhServerLevel overrode AbstractDhServerLevel?
In a quick test it appears using the super method worked just fine.
This commit is contained in:
James Seibel
2026-02-07 17:59:08 -06:00
parent 7201df1eff
commit 4faa82e895
@@ -51,10 +51,7 @@ public class DhServerLevel extends AbstractDhServerLevel
//=======//
@Override
public boolean shouldDoWorldGen()
{
return true; //todo;
}
public boolean shouldDoWorldGen() { return super.shouldDoWorldGen(); }
@Override
public DhBlockPos2D getTargetPosForGeneration()
{