mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-21 20:03:10 +01:00
Update TODO list
This commit is contained in:
parent
356a9657bb
commit
2f1eba845d
2 changed files with 1 additions and 3 deletions
|
@ -73,7 +73,6 @@ public final class HDSkinManager implements IResourceManagerReloadListener {
|
||||||
|
|
||||||
private Map<UUID, Map<Type, ResourceLocation>> skinCache = Maps.newHashMap();
|
private Map<UUID, Map<Type, ResourceLocation>> skinCache = Maps.newHashMap();
|
||||||
|
|
||||||
// TODO: Garggling marbles
|
|
||||||
private LoadingCache<GameProfile, Map<Type, MinecraftProfileTexture>> skins = CacheBuilder.newBuilder()
|
private LoadingCache<GameProfile, Map<Type, MinecraftProfileTexture>> skins = CacheBuilder.newBuilder()
|
||||||
.initialCapacity(20)
|
.initialCapacity(20)
|
||||||
.maximumSize(100)
|
.maximumSize(100)
|
||||||
|
@ -248,6 +247,7 @@ public final class HDSkinManager implements IResourceManagerReloadListener {
|
||||||
skinServers.add(skinServer);
|
skinServers.add(skinServer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Why is this deprecated?
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public SkinServer getGatewayServer() {
|
public SkinServer getGatewayServer() {
|
||||||
return skinServers.get(0);
|
return skinServers.get(0);
|
||||||
|
|
|
@ -20,8 +20,6 @@ import net.minecraft.util.ResourceLocation;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
|
|
||||||
// TODO: A lot of this duplicates RenderPonyPlayer
|
|
||||||
// and is the whole reason we had this scaling bug in the first place.
|
|
||||||
public abstract class RenderPonyMob<T extends EntityLiving> extends RenderLiving<T> implements IRenderPony<T> {
|
public abstract class RenderPonyMob<T extends EntityLiving> extends RenderLiving<T> implements IRenderPony<T> {
|
||||||
|
|
||||||
protected final RenderPony<T> renderPony = new RenderPony<T>(this);
|
protected final RenderPony<T> renderPony = new RenderPony<T>(this);
|
||||||
|
|
Loading…
Reference in a new issue