This commit is contained in:
Kino 2017-03-21 23:19:39 -04:00
parent 5e121463d4
commit 71bf74d8df
343 changed files with 1078 additions and 1078 deletions

View file

@ -17,13 +17,13 @@ import net.minecraftforge.fml.common.gameevent.InputEvent.KeyInputEvent;
import com.legacy.aether.client.gui.AetherLoadingScreen;
import com.legacy.aether.client.gui.inventory.GuiAccessories;
import com.legacy.aether.server.AetherConfig;
import com.legacy.aether.server.containers.inventory.InventoryAccessories;
import com.legacy.aether.server.items.ItemsAether;
import com.legacy.aether.server.networking.AetherGuiHandler;
import com.legacy.aether.server.networking.AetherNetworkingManager;
import com.legacy.aether.server.networking.packets.PacketOpenContainer;
import com.legacy.aether.server.player.PlayerAether;
import com.legacy.aether.common.AetherConfig;
import com.legacy.aether.common.containers.inventory.InventoryAccessories;
import com.legacy.aether.common.items.ItemsAether;
import com.legacy.aether.common.networking.AetherGuiHandler;
import com.legacy.aether.common.networking.AetherNetworkingManager;
import com.legacy.aether.common.networking.packets.PacketOpenContainer;
import com.legacy.aether.common.player.PlayerAether;
public class AetherClientEvents
{

View file

@ -20,8 +20,8 @@ import net.minecraft.util.math.Vec3d;
import com.google.common.base.Predicate;
import com.google.common.base.Predicates;
import com.legacy.aether.server.entities.passive.mountable.EntityAerbunny;
import com.legacy.aether.server.player.PlayerAether;
import com.legacy.aether.common.entities.passive.mountable.EntityAerbunny;
import com.legacy.aether.common.player.PlayerAether;
public class AetherEntityRenderer extends EntityRenderer
{

View file

@ -18,8 +18,8 @@ import com.legacy.aether.client.gui.menu.AetherMenuHandler;
import com.legacy.aether.client.renders.AetherEntityRenderingRegistry;
import com.legacy.aether.client.renders.blocks.BlockRendering;
import com.legacy.aether.client.renders.items.ItemRendering;
import com.legacy.aether.server.AetherConfig;
import com.legacy.aether.server.ServerProxy;
import com.legacy.aether.common.AetherConfig;
import com.legacy.aether.common.ServerProxy;
public class ClientProxy extends ServerProxy
{

View file

@ -15,10 +15,10 @@ import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MathHelper;
import net.minecraftforge.fml.client.FMLClientHandler;
import com.legacy.aether.server.containers.inventory.InventoryAccessories;
import com.legacy.aether.server.items.ItemsAether;
import com.legacy.aether.server.items.accessories.ItemAccessory;
import com.legacy.aether.server.player.PlayerAether;
import com.legacy.aether.common.containers.inventory.InventoryAccessories;
import com.legacy.aether.common.items.ItemsAether;
import com.legacy.aether.common.items.accessories.ItemAccessory;
import com.legacy.aether.common.player.PlayerAether;
public class FirstPersonRenderer
{

View file

@ -12,8 +12,8 @@ import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import com.legacy.aether.client.audio.music.AetherMusicTicker;
import com.legacy.aether.server.AetherConfig;
import com.legacy.aether.server.registry.sounds.SoundsAether;
import com.legacy.aether.common.AetherConfig;
import com.legacy.aether.common.registry.sounds.SoundsAether;
public class AetherMusicHandler
{

View file

@ -12,8 +12,8 @@ import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import com.legacy.aether.client.gui.menu.GuiAetherMainMenu;
import com.legacy.aether.server.AetherConfig;
import com.legacy.aether.server.registry.sounds.SoundsAether;
import com.legacy.aether.common.AetherConfig;
import com.legacy.aether.common.registry.sounds.SoundsAether;
@SideOnly(Side.CLIENT)
public class AetherMusicTicker implements ITickable

View file

@ -10,7 +10,7 @@ import net.minecraftforge.client.event.RenderGameOverlayEvent.ElementType;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import com.legacy.aether.client.overlay.AetherOverlay;
import com.legacy.aether.server.player.PlayerAether;
import com.legacy.aether.common.player.PlayerAether;
public class GuiAetherInGame extends Gui
{

View file

@ -9,8 +9,8 @@ import net.minecraftforge.fml.relauncher.SideOnly;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.server.containers.ContainerEnchanter;
import com.legacy.aether.server.tile_entities.TileEntityEnchanter;
import com.legacy.aether.common.containers.ContainerEnchanter;
import com.legacy.aether.common.tile_entities.TileEntityEnchanter;
@SideOnly(Side.CLIENT)
public class GuiEnchanter extends GuiContainer

View file

@ -9,8 +9,8 @@ import net.minecraftforge.fml.relauncher.SideOnly;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.server.containers.ContainerFreezer;
import com.legacy.aether.server.tile_entities.TileEntityFreezer;
import com.legacy.aether.common.containers.ContainerFreezer;
import com.legacy.aether.common.tile_entities.TileEntityFreezer;
@SideOnly(Side.CLIENT)
public class GuiFreezer extends GuiContainer

View file

@ -9,8 +9,8 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.server.containers.ContainerIncubator;
import com.legacy.aether.server.tile_entities.TileEntityIncubator;
import com.legacy.aether.common.containers.ContainerIncubator;
import com.legacy.aether.common.tile_entities.TileEntityIncubator;
public class GuiIncubator extends GuiContainer
{

View file

@ -12,13 +12,13 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.server.containers.ContainerLore;
import com.legacy.aether.server.registry.lore.AetherLoreEntry;
import com.legacy.aether.server.registry.lore.EndLoreEntry;
import com.legacy.aether.server.registry.lore.NetherLoreEntry;
import com.legacy.aether.server.registry.lore.OverworldLoreEntry;
import com.legacy.aether.server.registry.objects.EntryInformation;
import com.legacy.aether.server.registry.objects.LoreEntry;
import com.legacy.aether.common.containers.ContainerLore;
import com.legacy.aether.common.registry.lore.AetherLoreEntry;
import com.legacy.aether.common.registry.lore.EndLoreEntry;
import com.legacy.aether.common.registry.lore.NetherLoreEntry;
import com.legacy.aether.common.registry.lore.OverworldLoreEntry;
import com.legacy.aether.common.registry.objects.EntryInformation;
import com.legacy.aether.common.registry.objects.LoreEntry;
public class GuiLore extends GuiContainer
{

View file

@ -12,9 +12,9 @@ import net.minecraftforge.fml.common.Loader;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.client.gui.button.GuiButtonPerks;
import com.legacy.aether.server.containers.ContainerAccessories;
import com.legacy.aether.server.player.PlayerAether;
import com.legacy.aether.server.player.perks.AetherRankings;
import com.legacy.aether.common.containers.ContainerAccessories;
import com.legacy.aether.common.player.PlayerAether;
import com.legacy.aether.common.player.perks.AetherRankings;
import com.legacy.aether.universal.AetherCompatibility;
public class GuiAccessories extends GuiInventory

View file

@ -10,14 +10,14 @@ import net.minecraft.client.gui.inventory.GuiInventory;
import org.lwjgl.input.Keyboard;
import com.legacy.aether.server.entities.passive.mountable.EntityMoa;
import com.legacy.aether.server.entities.util.MoaColor;
import com.legacy.aether.server.networking.AetherNetworkingManager;
import com.legacy.aether.server.networking.packets.PacketPerkChanged;
import com.legacy.aether.server.player.PlayerAether;
import com.legacy.aether.server.player.perks.AetherRankings;
import com.legacy.aether.server.player.perks.util.DonatorMoaSkin;
import com.legacy.aether.server.player.perks.util.EnumAetherPerkType;
import com.legacy.aether.common.entities.passive.mountable.EntityMoa;
import com.legacy.aether.common.entities.util.MoaColor;
import com.legacy.aether.common.networking.AetherNetworkingManager;
import com.legacy.aether.common.networking.packets.PacketPerkChanged;
import com.legacy.aether.common.player.PlayerAether;
import com.legacy.aether.common.player.perks.AetherRankings;
import com.legacy.aether.common.player.perks.util.DonatorMoaSkin;
import com.legacy.aether.common.player.perks.util.EnumAetherPerkType;
public class GuiAetherPerks extends GuiScreen
{

View file

@ -31,8 +31,8 @@ import com.legacy.aether.client.gui.button.GuiAetherButton;
import com.legacy.aether.client.gui.button.GuiDescButton;
import com.legacy.aether.client.gui.menu.hook.GuiMultiplayerHook;
import com.legacy.aether.client.gui.menu.hook.GuiWorldSelectionHook;
import com.legacy.aether.server.networking.AetherNetworkingManager;
import com.legacy.aether.server.networking.packets.PacketGameType;
import com.legacy.aether.common.networking.AetherNetworkingManager;
import com.legacy.aether.common.networking.packets.PacketGameType;
public class GuiAetherMainMenu extends GuiScreen
{

View file

@ -9,7 +9,7 @@ import net.minecraft.inventory.EntityEquipmentSlot;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import com.legacy.aether.server.items.armor.ItemAetherArmor;
import com.legacy.aether.common.items.armor.ItemAetherArmor;
public class ModelColoredArmor extends ModelBiped
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.model.ModelRenderer;
import net.minecraft.client.renderer.GlStateManager;
import net.minecraft.entity.Entity;
import com.legacy.aether.server.entities.passive.mountable.EntityFlyingCow;
import com.legacy.aether.common.entities.passive.mountable.EntityFlyingCow;
public class FlyingCowWingModel extends ModelBase
{

View file

@ -4,7 +4,7 @@ import net.minecraft.client.model.ModelBase;
import net.minecraft.client.model.ModelRenderer;
import net.minecraft.entity.Entity;
import com.legacy.aether.server.entities.hostile.EntityMimic;
import com.legacy.aether.common.entities.hostile.EntityMimic;
public class MimicModel extends ModelBase
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.model.ModelRenderer;
import net.minecraft.client.renderer.GlStateManager;
import net.minecraft.entity.Entity;
import com.legacy.aether.server.entities.passive.mountable.EntityPhyg;
import com.legacy.aether.common.entities.passive.mountable.EntityPhyg;
public class PhygWingModel extends ModelBase
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.model.ModelRenderer;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import com.legacy.aether.server.entities.passive.EntitySheepuff;
import com.legacy.aether.common.entities.passive.EntitySheepuff;
public class SheepuffModel extends ModelQuadruped
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.model.ModelRenderer;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import com.legacy.aether.server.entities.passive.EntitySheepuff;
import com.legacy.aether.common.entities.passive.EntitySheepuff;
public class SheepuffWoolModel extends ModelQuadruped
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.model.ModelRenderer;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import com.legacy.aether.server.entities.passive.EntitySheepuff;
import com.legacy.aether.common.entities.passive.EntitySheepuff;
public class SheepuffedModel extends ModelQuadruped
{

View file

@ -6,7 +6,7 @@ import net.minecraft.client.renderer.GlStateManager;
import net.minecraft.entity.Entity;
import net.minecraft.util.math.MathHelper;
import com.legacy.aether.server.entities.bosses.sun_spirit.EntitySunSpirit;
import com.legacy.aether.common.entities.bosses.sun_spirit.EntitySunSpirit;
public class SunSpiritModel extends ModelBiped
{

View file

@ -14,17 +14,17 @@ import net.minecraft.client.renderer.texture.TextureMap;
import net.minecraft.client.renderer.vertex.DefaultVertexFormats;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import com.legacy.aether.server.entities.bosses.slider.EntitySlider;
import com.legacy.aether.server.entities.bosses.sun_spirit.EntitySunSpirit;
import com.legacy.aether.server.entities.bosses.valkyrie_queen.EntityValkyrieQueen;
import com.legacy.aether.server.entities.passive.mountable.EntityMoa;
import com.legacy.aether.server.items.ItemsAether;
import com.legacy.aether.server.player.PlayerAether;
import com.legacy.aether.common.blocks.BlocksAether;
import com.legacy.aether.common.entities.bosses.slider.EntitySlider;
import com.legacy.aether.common.entities.bosses.sun_spirit.EntitySunSpirit;
import com.legacy.aether.common.entities.bosses.valkyrie_queen.EntityValkyrieQueen;
import com.legacy.aether.common.entities.passive.mountable.EntityMoa;
import com.legacy.aether.common.items.ItemsAether;
import com.legacy.aether.common.player.PlayerAether;
@SideOnly(Side.CLIENT)
public class AetherOverlay
@ -244,7 +244,7 @@ public class AetherOverlay
GlStateManager.tryBlendFuncSeparate(GlStateManager.SourceFactor.SRC_ALPHA, GlStateManager.DestFactor.ONE_MINUS_SRC_ALPHA, GlStateManager.SourceFactor.ONE, GlStateManager.DestFactor.ZERO);
GlStateManager.color(1.0F, 1.0F, 1.0F, timeInPortal);
Minecraft.getMinecraft().getTextureManager().bindTexture(TextureMap.LOCATION_BLOCKS_TEXTURE);
TextureAtlasSprite textureatlassprite = Minecraft.getMinecraft().getBlockRendererDispatcher().getBlockModelShapes().getTexture(Blocks.PORTAL.getDefaultState());
TextureAtlasSprite textureatlassprite = Minecraft.getMinecraft().getBlockRendererDispatcher().getBlockModelShapes().getTexture(BlocksAether.aether_portal.getDefaultState());
float f = textureatlassprite.getMinU();
float f1 = textureatlassprite.getMinV();
float f2 = textureatlassprite.getMaxU();

View file

@ -40,41 +40,41 @@ import com.legacy.aether.client.renders.entities.factory.ValkyrieQueenFactory;
import com.legacy.aether.client.renders.entities.factory.ZephyrFactory;
import com.legacy.aether.client.renders.entities.factory.ZephyrSnowballFactory;
import com.legacy.aether.client.renders.entities.layer.AccessoriesLayer;
import com.legacy.aether.server.blocks.BlocksAether;
import com.legacy.aether.server.entities.block.EntityFloatingBlock;
import com.legacy.aether.server.entities.block.EntityTNTPresent;
import com.legacy.aether.server.entities.bosses.EntityFireMinion;
import com.legacy.aether.server.entities.bosses.EntityValkyrie;
import com.legacy.aether.server.entities.bosses.slider.EntitySlider;
import com.legacy.aether.server.entities.bosses.sun_spirit.EntitySunSpirit;
import com.legacy.aether.server.entities.bosses.valkyrie_queen.EntityValkyrieQueen;
import com.legacy.aether.server.entities.hostile.EntityAechorPlant;
import com.legacy.aether.server.entities.hostile.EntityCockatrice;
import com.legacy.aether.server.entities.hostile.EntityMimic;
import com.legacy.aether.server.entities.hostile.EntitySentry;
import com.legacy.aether.server.entities.hostile.EntityZephyr;
import com.legacy.aether.server.entities.passive.EntityAerwhale;
import com.legacy.aether.server.entities.passive.EntityMiniCloud;
import com.legacy.aether.server.entities.passive.EntitySheepuff;
import com.legacy.aether.server.entities.passive.mountable.EntityAerbunny;
import com.legacy.aether.server.entities.passive.mountable.EntityFlyingCow;
import com.legacy.aether.server.entities.passive.mountable.EntityMoa;
import com.legacy.aether.server.entities.passive.mountable.EntityParachute;
import com.legacy.aether.server.entities.passive.mountable.EntityPhyg;
import com.legacy.aether.server.entities.passive.mountable.EntitySwet;
import com.legacy.aether.server.entities.projectile.EntityHammerProjectile;
import com.legacy.aether.server.entities.projectile.EntityLightningKnife;
import com.legacy.aether.server.entities.projectile.EntityPhoenixArrow;
import com.legacy.aether.server.entities.projectile.EntityPoisonNeedle;
import com.legacy.aether.server.entities.projectile.EntityZephyrSnowball;
import com.legacy.aether.server.entities.projectile.crystals.EntityFireBall;
import com.legacy.aether.server.entities.projectile.crystals.EntityIceyBall;
import com.legacy.aether.server.entities.projectile.crystals.EntityThunderBall;
import com.legacy.aether.server.entities.projectile.darts.EntityDartEnchanted;
import com.legacy.aether.server.entities.projectile.darts.EntityDartGolden;
import com.legacy.aether.server.entities.projectile.darts.EntityDartPoison;
import com.legacy.aether.server.tile_entities.TileEntityChestMimic;
import com.legacy.aether.server.tile_entities.TileEntityTreasureChest;
import com.legacy.aether.common.blocks.BlocksAether;
import com.legacy.aether.common.entities.block.EntityFloatingBlock;
import com.legacy.aether.common.entities.block.EntityTNTPresent;
import com.legacy.aether.common.entities.bosses.EntityFireMinion;
import com.legacy.aether.common.entities.bosses.EntityValkyrie;
import com.legacy.aether.common.entities.bosses.slider.EntitySlider;
import com.legacy.aether.common.entities.bosses.sun_spirit.EntitySunSpirit;
import com.legacy.aether.common.entities.bosses.valkyrie_queen.EntityValkyrieQueen;
import com.legacy.aether.common.entities.hostile.EntityAechorPlant;
import com.legacy.aether.common.entities.hostile.EntityCockatrice;
import com.legacy.aether.common.entities.hostile.EntityMimic;
import com.legacy.aether.common.entities.hostile.EntitySentry;
import com.legacy.aether.common.entities.hostile.EntityZephyr;
import com.legacy.aether.common.entities.passive.EntityAerwhale;
import com.legacy.aether.common.entities.passive.EntityMiniCloud;
import com.legacy.aether.common.entities.passive.EntitySheepuff;
import com.legacy.aether.common.entities.passive.mountable.EntityAerbunny;
import com.legacy.aether.common.entities.passive.mountable.EntityFlyingCow;
import com.legacy.aether.common.entities.passive.mountable.EntityMoa;
import com.legacy.aether.common.entities.passive.mountable.EntityParachute;
import com.legacy.aether.common.entities.passive.mountable.EntityPhyg;
import com.legacy.aether.common.entities.passive.mountable.EntitySwet;
import com.legacy.aether.common.entities.projectile.EntityHammerProjectile;
import com.legacy.aether.common.entities.projectile.EntityLightningKnife;
import com.legacy.aether.common.entities.projectile.EntityPhoenixArrow;
import com.legacy.aether.common.entities.projectile.EntityPoisonNeedle;
import com.legacy.aether.common.entities.projectile.EntityZephyrSnowball;
import com.legacy.aether.common.entities.projectile.crystals.EntityFireBall;
import com.legacy.aether.common.entities.projectile.crystals.EntityIceyBall;
import com.legacy.aether.common.entities.projectile.crystals.EntityThunderBall;
import com.legacy.aether.common.entities.projectile.darts.EntityDartEnchanted;
import com.legacy.aether.common.entities.projectile.darts.EntityDartGolden;
import com.legacy.aether.common.entities.projectile.darts.EntityDartPoison;
import com.legacy.aether.common.tile_entities.TileEntityChestMimic;
import com.legacy.aether.common.tile_entities.TileEntityTreasureChest;
public class AetherEntityRenderingRegistry
{

View file

@ -4,7 +4,7 @@ import net.minecraft.client.renderer.tileentity.TileEntityChestRenderer;
import net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher;
import net.minecraft.tileentity.TileEntityChest;
import com.legacy.aether.server.tile_entities.TileEntityChestMimic;
import com.legacy.aether.common.tile_entities.TileEntityChestMimic;
public class ChestMimicRenderer extends TileEntityChestRenderer
{

View file

@ -12,8 +12,8 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GL12;
import com.legacy.aether.server.blocks.dungeon.BlockTreasureChest;
import com.legacy.aether.server.tile_entities.TileEntityTreasureChest;
import com.legacy.aether.common.blocks.dungeon.BlockTreasureChest;
import com.legacy.aether.common.tile_entities.TileEntityTreasureChest;
public class TreasureChestRenderer extends TileEntitySpecialRenderer<TileEntityTreasureChest>
{

View file

@ -10,14 +10,14 @@ import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.renders.AetherEntityRenderingRegistry;
import com.legacy.aether.client.renders.items.util.AetherColor;
import com.legacy.aether.server.Aether;
import com.legacy.aether.server.blocks.BlocksAether;
import com.legacy.aether.server.blocks.util.EnumCloudType;
import com.legacy.aether.server.blocks.util.EnumCrystalType;
import com.legacy.aether.server.blocks.util.EnumHolidayType;
import com.legacy.aether.server.blocks.util.EnumLeafType;
import com.legacy.aether.server.blocks.util.EnumLogType;
import com.legacy.aether.server.blocks.util.EnumStoneType;
import com.legacy.aether.common.Aether;
import com.legacy.aether.common.blocks.BlocksAether;
import com.legacy.aether.common.blocks.util.EnumCloudType;
import com.legacy.aether.common.blocks.util.EnumCrystalType;
import com.legacy.aether.common.blocks.util.EnumHolidayType;
import com.legacy.aether.common.blocks.util.EnumLeafType;
import com.legacy.aether.common.blocks.util.EnumLogType;
import com.legacy.aether.common.blocks.util.EnumStoneType;
public class BlockRendering
{

View file

@ -7,7 +7,7 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.client.models.entities.AechorPlantModel;
import com.legacy.aether.server.entities.hostile.EntityAechorPlant;
import com.legacy.aether.common.entities.hostile.EntityAechorPlant;
public class AechorPlantRenderer extends RenderLiving<EntityAechorPlant>
{

View file

@ -7,7 +7,7 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.client.models.entities.AerbunnyModel;
import com.legacy.aether.server.entities.passive.mountable.EntityAerbunny;
import com.legacy.aether.common.entities.passive.mountable.EntityAerbunny;
public class AerbunnyRenderer extends RenderLiving<EntityAerbunny>
{

View file

@ -7,7 +7,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.AerwhaleModel;
import com.legacy.aether.server.entities.passive.EntityAerwhale;
import com.legacy.aether.common.entities.passive.EntityAerwhale;
public class AerwhaleRenderer extends Render<EntityAerwhale>
{

View file

@ -8,7 +8,7 @@ import net.minecraft.util.math.MathHelper;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.client.models.entities.CockatriceModel;
import com.legacy.aether.server.entities.hostile.EntityCockatrice;
import com.legacy.aether.common.entities.hostile.EntityCockatrice;
public class CockatriceRenderer extends RenderLiving<EntityCockatrice>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.SunSpiritModel;
import com.legacy.aether.server.entities.bosses.EntityFireMinion;
import com.legacy.aether.common.entities.bosses.EntityFireMinion;
public class FireMinionRenderer extends RenderBiped<EntityFireMinion>
{

View file

@ -14,7 +14,7 @@ import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import com.legacy.aether.server.entities.block.EntityFloatingBlock;
import com.legacy.aether.common.entities.block.EntityFloatingBlock;
public class FloatingBlockRenderer extends Render<EntityFloatingBlock>
{

View file

@ -6,7 +6,7 @@ import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.FlyingCowModel;
import com.legacy.aether.client.renders.entities.layer.FlyingCowWingLayer;
import com.legacy.aether.server.entities.passive.mountable.EntityFlyingCow;
import com.legacy.aether.common.entities.passive.mountable.EntityFlyingCow;
public class FlyingCowRenderer extends RenderLiving<EntityFlyingCow>
{

View file

@ -6,7 +6,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.MimicModel;
import com.legacy.aether.server.entities.hostile.EntityMimic;
import com.legacy.aether.common.entities.hostile.EntityMimic;
public class MimicRenderer extends RenderLiving<EntityMimic>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.MiniCloudModel;
import com.legacy.aether.server.entities.passive.EntityMiniCloud;
import com.legacy.aether.common.entities.passive.EntityMiniCloud;
public class MiniCloudRenderer extends RenderLiving<EntityMiniCloud>
{

View file

@ -11,8 +11,8 @@ import org.lwjgl.opengl.GL11;
import com.legacy.aether.client.models.entities.MoaModel;
import com.legacy.aether.client.renders.entities.layer.MoaDonatorLayer;
import com.legacy.aether.client.renders.entities.layer.MoaLayer;
import com.legacy.aether.server.entities.passive.mountable.EntityMoa;
import com.legacy.aether.server.player.PlayerAether;
import com.legacy.aether.common.entities.passive.mountable.EntityMoa;
import com.legacy.aether.common.player.PlayerAether;
public class MoaRenderer extends RenderLiving<EntityMoa>
{

View file

@ -8,10 +8,10 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.client.renderer.texture.TextureMap;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.server.blocks.BlocksAether;
import com.legacy.aether.server.blocks.natural.BlockAercloud;
import com.legacy.aether.server.blocks.util.EnumCloudType;
import com.legacy.aether.server.entities.passive.mountable.EntityParachute;
import com.legacy.aether.common.blocks.BlocksAether;
import com.legacy.aether.common.blocks.natural.BlockAercloud;
import com.legacy.aether.common.blocks.util.EnumCloudType;
import com.legacy.aether.common.entities.passive.mountable.EntityParachute;
public class ParachuteRenderer extends Render<EntityParachute>
{

View file

@ -6,7 +6,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.renders.entities.layer.PhygWingLayer;
import com.legacy.aether.server.entities.passive.mountable.EntityPhyg;
import com.legacy.aether.common.entities.passive.mountable.EntityPhyg;
public class PhygRenderer extends RenderLiving<EntityPhyg>
{

View file

@ -8,7 +8,7 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.client.renders.entities.layer.SentryLayer;
import com.legacy.aether.server.entities.hostile.EntitySentry;
import com.legacy.aether.common.entities.hostile.EntitySentry;
public class SentryRenderer extends RenderLiving<EntitySentry>
{

View file

@ -6,7 +6,7 @@ import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.SheepuffWoolModel;
import com.legacy.aether.client.renders.entities.layer.SheepuffCoatLayer;
import com.legacy.aether.server.entities.passive.EntitySheepuff;
import com.legacy.aether.common.entities.passive.EntitySheepuff;
public class SheepuffRenderer extends RenderLiving<EntitySheepuff>
{

View file

@ -6,7 +6,7 @@ import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.SliderModel;
import com.legacy.aether.client.renders.entities.layer.SliderLayer;
import com.legacy.aether.server.entities.bosses.slider.EntitySlider;
import com.legacy.aether.common.entities.bosses.slider.EntitySlider;
public class SliderRenderer extends RenderLiving<EntitySlider>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.SunSpiritModel;
import com.legacy.aether.server.entities.bosses.sun_spirit.EntitySunSpirit;
import com.legacy.aether.common.entities.bosses.sun_spirit.EntitySunSpirit;
public class SunSpiritRenderer extends RenderBiped<EntitySunSpirit>
{

View file

@ -8,7 +8,7 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.client.renders.entities.layer.SwetLayer;
import com.legacy.aether.server.entities.passive.mountable.EntitySwet;
import com.legacy.aether.common.entities.passive.mountable.EntitySwet;
public class SwetRenderer extends RenderLiving<EntitySwet>
{

View file

@ -9,8 +9,8 @@ import net.minecraft.client.renderer.texture.TextureMap;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.math.MathHelper;
import com.legacy.aether.server.blocks.BlocksAether;
import com.legacy.aether.server.entities.block.EntityTNTPresent;
import com.legacy.aether.common.blocks.BlocksAether;
import com.legacy.aether.common.entities.block.EntityTNTPresent;
public class TNTPresentRenderer extends Render<EntityTNTPresent>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.ValkyrieModel;
import com.legacy.aether.server.entities.bosses.valkyrie_queen.EntityValkyrieQueen;
import com.legacy.aether.common.entities.bosses.valkyrie_queen.EntityValkyrieQueen;
public class ValkyrieQueenRenderer extends RenderLiving<EntityValkyrieQueen>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.ValkyrieModel;
import com.legacy.aether.server.entities.bosses.EntityValkyrie;
import com.legacy.aether.common.entities.bosses.EntityValkyrie;
public class ValkyrieRenderer extends RenderLiving<EntityValkyrie>
{

View file

@ -6,7 +6,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.ZephyrModel;
import com.legacy.aether.server.entities.hostile.EntityZephyr;
import com.legacy.aether.common.entities.hostile.EntityZephyr;
public class ZephyrRenderer extends RenderLiving<EntityZephyr>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.AechorPlantRenderer;
import com.legacy.aether.server.entities.hostile.EntityAechorPlant;
import com.legacy.aether.common.entities.hostile.EntityAechorPlant;
public class AechorPlantFactory implements IRenderFactory<EntityAechorPlant>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.AerbunnyRenderer;
import com.legacy.aether.server.entities.passive.mountable.EntityAerbunny;
import com.legacy.aether.common.entities.passive.mountable.EntityAerbunny;
public class AerbunnyFactory implements IRenderFactory<EntityAerbunny>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.AerwhaleRenderer;
import com.legacy.aether.server.entities.passive.EntityAerwhale;
import com.legacy.aether.common.entities.passive.EntityAerwhale;
public class AerwhaleFactory implements IRenderFactory<EntityAerwhale>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.CockatriceRenderer;
import com.legacy.aether.server.entities.hostile.EntityCockatrice;
import com.legacy.aether.common.entities.hostile.EntityCockatrice;
public class CockatriceFactory implements IRenderFactory<EntityCockatrice>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.projectile.DartBaseRenderer;
import com.legacy.aether.server.entities.projectile.darts.EntityDartBase;
import com.legacy.aether.common.entities.projectile.darts.EntityDartBase;
public class DartFactory<ENTITY extends EntityDartBase> implements IRenderFactory<ENTITY>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.projectile.FireBallRenderer;
import com.legacy.aether.server.entities.projectile.crystals.EntityFireBall;
import com.legacy.aether.common.entities.projectile.crystals.EntityFireBall;
public class FireBallFactory implements IRenderFactory<EntityFireBall>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.FireMinionRenderer;
import com.legacy.aether.server.entities.bosses.EntityFireMinion;
import com.legacy.aether.common.entities.bosses.EntityFireMinion;
public class FireMinionFactory implements IRenderFactory<EntityFireMinion>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.FloatingBlockRenderer;
import com.legacy.aether.server.entities.block.EntityFloatingBlock;
import com.legacy.aether.common.entities.block.EntityFloatingBlock;
public class FloatingBlockFactory implements IRenderFactory<EntityFloatingBlock>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.FlyingCowRenderer;
import com.legacy.aether.server.entities.passive.mountable.EntityFlyingCow;
import com.legacy.aether.common.entities.passive.mountable.EntityFlyingCow;
public class FlyingCowFactory implements IRenderFactory<EntityFlyingCow>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.projectile.HammerProjectileRenderer;
import com.legacy.aether.server.entities.projectile.EntityHammerProjectile;
import com.legacy.aether.common.entities.projectile.EntityHammerProjectile;
public class HammerProjectileFactory implements IRenderFactory<EntityHammerProjectile>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.projectile.IceyBallRenderer;
import com.legacy.aether.server.entities.projectile.crystals.EntityIceyBall;
import com.legacy.aether.common.entities.projectile.crystals.EntityIceyBall;
public class IceyBallFactory implements IRenderFactory<EntityIceyBall>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.projectile.LightningKnifeRenderer;
import com.legacy.aether.server.entities.projectile.EntityLightningKnife;
import com.legacy.aether.common.entities.projectile.EntityLightningKnife;
public class LightningKnifeFactory implements IRenderFactory<EntityLightningKnife>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.MimicRenderer;
import com.legacy.aether.server.entities.hostile.EntityMimic;
import com.legacy.aether.common.entities.hostile.EntityMimic;
public class MimicFactory implements IRenderFactory<EntityMimic>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.MiniCloudRenderer;
import com.legacy.aether.server.entities.passive.EntityMiniCloud;
import com.legacy.aether.common.entities.passive.EntityMiniCloud;
public class MiniCloudFactory implements IRenderFactory<EntityMiniCloud>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.MoaRenderer;
import com.legacy.aether.server.entities.passive.mountable.EntityMoa;
import com.legacy.aether.common.entities.passive.mountable.EntityMoa;
public class MoaFactory implements IRenderFactory<EntityMoa>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.ParachuteRenderer;
import com.legacy.aether.server.entities.passive.mountable.EntityParachute;
import com.legacy.aether.common.entities.passive.mountable.EntityParachute;
public class ParachuteFactory implements IRenderFactory<EntityParachute>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.projectile.PhoenixArrowRenderer;
import com.legacy.aether.server.entities.projectile.EntityPhoenixArrow;
import com.legacy.aether.common.entities.projectile.EntityPhoenixArrow;
public class PhoenixArrowFactory implements IRenderFactory<EntityPhoenixArrow>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.PhygRenderer;
import com.legacy.aether.server.entities.passive.mountable.EntityPhyg;
import com.legacy.aether.common.entities.passive.mountable.EntityPhyg;
public class PhygFactory implements IRenderFactory<EntityPhyg>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.SentryRenderer;
import com.legacy.aether.server.entities.hostile.EntitySentry;
import com.legacy.aether.common.entities.hostile.EntitySentry;
public class SentryFactory implements IRenderFactory<EntitySentry>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.SheepuffRenderer;
import com.legacy.aether.server.entities.passive.EntitySheepuff;
import com.legacy.aether.common.entities.passive.EntitySheepuff;
public class SheepuffFactory implements IRenderFactory<EntitySheepuff>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.SliderRenderer;
import com.legacy.aether.server.entities.bosses.slider.EntitySlider;
import com.legacy.aether.common.entities.bosses.slider.EntitySlider;
public class SliderFactory implements IRenderFactory<EntitySlider>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.SunSpiritRenderer;
import com.legacy.aether.server.entities.bosses.sun_spirit.EntitySunSpirit;
import com.legacy.aether.common.entities.bosses.sun_spirit.EntitySunSpirit;
public class SunSpiritFactory implements IRenderFactory<EntitySunSpirit>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.SwetRenderer;
import com.legacy.aether.server.entities.passive.mountable.EntitySwet;
import com.legacy.aether.common.entities.passive.mountable.EntitySwet;
public class SwetFactory implements IRenderFactory<EntitySwet>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.TNTPresentRenderer;
import com.legacy.aether.server.entities.block.EntityTNTPresent;
import com.legacy.aether.common.entities.block.EntityTNTPresent;
public class TNTPresentFactory implements IRenderFactory<EntityTNTPresent>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.projectile.ThunderBallRenderer;
import com.legacy.aether.server.entities.projectile.crystals.EntityThunderBall;
import com.legacy.aether.common.entities.projectile.crystals.EntityThunderBall;
public class ThunderBallFactory implements IRenderFactory<EntityThunderBall>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.ValkyrieRenderer;
import com.legacy.aether.server.entities.bosses.EntityValkyrie;
import com.legacy.aether.common.entities.bosses.EntityValkyrie;
public class ValkyrieFactory implements IRenderFactory<EntityValkyrie>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.ValkyrieQueenRenderer;
import com.legacy.aether.server.entities.bosses.valkyrie_queen.EntityValkyrieQueen;
import com.legacy.aether.common.entities.bosses.valkyrie_queen.EntityValkyrieQueen;
public class ValkyrieQueenFactory implements IRenderFactory<EntityValkyrieQueen>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.ZephyrRenderer;
import com.legacy.aether.server.entities.hostile.EntityZephyr;
import com.legacy.aether.common.entities.hostile.EntityZephyr;
public class ZephyrFactory implements IRenderFactory<EntityZephyr>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraftforge.fml.client.registry.IRenderFactory;
import com.legacy.aether.client.renders.entities.projectile.ZephyrSnowballRenderer;
import com.legacy.aether.server.entities.projectile.EntityZephyrSnowball;
import com.legacy.aether.common.entities.projectile.EntityZephyrSnowball;
public class ZephyrSnowballFactory implements IRenderFactory<EntityZephyrSnowball>
{

View file

@ -13,11 +13,11 @@ import net.minecraft.util.math.MathHelper;
import com.legacy.aether.client.models.attachments.ModelAetherWings;
import com.legacy.aether.client.models.attachments.ModelHalo;
import com.legacy.aether.server.containers.inventory.InventoryAccessories;
import com.legacy.aether.server.items.ItemsAether;
import com.legacy.aether.server.items.accessories.ItemAccessory;
import com.legacy.aether.server.player.PlayerAether;
import com.legacy.aether.server.player.perks.AetherRankings;
import com.legacy.aether.common.containers.inventory.InventoryAccessories;
import com.legacy.aether.common.items.ItemsAether;
import com.legacy.aether.common.items.accessories.ItemAccessory;
import com.legacy.aether.common.player.PlayerAether;
import com.legacy.aether.common.player.perks.AetherRankings;
public class AccessoriesLayer implements LayerRenderer<AbstractClientPlayer>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.layers.LayerRenderer;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.FlyingCowWingModel;
import com.legacy.aether.server.entities.passive.mountable.EntityFlyingCow;
import com.legacy.aether.common.entities.passive.mountable.EntityFlyingCow;
public class FlyingCowWingLayer implements LayerRenderer<EntityFlyingCow>
{

View file

@ -7,9 +7,9 @@ import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.MoaModel;
import com.legacy.aether.server.entities.passive.mountable.EntityMoa;
import com.legacy.aether.server.player.PlayerAether;
import com.legacy.aether.server.player.perks.util.DonatorMoaSkin;
import com.legacy.aether.common.entities.passive.mountable.EntityMoa;
import com.legacy.aether.common.player.PlayerAether;
import com.legacy.aether.common.player.perks.util.DonatorMoaSkin;
public class MoaDonatorLayer implements LayerRenderer<EntityMoa>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.layers.LayerRenderer;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.MoaModel;
import com.legacy.aether.server.entities.passive.mountable.EntityMoa;
import com.legacy.aether.common.entities.passive.mountable.EntityMoa;
public class MoaLayer implements LayerRenderer<EntityMoa>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.layers.LayerRenderer;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.PhygWingModel;
import com.legacy.aether.server.entities.passive.mountable.EntityPhyg;
import com.legacy.aether.common.entities.passive.mountable.EntityPhyg;
public class PhygWingLayer implements LayerRenderer<EntityPhyg>
{

View file

@ -8,7 +8,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.client.renderer.entity.layers.LayerRenderer;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.server.entities.hostile.EntitySentry;
import com.legacy.aether.common.entities.hostile.EntitySentry;
public class SentryLayer implements LayerRenderer<EntitySentry>
{

View file

@ -10,7 +10,7 @@ import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.SheepuffModel;
import com.legacy.aether.client.models.entities.SheepuffedModel;
import com.legacy.aether.client.renders.entities.SheepuffRenderer;
import com.legacy.aether.server.entities.passive.EntitySheepuff;
import com.legacy.aether.common.entities.passive.EntitySheepuff;
public class SheepuffCoatLayer implements LayerRenderer<EntitySheepuff>
{

View file

@ -8,7 +8,7 @@ import net.minecraft.client.renderer.entity.layers.LayerRenderer;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.SliderModel;
import com.legacy.aether.server.entities.bosses.slider.EntitySlider;
import com.legacy.aether.common.entities.bosses.slider.EntitySlider;
public class SliderLayer implements LayerRenderer<EntitySlider>
{

View file

@ -8,7 +8,7 @@ import net.minecraft.client.renderer.entity.layers.LayerRenderer;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.client.renders.entities.SwetRenderer;
import com.legacy.aether.server.entities.passive.mountable.EntitySwet;
import com.legacy.aether.common.entities.passive.mountable.EntitySwet;
public class SwetLayer implements LayerRenderer<EntitySwet>
{

View file

@ -11,9 +11,9 @@ import net.minecraft.util.math.MathHelper;
import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GL12;
import com.legacy.aether.server.entities.projectile.darts.EntityDartBase;
import com.legacy.aether.server.entities.projectile.darts.EntityDartEnchanted;
import com.legacy.aether.server.entities.projectile.darts.EntityDartGolden;
import com.legacy.aether.common.entities.projectile.darts.EntityDartBase;
import com.legacy.aether.common.entities.projectile.darts.EntityDartEnchanted;
import com.legacy.aether.common.entities.projectile.darts.EntityDartGolden;
public class DartBaseRenderer<DART extends EntityDartBase> extends Render<DART>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.CrystalModel;
import com.legacy.aether.server.entities.projectile.crystals.EntityFireBall;
import com.legacy.aether.common.entities.projectile.crystals.EntityFireBall;
public class FireBallRenderer extends RenderLiving<EntityFireBall>
{

View file

@ -10,8 +10,8 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GL12;
import com.legacy.aether.server.entities.projectile.EntityHammerProjectile;
import com.legacy.aether.server.items.ItemsAether;
import com.legacy.aether.common.entities.projectile.EntityHammerProjectile;
import com.legacy.aether.common.items.ItemsAether;
public class HammerProjectileRenderer extends Render<EntityHammerProjectile>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.CrystalModel;
import com.legacy.aether.server.entities.projectile.crystals.EntityIceyBall;
import com.legacy.aether.common.entities.projectile.crystals.EntityIceyBall;
public class IceyBallRenderer extends RenderLiving<EntityIceyBall>
{

View file

@ -10,8 +10,8 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GL12;
import com.legacy.aether.server.entities.projectile.EntityLightningKnife;
import com.legacy.aether.server.items.ItemsAether;
import com.legacy.aether.common.entities.projectile.EntityLightningKnife;
import com.legacy.aether.common.items.ItemsAether;
public class LightningKnifeRenderer extends Render<EntityLightningKnife>
{

View file

@ -11,7 +11,7 @@ import net.minecraft.util.math.MathHelper;
import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GL12;
import com.legacy.aether.server.entities.projectile.EntityPhoenixArrow;
import com.legacy.aether.common.entities.projectile.EntityPhoenixArrow;
public class PhoenixArrowRenderer extends Render<EntityPhoenixArrow>
{

View file

@ -5,7 +5,7 @@ import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.models.entities.CrystalModel;
import com.legacy.aether.server.entities.projectile.crystals.EntityThunderBall;
import com.legacy.aether.common.entities.projectile.crystals.EntityThunderBall;
public class ThunderBallRenderer extends RenderLiving<EntityThunderBall>
{

View file

@ -11,7 +11,7 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GL12;
import com.legacy.aether.server.entities.projectile.EntityZephyrSnowball;
import com.legacy.aether.common.entities.projectile.EntityZephyrSnowball;
public class ZephyrSnowballRenderer extends Render<EntityZephyrSnowball>
{

View file

@ -10,14 +10,14 @@ import net.minecraft.util.ResourceLocation;
import com.legacy.aether.client.renders.items.definitions.NotchHammerDefinition;
import com.legacy.aether.client.renders.items.definitions.PhoenixBowDefinition;
import com.legacy.aether.client.renders.items.util.AetherColor;
import com.legacy.aether.server.Aether;
import com.legacy.aether.server.entities.util.MoaColor;
import com.legacy.aether.server.items.ItemsAether;
import com.legacy.aether.server.items.util.EnumDartShooterType;
import com.legacy.aether.server.items.util.EnumDartType;
import com.legacy.aether.server.items.util.EnumDungeonKeyType;
import com.legacy.aether.server.items.util.EnumGummySwetType;
import com.legacy.aether.server.items.util.EnumSkyrootBucketType;
import com.legacy.aether.common.Aether;
import com.legacy.aether.common.entities.util.MoaColor;
import com.legacy.aether.common.items.ItemsAether;
import com.legacy.aether.common.items.util.EnumDartShooterType;
import com.legacy.aether.common.items.util.EnumDartType;
import com.legacy.aether.common.items.util.EnumDungeonKeyType;
import com.legacy.aether.common.items.util.EnumGummySwetType;
import com.legacy.aether.common.items.util.EnumSkyrootBucketType;
public class ItemRendering
{

View file

@ -4,7 +4,7 @@ import net.minecraft.client.renderer.ItemMeshDefinition;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.item.ItemStack;
import com.legacy.aether.server.Aether;
import com.legacy.aether.common.Aether;
public class NotchHammerDefinition implements ItemMeshDefinition
{

View file

@ -6,7 +6,7 @@ import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import com.legacy.aether.server.Aether;
import com.legacy.aether.common.Aether;
public class PhoenixBowDefinition implements ItemMeshDefinition
{

View file

@ -8,11 +8,11 @@ import net.minecraft.item.ItemStack;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.IBlockAccess;
import com.legacy.aether.server.blocks.BlocksAether;
import com.legacy.aether.server.blocks.natural.BlockAercloud;
import com.legacy.aether.server.items.ItemMoaEgg;
import com.legacy.aether.server.items.accessories.ItemAccessory;
import com.legacy.aether.server.items.armor.ItemAetherArmor;
import com.legacy.aether.common.blocks.BlocksAether;
import com.legacy.aether.common.blocks.natural.BlockAercloud;
import com.legacy.aether.common.items.ItemMoaEgg;
import com.legacy.aether.common.items.accessories.ItemAccessory;
import com.legacy.aether.common.items.armor.ItemAetherArmor;
public class AetherColor implements IItemColor, IBlockColor
{

View file

@ -1,4 +1,4 @@
package com.legacy.aether.server;
package com.legacy.aether.common;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fml.common.Mod;
@ -8,17 +8,17 @@ import net.minecraftforge.fml.common.SidedProxy;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import com.legacy.aether.server.blocks.BlocksAether;
import com.legacy.aether.server.entities.AetherEntities;
import com.legacy.aether.server.items.ItemsAether;
import com.legacy.aether.server.networking.AetherNetworkingManager;
import com.legacy.aether.server.player.capability.PlayerAetherManager;
import com.legacy.aether.server.registry.achievements.AchievementsAether;
import com.legacy.aether.server.registry.creative_tabs.AetherCreativeTabs;
import com.legacy.aether.server.registry.recipes.AetherRecipes;
import com.legacy.aether.server.registry.sounds.SoundsAether;
import com.legacy.aether.server.tile_entities.AetherTileEntities;
import com.legacy.aether.server.world.AetherWorld;
import com.legacy.aether.common.blocks.BlocksAether;
import com.legacy.aether.common.entities.AetherEntities;
import com.legacy.aether.common.items.ItemsAether;
import com.legacy.aether.common.networking.AetherNetworkingManager;
import com.legacy.aether.common.player.capability.PlayerAetherManager;
import com.legacy.aether.common.registry.achievements.AchievementsAether;
import com.legacy.aether.common.registry.creative_tabs.AetherCreativeTabs;
import com.legacy.aether.common.registry.recipes.AetherRecipes;
import com.legacy.aether.common.registry.sounds.SoundsAether;
import com.legacy.aether.common.tile_entities.AetherTileEntities;
import com.legacy.aether.common.world.AetherWorld;
@Mod(name = "Aether Legacy", modid = Aether.modid, version = "v1.3.1-1.10.2", acceptedMinecraftVersions = "1.10.2")
public class Aether

View file

@ -1,4 +1,4 @@
package com.legacy.aether.server;
package com.legacy.aether.common;
import java.io.File;
import java.io.IOException;

Some files were not shown because too many files have changed in this diff Show more