mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 23:28:35 +01:00
Removed Waila compat.
I didn't need it anyways.
This commit is contained in:
parent
18f9ec4ce2
commit
1a13ef9b13
2 changed files with 0 additions and 58 deletions
|
@ -87,7 +87,6 @@ public class ActuallyAdditions{
|
||||||
InitEvents.init();
|
InitEvents.init();
|
||||||
InitCrafting.init();
|
InitCrafting.init();
|
||||||
DungeonLoot.init();
|
DungeonLoot.init();
|
||||||
FMLInterModComms.sendMessage("Waila", "register", "ellpeck.actuallyadditions.waila.WailaDataProvider.register");
|
|
||||||
proxy.init(event);
|
proxy.init(event);
|
||||||
|
|
||||||
ModUtil.LOGGER.info("Initialization Finished.");
|
ModUtil.LOGGER.info("Initialization Finished.");
|
||||||
|
|
|
@ -1,57 +0,0 @@
|
||||||
/*
|
|
||||||
* This file ("WailaDataProvider.java") is part of the Actually Additions Mod for Minecraft.
|
|
||||||
* It is created and owned by Ellpeck and distributed
|
|
||||||
* under the Actually Additions License to be found at
|
|
||||||
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
||||||
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
||||||
*
|
|
||||||
* © 2015 Ellpeck
|
|
||||||
*/
|
|
||||||
|
|
||||||
package ellpeck.actuallyadditions.waila;
|
|
||||||
|
|
||||||
import ellpeck.actuallyadditions.util.ModUtil;
|
|
||||||
import mcp.mobius.waila.api.IWailaConfigHandler;
|
|
||||||
import mcp.mobius.waila.api.IWailaDataAccessor;
|
|
||||||
import mcp.mobius.waila.api.IWailaDataProvider;
|
|
||||||
import mcp.mobius.waila.api.IWailaRegistrar;
|
|
||||||
import net.minecraft.entity.player.EntityPlayerMP;
|
|
||||||
import net.minecraft.item.ItemStack;
|
|
||||||
import net.minecraft.nbt.NBTTagCompound;
|
|
||||||
import net.minecraft.tileentity.TileEntity;
|
|
||||||
import net.minecraft.world.World;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@SuppressWarnings("unused")
|
|
||||||
public class WailaDataProvider implements IWailaDataProvider{
|
|
||||||
|
|
||||||
public static void register(IWailaRegistrar registrar){
|
|
||||||
ModUtil.LOGGER.info("Initializing Waila Plugin...");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public ItemStack getWailaStack(IWailaDataAccessor accessor, IWailaConfigHandler config){
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<String> getWailaHead(ItemStack stack, List<String> currentTip, IWailaDataAccessor accessor, IWailaConfigHandler config){
|
|
||||||
return currentTip;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<String> getWailaBody(ItemStack stack, List<String> currentTip, IWailaDataAccessor accessor, IWailaConfigHandler config){
|
|
||||||
return currentTip;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<String> getWailaTail(ItemStack stack, List<String> currentTip, IWailaDataAccessor accessor, IWailaConfigHandler config){
|
|
||||||
return currentTip;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public NBTTagCompound getNBTData(EntityPlayerMP player, TileEntity te, NBTTagCompound tag, World world, int x, int y, int z){
|
|
||||||
return tag;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue