Updated to Forge 2340

This commit is contained in:
Adubbz 2017-06-20 23:35:08 +10:00
parent 93475aafd6
commit 5417e0656b
3 changed files with 3 additions and 11 deletions

View file

@ -1,4 +1,4 @@
minecraft_version=1.12
forge_version=14.21.0.2330
forge_version=14.21.0.2340
mod_version=7.0.0
mappings_version=snapshot_nodoc_20170619

View file

@ -13,17 +13,9 @@ import net.minecraft.util.ResourceLocation;
import net.minecraft.util.SoundEvent;
public class ItemBOPRecord extends ItemRecord
{
{
public ItemBOPRecord(String name, SoundEvent record)
{
super(name, record);
}
@Override
public ResourceLocation getRecordResource(String name)
{
return new ResourceLocation("biomesoplenty:"+name);
}
}

View file

@ -43,7 +43,7 @@ import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.event.FMLServerStartingEvent;
import net.minecraftforge.fml.common.network.NetworkRegistry;
@Mod(modid = BiomesOPlenty.MOD_ID, version = BiomesOPlenty.MOD_VERSION , name = BiomesOPlenty.MOD_NAME, dependencies = "required-after:forge@[14.21.0.2330,)", guiFactory = BiomesOPlenty.GUI_FACTORY)
@Mod(modid = BiomesOPlenty.MOD_ID, version = BiomesOPlenty.MOD_VERSION , name = BiomesOPlenty.MOD_NAME, dependencies = "required-after:forge@[14.21.0.2340,)", guiFactory = BiomesOPlenty.GUI_FACTORY)
public class BiomesOPlenty
{
public static final String MOD_NAME = "Biomes O' Plenty";