private AccessoryHandler() {
}
public static void addAccessory(String player, Accessory n, String url) {
TextureManager tm= Minecraft.getMinecraft().getTextureManager();
Object texture = new ThreadDownloadImageData(url, (ResourceLocation)null, new HDImageBufferDownload());
tm.loadTexture(new ResourceLocation("accessories/" + n.getType().toString()), (TextureObject)texture);
Set<Pair<Accessory, String>> acs = sacs.get(player);
if (acs == null) {
acs = new HashSet<Pair<Accessory, String>>();