mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-20 11:24:23 +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();
|
||||
|
||||
// TODO: Garggling marbles
|
||||
private LoadingCache<GameProfile, Map<Type, MinecraftProfileTexture>> skins = CacheBuilder.newBuilder()
|
||||
.initialCapacity(20)
|
||||
.maximumSize(100)
|
||||
|
@ -248,6 +247,7 @@ public final class HDSkinManager implements IResourceManagerReloadListener {
|
|||
skinServers.add(skinServer);
|
||||
}
|
||||
|
||||
// TODO: Why is this deprecated?
|
||||
@Deprecated
|
||||
public SkinServer getGatewayServer() {
|
||||
return skinServers.get(0);
|
||||
|
|
|
@ -20,8 +20,6 @@ import net.minecraft.util.ResourceLocation;
|
|||
|
||||
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> {
|
||||
|
||||
protected final RenderPony<T> renderPony = new RenderPony<T>(this);
|
||||
|
|
Loading…
Reference in a new issue