Advertisement
lol123406

Untitled

Apr 29th, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.80 KB | None | 0 0
  1. package net.Ethereal.main;
  2.  
  3. import java.util.HashMap;
  4. import java.util.Map;
  5.  
  6. import net.Ethereal.armor.ArmorModel;
  7. import net.Ethereal.armor.ArmorModelBackup;
  8. import net.minecraft.client.model.ModelBiped;
  9. import net.minecraft.item.Item;
  10.  
  11. public class ClientProxy extends ServerProxy {
  12.     public static final Map<Item, ModelBiped> armorModels = new HashMap<Item, ModelBiped>();
  13.    
  14.     public static void register_renderers(){
  15.        
  16.         ArmorModel custom_armor = new ArmorModel(1F);
  17.         ArmorModel custom_legs = new ArmorModel(0.5F);
  18.        
  19.         armorModels.put(EtherealMain.itemEtherealHelm, custom_armor);
  20.         armorModels.put(EtherealMain.itemEtherealChestplate, custom_armor);
  21.         armorModels.put(EtherealMain.itemEtherealPants, custom_legs);
  22.         armorModels.put(EtherealMain.itemEtherealBoots, custom_armor);
  23.  
  24.     }
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement