Refactoring for 1.7.10.

This commit is contained in:
bconlon 2020-08-13 23:29:22 -07:00
parent e74e1215be
commit 42d93bfb5b
387 changed files with 1531 additions and 1650 deletions

View file

@ -17,9 +17,9 @@ buildscript {
apply plugin: 'forge'
version = "1.7.10-v1.0.2"
group= "com.legacy.aether" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "aether_legacy"
version = "1.7.10-v1.1.0"
group= "com.gildedgames.the_aether" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "aether"
sourceCompatibility = targetCompatibility = '1.8'
compileJava {

View file

@ -1,19 +1,19 @@
package com.legacy.aether;
package com.gildedgames.the_aether;
import com.legacy.aether.events.AetherEntityEvents;
import com.gildedgames.the_aether.events.AetherEntityEvents;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.blocks.BlocksAether;
import com.legacy.aether.entities.EntitiesAether;
import com.legacy.aether.items.ItemsAether;
import com.legacy.aether.network.AetherNetwork;
import com.legacy.aether.player.PlayerAetherEvents;
import com.legacy.aether.player.perks.AetherRankings;
import com.legacy.aether.registry.AetherRegistries;
import com.legacy.aether.registry.achievements.AchievementsAether;
import com.legacy.aether.registry.creative_tabs.AetherCreativeTabs;
import com.legacy.aether.tileentity.AetherTileEntities;
import com.legacy.aether.world.AetherWorld;
import com.gildedgames.the_aether.blocks.BlocksAether;
import com.gildedgames.the_aether.entities.EntitiesAether;
import com.gildedgames.the_aether.items.ItemsAether;
import com.gildedgames.the_aether.network.AetherNetwork;
import com.gildedgames.the_aether.player.PlayerAetherEvents;
import com.gildedgames.the_aether.player.perks.AetherRankings;
import com.gildedgames.the_aether.registry.AetherRegistries;
import com.gildedgames.the_aether.registry.achievements.AchievementsAether;
import com.gildedgames.the_aether.registry.creative_tabs.AetherCreativeTabs;
import com.gildedgames.the_aether.tileentity.AetherTileEntities;
import com.gildedgames.the_aether.world.AetherWorld;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
@ -22,7 +22,7 @@ import cpw.mods.fml.common.SidedProxy;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
@Mod(modid = Aether.MOD_ID, version = "v1.0.1")
@Mod(modid = Aether.MOD_ID, version = "v1.1.0")
public class Aether {
public static final String MOD_ID = "aether_legacy";
@ -30,7 +30,7 @@ public class Aether {
@Instance(Aether.MOD_ID)
public static Aether instance;
@SidedProxy(clientSide = "com.legacy.aether.client.ClientProxy", serverSide = "com.legacy.aether.CommonProxy")
@SidedProxy(clientSide = "com.gildedgames.the_aether.client.ClientProxy", serverSide = "com.gildedgames.the_aether.CommonProxy")
public static CommonProxy proxy;
@EventHandler

View file

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

View file

@ -1,18 +1,13 @@
package com.legacy.aether;
package com.gildedgames.the_aether;
import com.legacy.aether.api.AetherAPI;
import com.legacy.aether.api.player.IPlayerAether;
import com.legacy.aether.entities.passive.mountable.EntityAerbunny;
import com.legacy.aether.entities.projectile.darts.EntityDartBase;
import com.legacy.aether.network.AetherNetwork;
import com.legacy.aether.network.packets.PacketExtendedAttack;
import com.legacy.aether.network.packets.PacketSendEternalDay;
import com.legacy.aether.network.packets.PacketSendShouldCycle;
import com.legacy.aether.network.packets.PacketSendTime;
import com.legacy.aether.player.PlayerAether;
import com.legacy.aether.world.AetherData;
import com.legacy.aether.world.AetherWorldProvider;
import com.legacy.aether.world.TeleporterAether;
import com.gildedgames.the_aether.api.player.IPlayerAether;
import com.gildedgames.the_aether.entities.passive.mountable.EntityAerbunny;
import com.gildedgames.the_aether.network.AetherNetwork;
import com.gildedgames.the_aether.network.packets.PacketSendEternalDay;
import com.gildedgames.the_aether.network.packets.PacketSendShouldCycle;
import com.gildedgames.the_aether.player.PlayerAether;
import com.gildedgames.the_aether.world.AetherData;
import com.gildedgames.the_aether.world.AetherWorldProvider;
import cpw.mods.fml.common.FMLCommonHandler;
import cpw.mods.fml.common.ObfuscationReflectionHelper;
import cpw.mods.fml.common.gameevent.InputEvent;
@ -47,24 +42,22 @@ import net.minecraftforge.event.entity.living.LivingDropsEvent;
import net.minecraftforge.event.entity.living.LivingFallEvent;
import net.minecraftforge.event.entity.player.*;
import com.legacy.aether.blocks.BlocksAether;
import com.legacy.aether.blocks.portal.BlockAetherPortal;
import com.legacy.aether.entities.EntitiesAether;
import com.legacy.aether.entities.bosses.EntityValkyrie;
import com.legacy.aether.entities.passive.mountable.EntityFlyingCow;
import com.legacy.aether.items.ItemsAether;
import com.legacy.aether.items.dungeon.ItemDungeonKey;
import com.legacy.aether.items.util.EnumSkyrootBucketType;
import com.legacy.aether.items.weapons.ItemSkyrootSword;
import com.legacy.aether.registry.achievements.AchievementsAether;
import com.gildedgames.the_aether.blocks.BlocksAether;
import com.gildedgames.the_aether.blocks.portal.BlockAetherPortal;
import com.gildedgames.the_aether.entities.EntitiesAether;
import com.gildedgames.the_aether.entities.bosses.EntityValkyrie;
import com.gildedgames.the_aether.entities.passive.mountable.EntityFlyingCow;
import com.gildedgames.the_aether.items.ItemsAether;
import com.gildedgames.the_aether.items.dungeon.ItemDungeonKey;
import com.gildedgames.the_aether.items.util.EnumSkyrootBucketType;
import com.gildedgames.the_aether.items.weapons.ItemSkyrootSword;
import com.gildedgames.the_aether.registry.achievements.AchievementsAether;
import cpw.mods.fml.common.eventhandler.Event;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import cpw.mods.fml.common.gameevent.PlayerEvent.ItemCraftedEvent;
import net.minecraftforge.event.world.WorldEvent;
import org.lwjgl.input.Mouse;
import java.util.List;
import java.util.Random;
public class

View file

@ -1,4 +1,4 @@
package com.legacy.aether;
package com.gildedgames.the_aether;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraftforge.common.MinecraftForge;

View file

@ -1,17 +1,17 @@
package com.legacy.aether.api;
package com.gildedgames.the_aether.api;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Random;
import com.legacy.aether.api.accessories.AetherAccessory;
import com.legacy.aether.api.enchantments.AetherEnchantment;
import com.legacy.aether.api.enchantments.AetherEnchantmentFuel;
import com.legacy.aether.api.freezables.AetherFreezable;
import com.legacy.aether.api.freezables.AetherFreezableFuel;
import com.legacy.aether.api.moa.AetherMoaType;
import com.legacy.aether.api.player.IPlayerAether;
import com.gildedgames.the_aether.api.accessories.AetherAccessory;
import com.gildedgames.the_aether.api.enchantments.AetherEnchantment;
import com.gildedgames.the_aether.api.enchantments.AetherEnchantmentFuel;
import com.gildedgames.the_aether.api.freezables.AetherFreezable;
import com.gildedgames.the_aether.api.freezables.AetherFreezableFuel;
import com.gildedgames.the_aether.api.moa.AetherMoaType;
import com.gildedgames.the_aether.api.player.IPlayerAether;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.api;
package com.gildedgames.the_aether.api;
import net.minecraft.util.ResourceLocation;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.api.accessories;
package com.gildedgames.the_aether.api.accessories;
import net.minecraft.util.ObjectIntIdentityMap;

View file

@ -1,6 +1,6 @@
package com.legacy.aether.api.accessories;
package com.gildedgames.the_aether.api.accessories;
import com.legacy.aether.api.RegistryEntry;
import com.gildedgames.the_aether.api.RegistryEntry;
import net.minecraft.block.Block;
import net.minecraft.item.Item;

View file

@ -1,6 +1,6 @@
package com.legacy.aether.api.enchantments;
package com.gildedgames.the_aether.api.enchantments;
import com.legacy.aether.api.RegistryEntry;
import com.gildedgames.the_aether.api.RegistryEntry;
import net.minecraft.block.Block;
import net.minecraft.item.Item;

View file

@ -1,6 +1,6 @@
package com.legacy.aether.api.enchantments;
package com.gildedgames.the_aether.api.enchantments;
import com.legacy.aether.api.RegistryEntry;
import com.gildedgames.the_aether.api.RegistryEntry;
import net.minecraft.block.Block;
import net.minecraft.item.Item;

View file

@ -1,17 +1,17 @@
package com.legacy.aether.api.events;
package com.gildedgames.the_aether.api.events;
import com.gildedgames.the_aether.api.moa.AetherMoaType;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.common.MinecraftForge;
import com.legacy.aether.api.accessories.AetherAccessory;
import com.legacy.aether.api.enchantments.AetherEnchantment;
import com.legacy.aether.api.events.accessories.ValidAccessoryEvent;
import com.legacy.aether.api.events.enchantments.AetherEnchantmentEvent;
import com.legacy.aether.api.events.freezables.AetherFreezableEvent;
import com.legacy.aether.api.events.moas.MoaHatchEvent;
import com.legacy.aether.api.freezables.AetherFreezable;
import com.legacy.aether.api.moa.AetherMoaType;
import com.gildedgames.the_aether.api.accessories.AetherAccessory;
import com.gildedgames.the_aether.api.enchantments.AetherEnchantment;
import com.gildedgames.the_aether.api.events.accessories.ValidAccessoryEvent;
import com.gildedgames.the_aether.api.events.enchantments.AetherEnchantmentEvent;
import com.gildedgames.the_aether.api.events.freezables.AetherFreezableEvent;
import com.gildedgames.the_aether.api.events.moas.MoaHatchEvent;
import com.gildedgames.the_aether.api.freezables.AetherFreezable;
public class AetherHooks {

View file

@ -1,6 +1,6 @@
package com.legacy.aether.api.events.accessories;
package com.gildedgames.the_aether.api.events.accessories;
import com.legacy.aether.api.accessories.AetherAccessory;
import com.gildedgames.the_aether.api.accessories.AetherAccessory;
import cpw.mods.fml.common.eventhandler.Event;

View file

@ -1,8 +1,8 @@
package com.legacy.aether.api.events.accessories;
package com.gildedgames.the_aether.api.events.accessories;
import net.minecraft.entity.player.EntityPlayer;
import com.legacy.aether.api.accessories.AetherAccessory;
import com.gildedgames.the_aether.api.accessories.AetherAccessory;
import cpw.mods.fml.common.eventhandler.Cancelable;

View file

@ -1,8 +1,8 @@
package com.legacy.aether.api.events.enchantments;
package com.gildedgames.the_aether.api.events.enchantments;
import net.minecraft.tileentity.TileEntity;
import com.legacy.aether.api.enchantments.AetherEnchantment;
import com.gildedgames.the_aether.api.enchantments.AetherEnchantment;
import cpw.mods.fml.common.eventhandler.Event;

View file

@ -1,8 +1,8 @@
package com.legacy.aether.api.events.freezables;
package com.gildedgames.the_aether.api.events.freezables;
import net.minecraft.tileentity.TileEntity;
import com.legacy.aether.api.freezables.AetherFreezable;
import com.gildedgames.the_aether.api.freezables.AetherFreezable;
import cpw.mods.fml.common.eventhandler.Event;

View file

@ -1,6 +1,6 @@
package com.legacy.aether.api.events.moas;
package com.gildedgames.the_aether.api.events.moas;
import com.legacy.aether.api.moa.AetherMoaType;
import com.gildedgames.the_aether.api.moa.AetherMoaType;
import cpw.mods.fml.common.eventhandler.Event;

View file

@ -1,9 +1,8 @@
package com.legacy.aether.api.events.moas;
package com.gildedgames.the_aether.api.events.moas;
import com.gildedgames.the_aether.api.moa.AetherMoaType;
import net.minecraft.tileentity.TileEntity;
import com.legacy.aether.api.moa.AetherMoaType;
public class MoaHatchEvent extends MoaEvent {
private TileEntity incubator;

View file

@ -1,6 +1,6 @@
package com.legacy.aether.api.freezables;
package com.gildedgames.the_aether.api.freezables;
import com.legacy.aether.api.RegistryEntry;
import com.gildedgames.the_aether.api.RegistryEntry;
import net.minecraft.block.Block;
import net.minecraft.item.Item;

View file

@ -1,11 +1,10 @@
package com.legacy.aether.api.freezables;
package com.gildedgames.the_aether.api.freezables;
import com.gildedgames.the_aether.api.RegistryEntry;
import net.minecraft.block.Block;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import com.legacy.aether.api.RegistryEntry;
public class AetherFreezableFuel extends RegistryEntry {
public int timeGiven;

View file

@ -1,6 +1,6 @@
package com.legacy.aether.api.moa;
package com.gildedgames.the_aether.api.moa;
import com.legacy.aether.api.RegistryEntry;
import com.gildedgames.the_aether.api.RegistryEntry;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.util.ResourceLocation;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.api.moa;
package com.gildedgames.the_aether.api.moa;
import net.minecraft.util.ResourceLocation;

View file

@ -1,13 +1,13 @@
package com.legacy.aether.api.player;
package com.gildedgames.the_aether.api.player;
import java.util.ArrayList;
import net.minecraft.entity.EntityLivingBase;
import net.minecraftforge.common.IExtendedEntityProperties;
import com.legacy.aether.api.player.util.IAccessoryInventory;
import com.legacy.aether.api.player.util.IAetherAbility;
import com.legacy.aether.api.player.util.IAetherBoss;
import com.gildedgames.the_aether.api.player.util.IAccessoryInventory;
import com.gildedgames.the_aether.api.player.util.IAetherAbility;
import com.gildedgames.the_aether.api.player.util.IAetherBoss;
public interface IPlayerAether extends IExtendedEntityProperties {

View file

@ -1,4 +1,4 @@
package com.legacy.aether.api.player.util;
package com.gildedgames.the_aether.api.player.util;
import io.netty.buffer.ByteBuf;
@ -9,7 +9,7 @@ import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import com.legacy.aether.api.accessories.AccessoryType;
import com.gildedgames.the_aether.api.accessories.AccessoryType;
public interface IAccessoryInventory extends IInventory {

View file

@ -1,4 +1,4 @@
package com.legacy.aether.api.player.util;
package com.gildedgames.the_aether.api.player.util;
public interface IAetherAbility {

View file

@ -1,4 +1,4 @@
package com.legacy.aether.api.player.util;
package com.gildedgames.the_aether.api.player.util;
public interface IAetherBoss {

View file

@ -1,4 +1,4 @@
package com.legacy.aether.blocks;
package com.gildedgames.the_aether.blocks;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.blocks;
package com.gildedgames.the_aether.blocks;
import java.util.Random;
@ -7,7 +7,7 @@ import net.minecraft.init.Blocks;
import net.minecraft.world.World;
import net.minecraft.world.gen.feature.WorldGenerator;
import com.legacy.aether.blocks.natural.BlockAetherFlower;
import com.gildedgames.the_aether.blocks.natural.BlockAetherFlower;
public class BlockAetherSapling extends BlockAetherFlower implements IGrowable {

View file

@ -1,4 +1,4 @@
package com.legacy.aether.blocks;
package com.gildedgames.the_aether.blocks;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;

View file

@ -1,8 +1,8 @@
package com.legacy.aether.blocks;
package com.gildedgames.the_aether.blocks;
import com.legacy.aether.AetherConfig;
import com.legacy.aether.items.ItemsAether;
import com.legacy.aether.player.PlayerAether;
import com.gildedgames.the_aether.AetherConfig;
import com.gildedgames.the_aether.items.ItemsAether;
import com.gildedgames.the_aether.player.PlayerAether;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.BlockBed;

View file

@ -1,54 +1,53 @@
package com.legacy.aether.blocks;
package com.gildedgames.the_aether.blocks;
import com.legacy.aether.items.ItemSkyrootBed;
import com.legacy.aether.items.ItemsAether;
import com.legacy.aether.items.block.ItemBlockEnchanter;
import com.legacy.aether.items.block.ItemBlockRarity;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.items.ItemsAether;
import com.gildedgames.the_aether.items.block.ItemAetherSlab;
import com.gildedgames.the_aether.items.block.ItemBlockEnchanter;
import com.gildedgames.the_aether.items.block.ItemBlockMetadata;
import com.gildedgames.the_aether.items.block.ItemBlockRarity;
import com.gildedgames.the_aether.registry.creative_tabs.AetherCreativeTabs;
import com.gildedgames.the_aether.world.biome.decoration.AetherGenOakTree;
import com.gildedgames.the_aether.world.biome.decoration.AetherGenSkyrootTree;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.init.Blocks;
import com.legacy.aether.Aether;
import com.legacy.aether.blocks.container.BlockEnchanter;
import com.legacy.aether.blocks.container.BlockFreezer;
import com.legacy.aether.blocks.container.BlockIncubator;
import com.legacy.aether.blocks.container.BlockSunAltar;
import com.legacy.aether.blocks.decorative.BlockAerogel;
import com.legacy.aether.blocks.decorative.BlockAetherFence;
import com.legacy.aether.blocks.decorative.BlockAetherFenceGate;
import com.legacy.aether.blocks.decorative.BlockAetherSlab;
import com.legacy.aether.blocks.decorative.BlockAetherStairs;
import com.legacy.aether.blocks.decorative.BlockAetherWall;
import com.legacy.aether.blocks.decorative.BlockAmbrosiumTorch;
import com.legacy.aether.blocks.decorative.BlockPresent;
import com.legacy.aether.blocks.decorative.BlockQuicksoilGlass;
import com.legacy.aether.blocks.decorative.BlockSkyrootBookshelf;
import com.legacy.aether.blocks.decorative.BlockSkyrootPlanks;
import com.legacy.aether.blocks.decorative.BlockZanite;
import com.legacy.aether.blocks.dungeon.BlockDungeonBase;
import com.legacy.aether.blocks.dungeon.BlockDungeonTrap;
import com.legacy.aether.blocks.dungeon.BlockMimicChest;
import com.legacy.aether.blocks.dungeon.BlockPillar;
import com.legacy.aether.blocks.dungeon.BlockTreasureChest;
import com.legacy.aether.blocks.natural.BlockAercloud;
import com.legacy.aether.blocks.natural.BlockAetherDirt;
import com.legacy.aether.blocks.natural.BlockAetherFlower;
import com.legacy.aether.blocks.natural.BlockAetherGrass;
import com.legacy.aether.blocks.natural.BlockAetherLeaves;
import com.legacy.aether.blocks.natural.BlockAetherLog;
import com.legacy.aether.blocks.natural.BlockAetherOre;
import com.legacy.aether.blocks.natural.BlockBerryBush;
import com.legacy.aether.blocks.natural.BlockBerryBushStem;
import com.legacy.aether.blocks.natural.BlockEnchantedAetherGrass;
import com.legacy.aether.blocks.natural.BlockHolystone;
import com.legacy.aether.blocks.natural.BlockQuicksoil;
import com.legacy.aether.blocks.portal.BlockAetherPortal;
import com.legacy.aether.blocks.util.BlockFloating;
import com.legacy.aether.items.block.ItemAetherSlab;
import com.legacy.aether.items.block.ItemBlockMetadata;
import com.legacy.aether.registry.creative_tabs.AetherCreativeTabs;
import com.legacy.aether.world.biome.decoration.AetherGenOakTree;
import com.legacy.aether.world.biome.decoration.AetherGenSkyrootTree;
import com.gildedgames.the_aether.blocks.container.BlockEnchanter;
import com.gildedgames.the_aether.blocks.container.BlockFreezer;
import com.gildedgames.the_aether.blocks.container.BlockIncubator;
import com.gildedgames.the_aether.blocks.container.BlockSunAltar;
import com.gildedgames.the_aether.blocks.decorative.BlockAerogel;
import com.gildedgames.the_aether.blocks.decorative.BlockAetherFence;
import com.gildedgames.the_aether.blocks.decorative.BlockAetherFenceGate;
import com.gildedgames.the_aether.blocks.decorative.BlockAetherSlab;
import com.gildedgames.the_aether.blocks.decorative.BlockAetherStairs;
import com.gildedgames.the_aether.blocks.decorative.BlockAetherWall;
import com.gildedgames.the_aether.blocks.decorative.BlockAmbrosiumTorch;
import com.gildedgames.the_aether.blocks.decorative.BlockPresent;
import com.gildedgames.the_aether.blocks.decorative.BlockQuicksoilGlass;
import com.gildedgames.the_aether.blocks.decorative.BlockSkyrootBookshelf;
import com.gildedgames.the_aether.blocks.decorative.BlockSkyrootPlanks;
import com.gildedgames.the_aether.blocks.decorative.BlockZanite;
import com.gildedgames.the_aether.blocks.dungeon.BlockDungeonBase;
import com.gildedgames.the_aether.blocks.dungeon.BlockDungeonTrap;
import com.gildedgames.the_aether.blocks.dungeon.BlockMimicChest;
import com.gildedgames.the_aether.blocks.dungeon.BlockPillar;
import com.gildedgames.the_aether.blocks.dungeon.BlockTreasureChest;
import com.gildedgames.the_aether.blocks.natural.BlockAercloud;
import com.gildedgames.the_aether.blocks.natural.BlockAetherDirt;
import com.gildedgames.the_aether.blocks.natural.BlockAetherFlower;
import com.gildedgames.the_aether.blocks.natural.BlockAetherGrass;
import com.gildedgames.the_aether.blocks.natural.BlockAetherLeaves;
import com.gildedgames.the_aether.blocks.natural.BlockAetherLog;
import com.gildedgames.the_aether.blocks.natural.BlockAetherOre;
import com.gildedgames.the_aether.blocks.natural.BlockBerryBush;
import com.gildedgames.the_aether.blocks.natural.BlockBerryBushStem;
import com.gildedgames.the_aether.blocks.natural.BlockEnchantedAetherGrass;
import com.gildedgames.the_aether.blocks.natural.BlockHolystone;
import com.gildedgames.the_aether.blocks.natural.BlockQuicksoil;
import com.gildedgames.the_aether.blocks.portal.BlockAetherPortal;
import com.gildedgames.the_aether.blocks.util.BlockFloating;
import cpw.mods.fml.common.registry.GameRegistry;
import net.minecraft.item.EnumRarity;

View file

@ -1,5 +1,6 @@
package com.legacy.aether.blocks.container;
package com.gildedgames.the_aether.blocks.container;
import com.gildedgames.the_aether.tileentity.util.AetherTileEntity;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.entity.EntityLivingBase;
@ -7,8 +8,6 @@ import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
import com.legacy.aether.tileentity.util.AetherTileEntity;
public abstract class BlockAetherContainer extends BlockContainer {
public BlockAetherContainer(Material materialIn) {

View file

@ -1,7 +1,11 @@
package com.legacy.aether.blocks.container;
package com.gildedgames.the_aether.blocks.container;
import java.util.Random;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.blocks.BlocksAether;
import com.gildedgames.the_aether.network.AetherGuiHandler;
import com.gildedgames.the_aether.tileentity.TileEntityEnchanter;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IIconRegister;
@ -15,11 +19,6 @@ import net.minecraft.util.IIcon;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import com.legacy.aether.Aether;
import com.legacy.aether.blocks.BlocksAether;
import com.legacy.aether.network.AetherGuiHandler;
import com.legacy.aether.tileentity.TileEntityEnchanter;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,7 +1,11 @@
package com.legacy.aether.blocks.container;
package com.gildedgames.the_aether.blocks.container;
import java.util.Random;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.blocks.BlocksAether;
import com.gildedgames.the_aether.network.AetherGuiHandler;
import com.gildedgames.the_aether.tileentity.TileEntityFreezer;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IIconRegister;
@ -15,11 +19,6 @@ import net.minecraft.util.IIcon;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import com.legacy.aether.Aether;
import com.legacy.aether.blocks.BlocksAether;
import com.legacy.aether.network.AetherGuiHandler;
import com.legacy.aether.tileentity.TileEntityFreezer;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,7 +1,11 @@
package com.legacy.aether.blocks.container;
package com.gildedgames.the_aether.blocks.container;
import java.util.Random;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.blocks.BlocksAether;
import com.gildedgames.the_aether.network.AetherGuiHandler;
import com.gildedgames.the_aether.tileentity.TileEntityIncubator;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IIconRegister;
@ -15,11 +19,6 @@ import net.minecraft.util.IIcon;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import com.legacy.aether.Aether;
import com.legacy.aether.blocks.BlocksAether;
import com.legacy.aether.network.AetherGuiHandler;
import com.legacy.aether.tileentity.TileEntityIncubator;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,8 +1,9 @@
package com.legacy.aether.blocks.container;
package com.gildedgames.the_aether.blocks.container;
import com.legacy.aether.AetherConfig;
import com.legacy.aether.world.AetherData;
import com.legacy.aether.world.AetherWorldProvider;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.AetherConfig;
import com.gildedgames.the_aether.blocks.BlocksAether;
import com.gildedgames.the_aether.world.AetherWorldProvider;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.entity.EntityPlayerSP;
@ -17,9 +18,6 @@ import net.minecraft.util.IIcon;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import com.legacy.aether.Aether;
import com.legacy.aether.blocks.BlocksAether;
import cpw.mods.fml.common.FMLCommonHandler;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,9 +1,9 @@
package com.legacy.aether.blocks.decorative;
package com.gildedgames.the_aether.blocks.decorative;
import net.minecraft.block.BlockBreakable;
import net.minecraft.block.material.Material;
import com.legacy.aether.Aether;
import com.gildedgames.the_aether.Aether;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.blocks.decorative;
package com.gildedgames.the_aether.blocks.decorative;
import net.minecraft.block.Block;
import net.minecraft.block.BlockFence;
@ -7,8 +7,8 @@ import net.minecraft.init.Blocks;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import com.legacy.aether.Aether;
import com.legacy.aether.blocks.BlocksAether;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.blocks.BlocksAether;
public class BlockAetherFence extends BlockFence {

View file

@ -1,10 +1,10 @@
package com.legacy.aether.blocks.decorative;
package com.gildedgames.the_aether.blocks.decorative;
import net.minecraft.block.BlockFenceGate;
import net.minecraft.util.IIcon;
import com.legacy.aether.Aether;
import com.legacy.aether.blocks.BlocksAether;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.blocks.BlocksAether;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.blocks.decorative;
package com.gildedgames.the_aether.blocks.decorative;
import java.util.Random;
@ -10,7 +10,7 @@ import net.minecraft.block.material.Material;
import net.minecraft.item.Item;
import net.minecraft.world.World;
import com.legacy.aether.blocks.BlocksAether;
import com.gildedgames.the_aether.blocks.BlocksAether;
public class BlockAetherSlab extends BlockSlab {

View file

@ -1,4 +1,4 @@
package com.legacy.aether.blocks.decorative;
package com.gildedgames.the_aether.blocks.decorative;
import net.minecraft.block.Block;
import net.minecraft.block.BlockStairs;

View file

@ -1,8 +1,8 @@
package com.legacy.aether.blocks.decorative;
package com.gildedgames.the_aether.blocks.decorative;
import java.util.List;
import com.legacy.aether.blocks.BlocksAether;
import com.gildedgames.the_aether.blocks.BlocksAether;
import net.minecraft.block.Block;
import net.minecraft.block.BlockWall;
import net.minecraft.creativetab.CreativeTabs;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.blocks.decorative;
package com.gildedgames.the_aether.blocks.decorative;
import net.minecraft.block.BlockTorch;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.blocks.decorative;
package com.gildedgames.the_aether.blocks.decorative;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
@ -10,9 +10,9 @@ import net.minecraft.util.IIcon;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import com.legacy.aether.Aether;
import com.legacy.aether.entities.block.EntityTNTPresent;
import com.legacy.aether.items.ItemsAether;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.entities.block.EntityTNTPresent;
import com.gildedgames.the_aether.items.ItemsAether;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,11 +1,11 @@
package com.legacy.aether.blocks.decorative;
package com.gildedgames.the_aether.blocks.decorative;
import java.util.Random;
import net.minecraft.block.BlockBreakable;
import net.minecraft.block.material.Material;
import com.legacy.aether.Aether;
import com.gildedgames.the_aether.Aether;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.blocks.decorative;
package com.gildedgames.the_aether.blocks.decorative;
import java.util.Random;
@ -9,8 +9,8 @@ import net.minecraft.item.Item;
import net.minecraft.util.IIcon;
import net.minecraft.world.World;
import com.legacy.aether.Aether;
import com.legacy.aether.blocks.BlocksAether;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.blocks.BlocksAether;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,9 +1,9 @@
package com.legacy.aether.blocks.decorative;
package com.gildedgames.the_aether.blocks.decorative;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import com.legacy.aether.Aether;
import com.gildedgames.the_aether.Aether;
public class BlockSkyrootPlanks extends Block {

View file

@ -1,10 +1,10 @@
package com.legacy.aether.blocks.decorative;
package com.gildedgames.the_aether.blocks.decorative;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.world.IBlockAccess;
import com.legacy.aether.Aether;
import com.gildedgames.the_aether.Aether;
public class BlockZanite extends Block {

View file

@ -1,5 +1,6 @@
package com.legacy.aether.blocks.dungeon;
package com.gildedgames.the_aether.blocks.dungeon;
import com.gildedgames.the_aether.registry.creative_tabs.AetherCreativeTabs;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.entity.player.EntityPlayer;
@ -8,8 +9,6 @@ import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import com.legacy.aether.registry.creative_tabs.AetherCreativeTabs;
public class BlockDungeonBase extends Block {
private Block pickBlock;

View file

@ -1,16 +1,15 @@
package com.legacy.aether.blocks.dungeon;
package com.gildedgames.the_aether.blocks.dungeon;
import com.gildedgames.the_aether.blocks.BlocksAether;
import com.gildedgames.the_aether.entities.bosses.EntityFireMinion;
import com.gildedgames.the_aether.entities.bosses.EntityValkyrie;
import com.gildedgames.the_aether.entities.hostile.EntitySentry;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
import com.legacy.aether.blocks.BlocksAether;
import com.legacy.aether.entities.bosses.EntityFireMinion;
import com.legacy.aether.entities.bosses.EntityValkyrie;
import com.legacy.aether.entities.hostile.EntitySentry;
public class BlockDungeonTrap extends Block {
private Block pickBlock;

View file

@ -1,5 +1,7 @@
package com.legacy.aether.blocks.dungeon;
package com.gildedgames.the_aether.blocks.dungeon;
import com.gildedgames.the_aether.entities.hostile.EntityMimic;
import com.gildedgames.the_aether.tileentity.TileEntityChestMimic;
import net.minecraft.block.BlockChest;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
@ -8,9 +10,6 @@ import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
import com.legacy.aether.entities.hostile.EntityMimic;
import com.legacy.aether.tileentity.TileEntityChestMimic;
public class BlockMimicChest extends BlockChest {
public BlockMimicChest() {

View file

@ -1,6 +1,6 @@
package com.legacy.aether.blocks.dungeon;
package com.gildedgames.the_aether.blocks.dungeon;
import com.legacy.aether.Aether;
import com.gildedgames.the_aether.Aether;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,7 +1,12 @@
package com.legacy.aether.blocks.dungeon;
package com.gildedgames.the_aether.blocks.dungeon;
import java.util.Random;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.CommonProxy;
import com.gildedgames.the_aether.items.ItemsAether;
import com.gildedgames.the_aether.network.AetherGuiHandler;
import com.gildedgames.the_aether.tileentity.TileEntityTreasureChest;
import net.minecraft.block.BlockChest;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.entity.Entity;
@ -11,17 +16,9 @@ import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.Explosion;
import net.minecraft.world.World;
import com.legacy.aether.Aether;
import com.legacy.aether.CommonProxy;
import com.legacy.aether.items.ItemsAether;
import com.legacy.aether.network.AetherGuiHandler;
import com.legacy.aether.tileentity.TileEntityTreasureChest;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import javax.annotation.Nullable;
public class BlockTreasureChest extends BlockChest {
public BlockTreasureChest() {

View file

@ -1,7 +1,10 @@
package com.legacy.aether.blocks.natural;
package com.gildedgames.the_aether.blocks.natural;
import java.util.List;
import com.gildedgames.the_aether.items.block.IColoredBlock;
import com.gildedgames.the_aether.items.block.INamedBlock;
import com.gildedgames.the_aether.registry.achievements.AchievementsAether;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
@ -14,10 +17,6 @@ import net.minecraft.util.Facing;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import com.legacy.aether.items.block.IColoredBlock;
import com.legacy.aether.items.block.INamedBlock;
import com.legacy.aether.registry.achievements.AchievementsAether;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,6 +1,6 @@
package com.legacy.aether.blocks.natural;
package com.gildedgames.the_aether.blocks.natural;
import com.legacy.aether.items.util.DoubleDropHelper;
import com.gildedgames.the_aether.items.util.DoubleDropHelper;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;

View file

@ -1,13 +1,12 @@
package com.legacy.aether.blocks.natural;
package com.gildedgames.the_aether.blocks.natural;
import com.gildedgames.the_aether.CommonProxy;
import com.gildedgames.the_aether.blocks.BlocksAether;
import net.minecraft.block.Block;
import net.minecraft.block.BlockBush;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.world.World;
import com.legacy.aether.CommonProxy;
import com.legacy.aether.blocks.BlocksAether;
public class BlockAetherFlower extends BlockBush {
public AxisAlignedBB FLOWER_AABB = AxisAlignedBB.getBoundingBox(0.30000001192092896D, 0.0D, 0.30000001192092896D, 0.699999988079071D, 0.6000000238418579D, 0.699999988079071D);

View file

@ -1,7 +1,10 @@
package com.legacy.aether.blocks.natural;
package com.gildedgames.the_aether.blocks.natural;
import java.util.Random;
import com.gildedgames.the_aether.blocks.BlocksAether;
import com.gildedgames.the_aether.items.util.DoubleDropHelper;
import com.gildedgames.the_aether.world.AetherWorld;
import net.minecraft.block.Block;
import net.minecraft.block.IGrowable;
import net.minecraft.block.material.Material;
@ -16,10 +19,6 @@ import net.minecraftforge.common.EnumPlantType;
import net.minecraftforge.common.IPlantable;
import net.minecraftforge.common.util.ForgeDirection;
import com.legacy.aether.blocks.BlocksAether;
import com.legacy.aether.items.util.DoubleDropHelper;
import com.legacy.aether.world.AetherWorld;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,8 +1,13 @@
package com.legacy.aether.blocks.natural;
package com.gildedgames.the_aether.blocks.natural;
import java.util.ArrayList;
import java.util.Random;
import com.gildedgames.the_aether.blocks.BlocksAether;
import com.gildedgames.the_aether.entities.particles.ParticleCrystalLeaves;
import com.gildedgames.the_aether.entities.particles.ParticleGoldenOakLeaves;
import com.gildedgames.the_aether.entities.particles.ParticleHolidayLeaves;
import com.gildedgames.the_aether.items.ItemsAether;
import net.minecraft.block.BlockLeaves;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.texture.IIconRegister;
@ -12,12 +17,6 @@ import net.minecraft.util.IIcon;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import com.legacy.aether.blocks.BlocksAether;
import com.legacy.aether.entities.particles.ParticleCrystalLeaves;
import com.legacy.aether.entities.particles.ParticleGoldenOakLeaves;
import com.legacy.aether.entities.particles.ParticleHolidayLeaves;
import com.legacy.aether.items.ItemsAether;
import cpw.mods.fml.client.FMLClientHandler;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,8 +1,12 @@
package com.legacy.aether.blocks.natural;
package com.gildedgames.the_aether.blocks.natural;
import java.util.Random;
import com.legacy.aether.items.tools.*;
import com.gildedgames.the_aether.blocks.BlocksAether;
import com.gildedgames.the_aether.items.ItemsAether;
import com.gildedgames.the_aether.items.tools.*;
import com.gildedgames.the_aether.items.util.EnumAetherToolType;
import com.gildedgames.the_aether.items.tools.*;
import net.minecraft.block.BlockLog;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.enchantment.Enchantment;
@ -15,10 +19,6 @@ import net.minecraft.stats.StatList;
import net.minecraft.util.IIcon;
import net.minecraft.world.World;
import com.legacy.aether.blocks.BlocksAether;
import com.legacy.aether.items.ItemsAether;
import com.legacy.aether.items.util.EnumAetherToolType;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,7 +1,12 @@
package com.legacy.aether.blocks.natural;
package com.gildedgames.the_aether.blocks.natural;
import java.util.Random;
import com.gildedgames.the_aether.blocks.BlocksAether;
import com.gildedgames.the_aether.items.ItemsAether;
import com.gildedgames.the_aether.items.tools.ItemAetherTool;
import com.gildedgames.the_aether.items.tools.ItemSkyrootTool;
import com.gildedgames.the_aether.items.util.EnumAetherToolType;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.enchantment.Enchantment;
@ -14,12 +19,6 @@ import net.minecraft.util.MathHelper;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import com.legacy.aether.blocks.BlocksAether;
import com.legacy.aether.items.ItemsAether;
import com.legacy.aether.items.tools.ItemAetherTool;
import com.legacy.aether.items.tools.ItemSkyrootTool;
import com.legacy.aether.items.util.EnumAetherToolType;
public class BlockAetherOre extends Block {
public BlockAetherOre(int level) {

View file

@ -1,7 +1,11 @@
package com.legacy.aether.blocks.natural;
package com.gildedgames.the_aether.blocks.natural;
import java.util.Random;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.CommonProxy;
import com.gildedgames.the_aether.blocks.BlocksAether;
import com.gildedgames.the_aether.items.ItemsAether;
import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
@ -11,11 +15,6 @@ import net.minecraft.util.AxisAlignedBB;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import com.legacy.aether.Aether;
import com.legacy.aether.CommonProxy;
import com.legacy.aether.blocks.BlocksAether;
import com.legacy.aether.items.ItemsAether;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,15 +1,14 @@
package com.legacy.aether.blocks.natural;
package com.gildedgames.the_aether.blocks.natural;
import java.util.Random;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.blocks.BlocksAether;
import net.minecraft.block.IGrowable;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import com.legacy.aether.Aether;
import com.legacy.aether.blocks.BlocksAether;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,13 +1,12 @@
package com.legacy.aether.blocks.natural;
package com.gildedgames.the_aether.blocks.natural;
import com.gildedgames.the_aether.blocks.BlocksAether;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.util.IIcon;
import net.minecraft.world.IBlockAccess;
import com.legacy.aether.blocks.BlocksAether;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,6 +1,6 @@
package com.legacy.aether.blocks.natural;
package com.gildedgames.the_aether.blocks.natural;
import com.legacy.aether.items.util.DoubleDropHelper;
import com.gildedgames.the_aether.items.util.DoubleDropHelper;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;

View file

@ -1,6 +1,6 @@
package com.legacy.aether.blocks.natural;
package com.gildedgames.the_aether.blocks.natural;
import com.legacy.aether.items.util.DoubleDropHelper;
import com.gildedgames.the_aether.items.util.DoubleDropHelper;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;

View file

@ -1,5 +1,6 @@
package com.legacy.aether.blocks.portal;
package com.gildedgames.the_aether.blocks.portal;
import com.gildedgames.the_aether.blocks.BlocksAether;
import net.minecraft.block.Block;
import net.minecraft.block.BlockPortal;
import net.minecraft.block.material.Material;
@ -8,8 +9,6 @@ import net.minecraft.util.ChunkCoordinates;
import net.minecraft.util.Direction;
import net.minecraft.world.World;
import com.legacy.aether.blocks.BlocksAether;
public class AetherPortalSize {
private final World world;

View file

@ -1,7 +1,11 @@
package com.legacy.aether.blocks.portal;
package com.gildedgames.the_aether.blocks.portal;
import java.util.Random;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.entities.particles.ParticleAetherPortal;
import com.gildedgames.the_aether.entities.util.EntityHook;
import com.gildedgames.the_aether.player.PlayerAether;
import net.minecraft.block.Block;
import net.minecraft.block.BlockPortal;
import net.minecraft.client.renderer.texture.IIconRegister;
@ -11,11 +15,6 @@ import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.world.World;
import com.legacy.aether.Aether;
import com.legacy.aether.entities.particles.ParticleAetherPortal;
import com.legacy.aether.entities.util.EntityHook;
import com.legacy.aether.player.PlayerAether;
import cpw.mods.fml.client.FMLClientHandler;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,7 +1,9 @@
package com.legacy.aether.blocks.util;
package com.gildedgames.the_aether.blocks.util;
import java.util.Random;
import com.gildedgames.the_aether.blocks.BlocksAether;
import com.gildedgames.the_aether.entities.block.EntityFloatingBlock;
import net.minecraft.block.Block;
import net.minecraft.block.BlockSand;
import net.minecraft.block.material.Material;
@ -9,9 +11,6 @@ import net.minecraft.init.Blocks;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import com.legacy.aether.blocks.BlocksAether;
import com.legacy.aether.entities.block.EntityFloatingBlock;
public class BlockFloating extends Block {
private boolean leveled;

View file

@ -1,17 +1,18 @@
package com.legacy.aether.client;
package com.gildedgames.the_aether.client;
import java.util.List;
import com.legacy.aether.client.gui.GuiCustomizationScreen;
import com.legacy.aether.client.gui.GuiEnterAether;
import com.legacy.aether.client.gui.button.*;
import com.legacy.aether.client.gui.menu.AetherMainMenu;
import com.legacy.aether.client.gui.menu.GuiMenuToggleButton;
import com.legacy.aether.network.packets.PacketCapeChanged;
import com.legacy.aether.network.packets.PacketExtendedAttack;
import com.legacy.aether.network.packets.PacketPerkChanged;
import com.legacy.aether.player.perks.AetherRankings;
import com.legacy.aether.player.perks.util.EnumAetherPerkType;
import com.gildedgames.the_aether.client.gui.GuiCustomizationScreen;
import com.gildedgames.the_aether.client.gui.GuiEnterAether;
import com.gildedgames.the_aether.client.gui.button.GuiAccessoryButton;
import com.gildedgames.the_aether.client.gui.button.GuiCapeButton;
import com.gildedgames.the_aether.client.gui.button.GuiCustomizationScreenButton;
import com.gildedgames.the_aether.client.gui.button.*;
import com.gildedgames.the_aether.client.gui.menu.AetherMainMenu;
import com.gildedgames.the_aether.client.gui.menu.GuiMenuToggleButton;
import com.gildedgames.the_aether.network.packets.PacketCapeChanged;
import com.gildedgames.the_aether.network.packets.PacketExtendedAttack;
import com.gildedgames.the_aether.player.perks.AetherRankings;
import cpw.mods.fml.client.FMLClientHandler;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.*;
@ -34,17 +35,17 @@ import net.minecraftforge.client.event.*;
import net.minecraftforge.client.event.GuiScreenEvent.DrawScreenEvent;
import net.minecraftforge.client.event.RenderPlayerEvent.SetArmorModel;
import com.legacy.aether.AetherConfig;
import com.legacy.aether.client.gui.AetherLoadingScreen;
import com.legacy.aether.client.renders.entity.PlayerAetherRenderer;
import com.legacy.aether.entities.EntitiesAether;
import com.legacy.aether.items.ItemAetherSpawnEgg;
import com.legacy.aether.items.ItemsAether;
import com.legacy.aether.items.armor.ItemAetherArmor;
import com.legacy.aether.network.AetherGuiHandler;
import com.legacy.aether.network.AetherNetwork;
import com.legacy.aether.network.packets.PacketOpenContainer;
import com.legacy.aether.player.PlayerAether;
import com.gildedgames.the_aether.AetherConfig;
import com.gildedgames.the_aether.client.gui.AetherLoadingScreen;
import com.gildedgames.the_aether.client.renders.entity.PlayerAetherRenderer;
import com.gildedgames.the_aether.entities.EntitiesAether;
import com.gildedgames.the_aether.items.ItemAetherSpawnEgg;
import com.gildedgames.the_aether.items.ItemsAether;
import com.gildedgames.the_aether.items.armor.ItemAetherArmor;
import com.gildedgames.the_aether.network.AetherGuiHandler;
import com.gildedgames.the_aether.network.AetherNetwork;
import com.gildedgames.the_aether.network.packets.PacketOpenContainer;
import com.gildedgames.the_aether.player.PlayerAether;
import cpw.mods.fml.common.ObfuscationReflectionHelper;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;

View file

@ -1,10 +1,10 @@
package com.legacy.aether.client;
package com.gildedgames.the_aether.client;
import com.legacy.aether.entities.passive.mountable.EntitySwet;
import com.legacy.aether.entities.util.EntityMountable;
import com.legacy.aether.entities.util.EntitySaddleMount;
import com.legacy.aether.network.AetherNetwork;
import com.legacy.aether.network.packets.PacketSendSneaking;
import com.gildedgames.the_aether.entities.passive.mountable.EntitySwet;
import com.gildedgames.the_aether.entities.util.EntityMountable;
import com.gildedgames.the_aether.entities.util.EntitySaddleMount;
import com.gildedgames.the_aether.network.AetherNetwork;
import com.gildedgames.the_aether.network.packets.PacketSendSneaking;
import net.minecraft.client.Minecraft;
import net.minecraft.client.settings.GameSettings;

View file

@ -1,20 +1,20 @@
package com.legacy.aether.client;
package com.gildedgames.the_aether.client;
import com.legacy.aether.AetherConfig;
import com.gildedgames.the_aether.AetherConfig;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.EntityRenderer;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.IIcon;
import com.legacy.aether.CommonProxy;
import com.legacy.aether.client.audio.AetherMusicHandler;
import com.legacy.aether.client.gui.AetherLoadingScreen;
import com.legacy.aether.client.gui.GuiAetherInGame;
import com.legacy.aether.client.gui.GuiSunAltar;
import com.legacy.aether.client.renders.AetherEntityRenderer;
import com.legacy.aether.client.renders.RendersAether;
import com.legacy.aether.compatibility.client.AetherClientCompatibility;
import com.gildedgames.the_aether.CommonProxy;
import com.gildedgames.the_aether.client.audio.AetherMusicHandler;
import com.gildedgames.the_aether.client.gui.AetherLoadingScreen;
import com.gildedgames.the_aether.client.gui.GuiAetherInGame;
import com.gildedgames.the_aether.client.gui.GuiSunAltar;
import com.gildedgames.the_aether.client.renders.AetherEntityRenderer;
import com.gildedgames.the_aether.client.renders.RendersAether;
import com.gildedgames.the_aether.compatibility.client.AetherClientCompatibility;
import cpw.mods.fml.client.FMLClientHandler;
import cpw.mods.fml.client.registry.RenderingRegistry;

View file

@ -1,5 +1,7 @@
package com.legacy.aether.client.audio;
package com.gildedgames.the_aether.client.audio;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.AetherConfig;
import net.minecraft.client.Minecraft;
import net.minecraft.client.audio.ISound;
import net.minecraft.client.audio.PositionedSoundRecord;
@ -10,9 +12,7 @@ import net.minecraft.client.gui.GuiScreenWorking;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.client.event.sound.PlaySoundEvent17;
import com.legacy.aether.Aether;
import com.legacy.aether.AetherConfig;
import com.legacy.aether.client.audio.music.AetherMusicTicker;
import com.gildedgames.the_aether.client.audio.music.AetherMusicTicker;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import cpw.mods.fml.common.gameevent.TickEvent;

View file

@ -1,7 +1,9 @@
package com.legacy.aether.client.audio.music;
package com.gildedgames.the_aether.client.audio.music;
import java.util.Random;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.AetherConfig;
import net.minecraft.client.Minecraft;
import net.minecraft.client.audio.ISound;
import net.minecraft.client.audio.PositionedSoundRecord;
@ -10,9 +12,6 @@ import net.minecraft.server.gui.IUpdatePlayerListBox;
import net.minecraft.util.MathHelper;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.Aether;
import com.legacy.aether.AetherConfig;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.client.gui;
package com.gildedgames.the_aether.client.gui;
import net.minecraft.client.LoadingScreenRenderer;
import net.minecraft.client.Minecraft;
@ -10,7 +10,7 @@ import net.minecraft.client.shader.Framebuffer;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.client.gui.trivia.AetherTrivia;
import com.gildedgames.the_aether.client.gui.trivia.AetherTrivia;
import cpw.mods.fml.client.FMLClientHandler;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.client.gui;
package com.gildedgames.the_aether.client.gui;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.Gui;
@ -8,8 +8,8 @@ import net.minecraftforge.client.event.RenderBlockOverlayEvent.OverlayType;
import net.minecraftforge.client.event.RenderGameOverlayEvent;
import net.minecraftforge.client.event.RenderGameOverlayEvent.ElementType;
import com.legacy.aether.client.overlay.AetherOverlay;
import com.legacy.aether.player.PlayerAether;
import com.gildedgames.the_aether.client.overlay.AetherOverlay;
import com.gildedgames.the_aether.player.PlayerAether;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;

View file

@ -1,12 +1,12 @@
package com.legacy.aether.client.gui;
package com.gildedgames.the_aether.client.gui;
import com.legacy.aether.client.gui.button.GuiGlowButton;
import com.legacy.aether.client.gui.button.GuiHaloButton;
import com.legacy.aether.network.AetherNetwork;
import com.legacy.aether.network.packets.PacketPerkChanged;
import com.legacy.aether.player.PlayerAether;
import com.legacy.aether.player.perks.AetherRankings;
import com.legacy.aether.player.perks.util.EnumAetherPerkType;
import com.gildedgames.the_aether.client.gui.button.GuiGlowButton;
import com.gildedgames.the_aether.client.gui.button.GuiHaloButton;
import com.gildedgames.the_aether.network.AetherNetwork;
import com.gildedgames.the_aether.network.packets.PacketPerkChanged;
import com.gildedgames.the_aether.player.PlayerAether;
import com.gildedgames.the_aether.player.perks.AetherRankings;
import com.gildedgames.the_aether.player.perks.util.EnumAetherPerkType;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.Minecraft;

View file

@ -1,6 +1,7 @@
package com.legacy.aether.client.gui;
package com.gildedgames.the_aether.client.gui;
import com.legacy.aether.AetherConfig;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.AetherConfig;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.client.resources.I18n;
import net.minecraft.entity.player.InventoryPlayer;
@ -8,9 +9,8 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.Aether;
import com.legacy.aether.inventory.ContainerEnchanter;
import com.legacy.aether.tileentity.TileEntityEnchanter;
import com.gildedgames.the_aether.inventory.ContainerEnchanter;
import com.gildedgames.the_aether.tileentity.TileEntityEnchanter;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.client.gui;
package com.gildedgames.the_aether.client.gui;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiScreen;

View file

@ -1,5 +1,6 @@
package com.legacy.aether.client.gui;
package com.gildedgames.the_aether.client.gui;
import com.gildedgames.the_aether.Aether;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.client.resources.I18n;
import net.minecraft.entity.player.InventoryPlayer;
@ -7,9 +8,8 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.Aether;
import com.legacy.aether.inventory.ContainerFreezer;
import com.legacy.aether.tileentity.TileEntityFreezer;
import com.gildedgames.the_aether.inventory.ContainerFreezer;
import com.gildedgames.the_aether.tileentity.TileEntityFreezer;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,5 +1,6 @@
package com.legacy.aether.client.gui;
package com.gildedgames.the_aether.client.gui;
import com.gildedgames.the_aether.Aether;
import org.lwjgl.opengl.GL11;
import net.minecraft.client.gui.inventory.GuiContainer;
@ -8,9 +9,8 @@ import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.util.ResourceLocation;
import com.legacy.aether.Aether;
import com.legacy.aether.inventory.ContainerIncubator;
import com.legacy.aether.tileentity.TileEntityIncubator;
import com.gildedgames.the_aether.inventory.ContainerIncubator;
import com.gildedgames.the_aether.tileentity.TileEntityIncubator;
public class GuiIncubator extends GuiContainer {

View file

@ -1,7 +1,8 @@
package com.legacy.aether.client.gui;
package com.gildedgames.the_aether.client.gui;
import java.util.List;
import com.gildedgames.the_aether.Aether;
import net.minecraft.client.gui.Gui;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.inventory.GuiContainer;
@ -12,10 +13,9 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.Aether;
import com.legacy.aether.client.gui.button.GuiLoreButton;
import com.legacy.aether.inventory.ContainerLore;
import com.legacy.aether.registry.AetherLore;
import com.gildedgames.the_aether.client.gui.button.GuiLoreButton;
import com.gildedgames.the_aether.inventory.ContainerLore;
import com.gildedgames.the_aether.registry.AetherLore;
public class GuiLore extends GuiContainer {

View file

@ -1,13 +1,13 @@
package com.legacy.aether.client.gui;
package com.gildedgames.the_aether.client.gui;
import com.gildedgames.the_aether.Aether;
import org.lwjgl.opengl.GL11;
import net.minecraft.client.gui.GuiScreen;
import net.minecraft.util.ResourceLocation;
import net.minecraft.world.World;
import com.legacy.aether.Aether;
import com.legacy.aether.client.gui.button.GuiSunAltarSlider;
import com.gildedgames.the_aether.client.gui.button.GuiSunAltarSlider;
public class GuiSunAltar extends GuiScreen {

View file

@ -1,4 +1,4 @@
package com.legacy.aether.client.gui;
package com.gildedgames.the_aether.client.gui;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.client.resources.I18n;
@ -8,7 +8,7 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.tileentity.TileEntityTreasureChest;
import com.gildedgames.the_aether.tileentity.TileEntityTreasureChest;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,13 +1,12 @@
package com.legacy.aether.client.gui.button;
package com.gildedgames.the_aether.client.gui.button;
import com.gildedgames.the_aether.Aether;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.Aether;
public class GuiAccessoryButton extends GuiButton {
protected static final ResourceLocation BUTTON_TEXTURE = Aether.locate("textures/gui/inventory/button/cloud.png");

View file

@ -1,5 +1,6 @@
package com.legacy.aether.client.gui.button;
package com.gildedgames.the_aether.client.gui.button;
import com.gildedgames.the_aether.Aether;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.FontRenderer;
import net.minecraft.client.gui.GuiButton;
@ -7,8 +8,6 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.Aether;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.client.gui.button;
package com.gildedgames.the_aether.client.gui.button;
import net.minecraft.client.gui.GuiButton;

View file

@ -1,6 +1,6 @@
package com.legacy.aether.client.gui.button;
package com.gildedgames.the_aether.client.gui.button;
import com.legacy.aether.player.PlayerAether;
import com.gildedgames.the_aether.player.PlayerAether;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.resources.I18n;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.client.gui.button;
package com.gildedgames.the_aether.client.gui.button;
import net.minecraft.client.gui.GuiButton;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.client.gui.button;
package com.gildedgames.the_aether.client.gui.button;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.FontRenderer;

View file

@ -1,6 +1,6 @@
package com.legacy.aether.client.gui.button;
package com.gildedgames.the_aether.client.gui.button;
import com.legacy.aether.player.PlayerAether;
import com.gildedgames.the_aether.player.PlayerAether;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.resources.I18n;

View file

@ -1,6 +1,6 @@
package com.legacy.aether.client.gui.button;
package com.gildedgames.the_aether.client.gui.button;
import com.legacy.aether.player.PlayerAether;
import com.gildedgames.the_aether.player.PlayerAether;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.resources.I18n;

View file

@ -1,5 +1,6 @@
package com.legacy.aether.client.gui.button;
package com.gildedgames.the_aether.client.gui.button;
import com.gildedgames.the_aether.Aether;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.FontRenderer;
import net.minecraft.client.gui.GuiButton;
@ -8,8 +9,6 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.Aether;
public class GuiLoreButton extends GuiButton {
protected static final ResourceLocation BUTTON_TEXTURES = Aether.locate("textures/gui/lore_widgets.png");

View file

@ -1,4 +1,4 @@
package com.legacy.aether.client.gui.button;
package com.gildedgames.the_aether.client.gui.button;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
@ -6,8 +6,8 @@ import net.minecraft.world.World;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.network.AetherNetwork;
import com.legacy.aether.network.packets.PacketSetTime;
import com.gildedgames.the_aether.network.AetherNetwork;
import com.gildedgames.the_aether.network.packets.PacketSetTime;
public class GuiSunAltarSlider extends GuiButton {

View file

@ -1,4 +1,4 @@
package com.legacy.aether.client.gui.dialogue;
package com.gildedgames.the_aether.client.gui.dialogue;
import net.minecraft.client.Minecraft;
import net.minecraft.client.audio.PositionedSoundRecord;

View file

@ -1,4 +1,4 @@
package com.legacy.aether.client.gui.dialogue;
package com.gildedgames.the_aether.client.gui.dialogue;
import java.io.IOException;
import java.util.ArrayList;

View file

@ -1,14 +1,14 @@
package com.legacy.aether.client.gui.dialogue.entity;
package com.gildedgames.the_aether.client.gui.dialogue.entity;
import com.gildedgames.the_aether.client.gui.dialogue.DialogueOption;
import com.gildedgames.the_aether.client.gui.dialogue.GuiDialogue;
import com.gildedgames.the_aether.entities.bosses.valkyrie_queen.EntityValkyrieQueen;
import net.minecraft.item.ItemStack;
import net.minecraft.world.EnumDifficulty;
import com.legacy.aether.client.gui.dialogue.DialogueOption;
import com.legacy.aether.client.gui.dialogue.GuiDialogue;
import com.legacy.aether.entities.bosses.valkyrie_queen.EntityValkyrieQueen;
import com.legacy.aether.items.ItemsAether;
import com.legacy.aether.network.AetherNetwork;
import com.legacy.aether.network.packets.PacketInitiateValkyrieFight;
import com.gildedgames.the_aether.items.ItemsAether;
import com.gildedgames.the_aether.network.AetherNetwork;
import com.gildedgames.the_aether.network.packets.PacketInitiateValkyrieFight;
public class GuiValkyrieDialogue extends GuiDialogue {

View file

@ -1,12 +1,12 @@
package com.legacy.aether.client.gui.dialogue.server;
package com.gildedgames.the_aether.client.gui.dialogue.server;
import java.util.ArrayList;
import com.gildedgames.the_aether.client.gui.dialogue.DialogueOption;
import com.gildedgames.the_aether.client.gui.dialogue.GuiDialogue;
import com.google.common.collect.Lists;
import com.legacy.aether.client.gui.dialogue.DialogueOption;
import com.legacy.aether.client.gui.dialogue.GuiDialogue;
import com.legacy.aether.network.AetherNetwork;
import com.legacy.aether.network.packets.PacketDialogueClicked;
import com.gildedgames.the_aether.network.AetherNetwork;
import com.gildedgames.the_aether.network.packets.PacketDialogueClicked;
public class GuiServerDialogue extends GuiDialogue {

View file

@ -1,5 +1,7 @@
package com.legacy.aether.client.gui.inventory;
package com.gildedgames.the_aether.client.gui.inventory;
import com.gildedgames.the_aether.Aether;
import com.gildedgames.the_aether.client.gui.button.GuiAccessoryButton;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.inventory.GuiContainer;
@ -9,14 +11,10 @@ import net.minecraft.util.ResourceLocation;
import org.lwjgl.opengl.GL11;
import com.legacy.aether.Aether;
import com.legacy.aether.client.gui.button.GuiAccessoryButton;
import com.legacy.aether.client.gui.button.GuiButtonPerks;
import com.legacy.aether.inventory.ContainerAccessories;
import com.legacy.aether.network.AetherNetwork;
import com.legacy.aether.network.packets.PacketOpenContainer;
import com.legacy.aether.player.PlayerAether;
import com.legacy.aether.player.perks.AetherRankings;
import com.gildedgames.the_aether.inventory.ContainerAccessories;
import com.gildedgames.the_aether.network.AetherNetwork;
import com.gildedgames.the_aether.network.packets.PacketOpenContainer;
import com.gildedgames.the_aether.player.PlayerAether;
public class GuiAccessories extends GuiContainer {

View file

@ -1,4 +1,4 @@
package com.legacy.aether.client.gui.inventory;
package com.gildedgames.the_aether.client.gui.inventory;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
@ -8,14 +8,14 @@ import net.minecraft.client.gui.inventory.GuiInventory;
import org.lwjgl.input.Keyboard;
import com.legacy.aether.entities.passive.mountable.EntityMoa;
import com.legacy.aether.entities.util.AetherMoaTypes;
import com.legacy.aether.network.AetherNetwork;
import com.legacy.aether.network.packets.PacketPerkChanged;
import com.legacy.aether.player.PlayerAether;
import com.legacy.aether.player.perks.AetherRankings;
import com.legacy.aether.player.perks.util.DonatorMoaSkin;
import com.legacy.aether.player.perks.util.EnumAetherPerkType;
import com.gildedgames.the_aether.entities.passive.mountable.EntityMoa;
import com.gildedgames.the_aether.entities.util.AetherMoaTypes;
import com.gildedgames.the_aether.network.AetherNetwork;
import com.gildedgames.the_aether.network.packets.PacketPerkChanged;
import com.gildedgames.the_aether.player.PlayerAether;
import com.gildedgames.the_aether.player.perks.AetherRankings;
import com.gildedgames.the_aether.player.perks.util.DonatorMoaSkin;
import com.gildedgames.the_aether.player.perks.util.EnumAetherPerkType;
public class GuiAetherPerks extends GuiScreen {

View file

@ -1,4 +1,4 @@
package com.legacy.aether.client.gui.menu;
package com.gildedgames.the_aether.client.gui.menu;
import com.google.common.base.Strings;
import com.google.common.collect.Lists;

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