mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-29 23:48:00 +01:00
Make DummyWorld singleton.
This commit is contained in:
parent
0ef8f810d7
commit
6ef13d9e9a
2 changed files with 30 additions and 27 deletions
|
@ -13,10 +13,14 @@ import net.minecraft.world.storage.WorldInfo;
|
|||
|
||||
public class DummyWorld extends World {
|
||||
|
||||
public DummyWorld() {
|
||||
super(null, new WorldInfo(
|
||||
new WorldSettings(0, GameType.NOT_SET, false, false, WorldType.DEFAULT), "MpServer"),
|
||||
new WorldProviderSurface(), null, true);
|
||||
public static final World INSTANCE = new DummyWorld();
|
||||
|
||||
private DummyWorld() {
|
||||
super(null,
|
||||
new WorldInfo(new WorldSettings(0, GameType.NOT_SET, false, false, WorldType.DEFAULT), "MpServer"),
|
||||
new WorldProviderSurface(),
|
||||
null,
|
||||
true);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -7,7 +7,6 @@ import com.mojang.authlib.minecraft.MinecraftProfileTexture.Type;
|
|||
import com.voxelmodpack.hdskins.LocalTexture;
|
||||
import com.voxelmodpack.hdskins.LocalTexture.IBlankSkinSupplier;
|
||||
import com.voxelmodpack.hdskins.SkinUploader;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.resources.SkinManager;
|
||||
import net.minecraft.entity.EntityLivingBase;
|
||||
|
@ -43,7 +42,7 @@ public class EntityPlayerModel extends EntityLivingBase implements IBlankSkinSup
|
|||
protected boolean previewThinArms = false;
|
||||
|
||||
public EntityPlayerModel(GameProfile gameprofile) {
|
||||
super(new DummyWorld());
|
||||
super(DummyWorld.INSTANCE);
|
||||
|
||||
profile = gameprofile;
|
||||
|
||||
|
|
Loading…
Reference in a new issue