Skip to content

Instantly share code, notes, and snippets.

View Dockter's full-sized avatar

Dockter Dockter

View GitHub Profile
@Dockter
Dockter / gist:f9b1791ff921a10e9b8ef7ff900fea39
Created July 19, 2016 03:25
TerrainControl Biome ID Error
[22:20:09] [Server thread/INFO] [TerrainControl/]: 492 world custom objects loaded.
[22:20:11] [Server thread/WARN] [TerrainControl/]: Invalid resource CustomStructure in SchieferBorder on line 323: No custom object found with the name schiefer
[22:20:11] [Server thread/WARN] [TerrainControl/]: Invalid resource CustomObject in Summits2 on line 325: No custom object found with the name dragonnest
[22:20:11] [Server thread/WARN] [TerrainControl/]: Invalid resource CustomObject in GravelCreekFalls on line 326: No custom object found with the name creek_falls
[22:20:12] [Server thread/WARN] [TerrainControl/]: Invalid resource CustomObject in GravelCreek on line 310: No custom object found with the name creek
[22:20:12] [Server thread/WARN] [TerrainControl/]: Invalid resource CustomObject in Wasteland on line 323: No custom object found with the name leaves1
[22:20:13] [Server thread/WARN] [TerrainControl/]: Invalid resource CustomStructure in Desert on line 322: No custom object found with the name sandcliff
[22:
#######################################################################
# +-----------------------------------------------------------------+ #
# | WorldConfig | #
# +-----------------------------------------------------------------+ #
#######################################################################
# The author of this world
Author: Unknown
18:29:47] [main/TRACE] [sgcraft/sgcraft]: Sending event FMLPreInitializationEvent to mod sgcraft
[18:29:47] [main/WARN] [FML/sgcraft]: ****************************************
[18:29:47] [main/WARN] [FML/sgcraft]: * Invalid registration attempt for an Ore Dictionary item with name oreNaquadah has occurred. The registration has been denied to prevent crashes. The mod responsible for the registration needs to correct this.
[18:29:47] [main/WARN] [FML/sgcraft]: * at net.minecraftforge.oredict.OreDictionary.registerOreImpl(OreDictionary.java:642)
[18:29:47] [main/WARN] [FML/sgcraft]: * at net.minecraftforge.oredict.OreDictionary.registerOre(OreDictionary.java:628)
[18:29:47] [main/WARN] [FML/sgcraft]: * at gcewing.sg.BaseMod.addOre(BaseMod.java:415)
[18:29:47] [main/WARN] [FML/sgcraft]: * at gcewing.sg.SGCraft.registerOres(SGCraft.java:164)
[18:29:47] [main/WARN] [FML/sgcraft]: * at gcewing.sg.BaseMod.preInit(BaseMod.java:181)
[18:29:47] [main/WARN] [FML/sgcraft]: * at gcewing.sg.SGCraft.preInit(SGCraft.jav
[19:55:46] [main/TRACE] [sgcraft/sgcraft]: Sending event FMLPreInitializationEvent to mod sgcraft
[19:55:46] [main/WARN] [FML/sgcraft]: ****************************************
[19:55:46] [main/WARN] [FML/sgcraft]: * Invalid registration attempt for an Ore Dictionary item with name oreNaquadah has occurred. The registration has been denied to prevent crashes. The mod responsible for the registration needs to correct this.
[19:55:46] [main/WARN] [FML/sgcraft]: * at net.minecraftforge.oredict.OreDictionary.registerOreImpl(OreDictionary.java:642)
[19:55:46] [main/WARN] [FML/sgcraft]: * at net.minecraftforge.oredict.OreDictionary.registerOre(OreDictionary.java:628)
[19:55:46] [main/WARN] [FML/sgcraft]: * at gcewing.sg.BaseMod.addOre(BaseMod.java:419)
[19:55:46] [main/WARN] [FML/sgcraft]: * at gcewing.sg.SGCraft.registerOres(SGCraft.java:164)
[19:55:46] [main/WARN] [FML/sgcraft]: * at gcewing.sg.BaseMod.preInit(BaseMod.java:182)
[19:55:46] [main/WARN] [FML/sgcraft]: * at gcewing.sg.SGCraft.preInit(SGCraft.ja
@Override
public void getSubBlocks(CreativeTabs tab, NonNullList<ItemStack> list) {
for (int i = 0; i < numSubBlocks; i++) {
ItemStack item = new ItemStack(this,1,i);
System.out.println("SGCraft: Item: " + item.getDisplayName());
list.add(item);
}
// Update: may be incorrect, needs testing.
}
public <BLOCK extends Block> BLOCK addBlock(BLOCK block, String name, Class itemClass) {
String qualName = assetKey + ":" + name;
block.setUnlocalizedName(qualName);
System.out.println("QualName: " + qualName);
// block.setBlockTextureName(qualName);
System.out.printf("BaseMod.addBlock: name '%s' qualName '%s' %s\n", name, qualName, block);
block.setRegistryName(assetKey, name);
ForgeRegistries.BLOCKS.register(block);
public <ITEM extends Item> ITEM addItem(ITEM item, String name) {
String qualName = assetKey + ":" + name;
item.setUnlocalizedName(qualName);
item.setRegistryName(assetKey, name);
ForgeRegistries.ITEMS.register(item);
System.out.printf("BaseMod.addItem: Registered %s as %s\n", item, name);
if (debugBlockRegistration)
if (creativeTab != null) {
if (block instanceof SGRingBlock) {
final Item sitem = new SGRingItem(block).setRegistryName(block.getRegistryName());
ForgeRegistries.ITEMS.register(sitem);
System.out.println("Registered Special");
}
9:34:59 AM Caused by: java.lang.IllegalStateException: CauseStackManager called from off main thread!
9:34:59 AM at org.spongepowered.common.event.SpongeCauseStackManager.enforceMainThread(SpongeCauseStackManager.java:68) ~[SpongeCauseStackManager.class:1.12.1-2480-7.0.0-BETA-2640]
9:34:59 AM at org.spongepowered.common.event.SpongeCauseStackManager.pushCauseFrame(SpongeCauseStackManager.java:130) ~[SpongeCauseStackManager.class:1.12.1-2480-7.0.0-BETA-2640]
9:34:59 AM at org.spongepowered.common.event.SpongeCommonEventFactory.callNotifyNeighborEvent(SpongeCommonEventFactory.java:446) ~[SpongeCommonEventFactory.class:1.12.1-2480-7.0.0-BETA-2640]
9:34:59 AM at net.minecraft.world.WorldServer.func_175685_c(WorldServer.java:2800) ~[oo.class:?]
9:34:59 AM at gcewing.sg.SGBaseTE.enterState(SGBaseTE.java:485) ~[SGBaseTE.class:?]
9:34:59 AM at gcewing.sg.SGBaseTE.startDiallingToAngle(SGBaseTE.java:919) ~[SGBaseTE.class:?]
9:34:59 AM at gcewing.sg.SGBaseTE.startDiallingSymbol(SGBaseTE.java:907) ~[SGBaseTE.class:?]
9:3
---- Minecraft Crash Report ----
WARNING: coremods are present:
SpongeCoremod (spongeforge-1.12.1-2480-7.0.0-BETA-2640.jar)
Contact their authors BEFORE contacting forge
// I just don't know what went wrong :(
Time: 9/19/17 10:40 AM
Description: Ticking block entity