Update to latest FTBUtils

This commit is contained in:
Tschipp 2017-11-04 09:38:38 +01:00
parent 4daed35785
commit d8647e8ab8
4 changed files with 7 additions and 7 deletions

View File

@ -47,8 +47,8 @@ dependencies {
deobfCompile "net.darkhax.gamestages:GameStages-1.12:1.0.13" deobfCompile "net.darkhax.gamestages:GameStages-1.12:1.0.13"
deobfCompile "LatMod:FTBUtilities:4.1.0" deobfCompile "LatMod:FTBUtilities:4.1.6"
deobfCompile "LatMod:FTBLib:4.1.0" deobfCompile "LatMod:FTBLib:4.1.6"
} }

View File

@ -21,7 +21,7 @@ import tschipp.carryon.common.command.CommandCarryOn;
import tschipp.carryon.common.command.CommandCarryOnReload; import tschipp.carryon.common.command.CommandCarryOnReload;
@EventBusSubscriber @EventBusSubscriber
@Mod(modid = CarryOn.MODID, name = CarryOn.NAME, version = CarryOn.VERSION, guiFactory = "tschipp.carryon.client.gui.GuiFactoryCarryOn", dependencies = "required-after:forge@[13.20.1.2386,)", updateJSON = CarryOn.UPDATE_JSON) @Mod(modid = CarryOn.MODID, name = CarryOn.NAME, version = CarryOn.VERSION, guiFactory = "tschipp.carryon.client.gui.GuiFactoryCarryOn", dependencies = "required-after:forge@[13.20.1.2386,);after:ftbu@[4.1.4,)", updateJSON = CarryOn.UPDATE_JSON)
public class CarryOn { public class CarryOn {
@SidedProxy(clientSide = "tschipp.carryon.client.ClientProxy", serverSide = "tschipp.carryon.common.CommonProxy") @SidedProxy(clientSide = "tschipp.carryon.client.ClientProxy", serverSide = "tschipp.carryon.common.CommonProxy")
@ -32,7 +32,7 @@ public class CarryOn {
public static CarryOn instance; public static CarryOn instance;
public static final String MODID = "carryon"; public static final String MODID = "carryon";
public static final String VERSION = "1.6"; public static final String VERSION = "1.6.1";
public static final String NAME = "Carry On"; public static final String NAME = "Carry On";
public static final String UPDATE_JSON = "https://gist.githubusercontent.com/Tschipp/dccadee7c90d7a34e6e76a35d9d6fa2e/raw/"; public static final String UPDATE_JSON = "https://gist.githubusercontent.com/Tschipp/dccadee7c90d7a34e6e76a35d9d6fa2e/raw/";
public static final Logger LOGGER = LogManager.getFormatterLogger("CarryOn"); public static final Logger LOGGER = LogManager.getFormatterLogger("CarryOn");

View File

@ -4,7 +4,7 @@ import javax.annotation.Nullable;
import com.feed_the_beast.ftbl.lib.math.BlockPosContainer; import com.feed_the_beast.ftbl.lib.math.BlockPosContainer;
import com.feed_the_beast.ftbu.api.chunks.BlockInteractionType; import com.feed_the_beast.ftbu.api.chunks.BlockInteractionType;
import com.feed_the_beast.ftbu.api_impl.ClaimedChunkStorage; import com.feed_the_beast.ftbu.api_impl.ClaimedChunks;
import net.darkhax.gamestages.capabilities.PlayerDataHandler; import net.darkhax.gamestages.capabilities.PlayerDataHandler;
import net.darkhax.gamestages.capabilities.PlayerDataHandler.IStageData; import net.darkhax.gamestages.capabilities.PlayerDataHandler.IStageData;
@ -192,7 +192,7 @@ public class PickupHandler
if (Loader.isModLoaded("ftbu")) if (Loader.isModLoaded("ftbu"))
{ {
BlockPosContainer container = new BlockPosContainer(world, pos, state); BlockPosContainer container = new BlockPosContainer(world, pos, state);
return ClaimedChunkStorage.INSTANCE.canPlayerInteract((EntityPlayerMP) player, EnumHand.MAIN_HAND, container, BlockInteractionType.CNB_BREAK); return ClaimedChunks.INSTANCE.canPlayerInteract((EntityPlayerMP) player, EnumHand.MAIN_HAND, container, BlockInteractionType.CNB_BREAK);
} }
return true; return true;
} }

View File

@ -2,7 +2,7 @@
{ {
"modid" : "carryon", "modid" : "carryon",
"name" : "Carry On", "name" : "Carry On",
"version" : "1.6", "mcversion" : "1.12", "version" : "1.6.1", "mcversion" : "1.12",
"url" : "", "url" : "",
"credits" : "Tschipp, Purplicious_Cow, cy4n", "credits" : "Tschipp, Purplicious_Cow, cy4n",
"authorList" : ["Tschipp, Purplicious_Cow, cy4n"], "authorList" : ["Tschipp, Purplicious_Cow, cy4n"],