mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 23:28:35 +01:00
right
This commit is contained in:
parent
8f65ac4683
commit
204548ff75
3 changed files with 3 additions and 4 deletions
|
@ -17,7 +17,6 @@ import de.ellpeck.actuallyadditions.api.laser.ILaserRelayConnectionHandler;
|
||||||
import de.ellpeck.actuallyadditions.api.lens.Lens;
|
import de.ellpeck.actuallyadditions.api.lens.Lens;
|
||||||
import de.ellpeck.actuallyadditions.api.lens.LensConversion;
|
import de.ellpeck.actuallyadditions.api.lens.LensConversion;
|
||||||
import de.ellpeck.actuallyadditions.api.recipe.*;
|
import de.ellpeck.actuallyadditions.api.recipe.*;
|
||||||
import de.ellpeck.actuallyadditions.mod.items.lens.LensMining;
|
|
||||||
import net.minecraft.block.Block;
|
import net.minecraft.block.Block;
|
||||||
import net.minecraft.item.Item;
|
import net.minecraft.item.Item;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
|
@ -31,7 +30,7 @@ public final class ActuallyAdditionsAPI{
|
||||||
|
|
||||||
public static final String MOD_ID = "actuallyadditions";
|
public static final String MOD_ID = "actuallyadditions";
|
||||||
public static final String API_ID = MOD_ID+"api";
|
public static final String API_ID = MOD_ID+"api";
|
||||||
public static final String API_VERSION = "25";
|
public static final String API_VERSION = "26";
|
||||||
|
|
||||||
public static final List<CrusherRecipe> CRUSHER_RECIPES = new ArrayList<CrusherRecipe>();
|
public static final List<CrusherRecipe> CRUSHER_RECIPES = new ArrayList<CrusherRecipe>();
|
||||||
public static final List<BallOfFurReturn> BALL_OF_FUR_RETURN_ITEMS = new ArrayList<BallOfFurReturn>();
|
public static final List<BallOfFurReturn> BALL_OF_FUR_RETURN_ITEMS = new ArrayList<BallOfFurReturn>();
|
||||||
|
|
|
@ -37,5 +37,5 @@ public interface ILaserRelayConnectionHandler{
|
||||||
|
|
||||||
LaserType getTypeFromLaser(TileEntity tile);
|
LaserType getTypeFromLaser(TileEntity tile);
|
||||||
|
|
||||||
LaserType getTypeFromLsaer(BlockPos pos, World world);
|
LaserType getTypeFromLaser(BlockPos pos, World world);
|
||||||
}
|
}
|
||||||
|
|
|
@ -173,7 +173,7 @@ public final class LaserRelayConnectionHandler implements ILaserRelayConnectionH
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public LaserType getTypeFromLsaer(BlockPos pos, World world){
|
public LaserType getTypeFromLaser(BlockPos pos, World world){
|
||||||
return this.getTypeFromLaser(world.getTileEntity(pos));
|
return this.getTypeFromLaser(world.getTileEntity(pos));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue