Jump to content

Recommended Posts

Posted

I am working on a mod called StorageSolutions and I have 3 basic GUIs already working. However my 4th is not working. For some reason the player.openGUI() isn't opening the GUI. I do not see any errors in log, and I don't know what to do. BTW: when I was trying to figure it out, I added some prints to the console, mainly in the GUI Handler and Block class.

 

Block Class:

package com.thatcreepyuncle.storagesolutions.blocks;

import java.util.Random;

import com.thatcreepyuncle.storagesolutions.StorageSolutions;
import com.thatcreepyuncle.storagesolutions.core.ModCreativeTabs;
import com.thatcreepyuncle.storagesolutions.tileEntity.TileEntityCabinet;
import com.thatcreepyuncle.storagesolutions.tileEntity.TileEntitySafe;

import net.minecraft.block.Block;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.block.properties.PropertyDirection;
import net.minecraft.block.state.BlockStateContainer;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.EnumBlockRenderType;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumHand;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;

public class Safe extends BlockContainer {

public static final PropertyDirection FACING = PropertyDirection.create("facing", EnumFacing.Plane.HORIZONTAL);
private static String registryName = "safe";

public Safe() {
	super(Material.anvil);
	this.setRegistryName(registryName);
	System.out.println(registryName);
	this.setHardness(10);
	this.setUnlocalizedName(StorageSolutions.MODID + ":" + registryName);
	this.setCreativeTab(ModCreativeTabs.tabStorageSolutions);

	this.setDefaultState(blockState.getBaseState().withProperty(FACING, EnumFacing.NORTH));
}

@Override
public void onBlockAdded(World world, BlockPos pos, IBlockState state) {
	if (!world.isRemote) {
		Block blockNorth = world.getBlockState(pos.north()).getBlock();
		Block blockSouth = world.getBlockState(pos.south()).getBlock();
		Block blockWest = world.getBlockState(pos.west()).getBlock();
		Block blockEast = world.getBlockState(pos.east()).getBlock();

		EnumFacing facing = state.getValue(FACING);

		if (facing == EnumFacing.NORTH && blockNorth.isFullBlock(state) && !blockSouth.isFullBlock(state))
			facing = EnumFacing.SOUTH;
		if (facing == EnumFacing.SOUTH && blockSouth.isFullBlock(state) && !blockNorth.isFullBlock(state))
			facing = EnumFacing.NORTH;
		if (facing == EnumFacing.WEST && blockWest.isFullBlock(state) && !blockEast.isFullBlock(state))
			facing = EnumFacing.EAST;
		if (facing == EnumFacing.EAST && blockEast.isFullBlock(state) && !blockWest.isFullBlock(state))
			facing = EnumFacing.WEST;

		world.setBlockState(pos, state.withProperty(FACING, facing), 2);
	}
}

@Override
public IBlockState onBlockPlaced(World world, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ,
		int meta, EntityLivingBase placer) {
	return getDefaultState().withProperty(FACING, placer.getHorizontalFacing().getOpposite());
}

@Override
public EnumBlockRenderType getRenderType(IBlockState state) {
	return EnumBlockRenderType.MODEL;
}

@Override
public Item getItemDropped(IBlockState state, Random rand, int fortune) {
	return Item.getItemFromBlock(this);
}

@Override
protected BlockStateContainer createBlockState() {
	return new BlockStateContainer(this, FACING);
}

@Override
public IBlockState getStateFromMeta(int meta) {
	EnumFacing facing = EnumFacing.getFront(meta);
	if (facing.getAxis() == EnumFacing.Axis.Y)
		facing = EnumFacing.NORTH;

	return getDefaultState().withProperty(FACING, facing);
}

@Override
public int getMetaFromState(IBlockState state) {
	return (state.getValue(FACING)).getIndex();
}

@Override
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand,
		ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ) {
	if (!world.isRemote) {
		TileEntity tile_entity = world.getTileEntity(pos);
		System.out.println("CHECKING TILE ENTITY");
		if (tile_entity instanceof TileEntitySafe) {
			System.out.println("OPENING GUI");
			player.openGui(StorageSolutions.instance, 3, world, pos.getX(), pos.getY(), pos.getZ());
		}

	}
	return true;
}

@Override
public TileEntity createNewTileEntity(World worldIn, int meta) {
	return new TileEntitySafe();
}
}

 

GUI Handler:

package com.thatcreepyuncle.storagesolutions.core;

import com.thatcreepyuncle.storagesolutions.gui.SafeGUI;
import com.thatcreepyuncle.storagesolutions.gui.SimpleCabinetGUI;
import com.thatcreepyuncle.storagesolutions.gui.containers.CabinentContainer;
import com.thatcreepyuncle.storagesolutions.gui.containers.SafeContainer;
import com.thatcreepyuncle.storagesolutions.tileEntity.TileEntityCabinet;
import com.thatcreepyuncle.storagesolutions.tileEntity.TileEntitySafe;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.fml.common.network.IGuiHandler;

public class GuiHandler implements IGuiHandler {

@Override
public Object getServerGuiElement(int id, EntityPlayer player, World world, int x, int y, int z)
{
	TileEntity tile_entity = world.getTileEntity(new BlockPos(x, y, z));
	if (id == 0)
	{
		return new CabinentContainer(player.inventory, (TileEntityCabinet) tile_entity);
	}
	if(id == 1){
		return new CabinentContainer(player.inventory, (TileEntityCabinet) tile_entity);
	}
	if(id == 2){
		return new CabinentContainer(player.inventory, (TileEntityCabinet) tile_entity);
	}
	if(id == 2){
		return new SafeContainer(player.inventory, (TileEntitySafe) tile_entity);
	}
	return null;
}

@Override
public Object getClientGuiElement(int id, EntityPlayer player, World world, int x, int y, int z)
{
	TileEntity tile_entity = world.getTileEntity(new BlockPos(x, y, z));
	System.out.println("Opening: " + id);
	if (id == 0)
	{
		return new SimpleCabinetGUI(player.inventory, (TileEntityCabinet) tile_entity, "spruce_cabinet", 175, 165);
	}
	if(id == 1){
		return new SimpleCabinetGUI(player.inventory, (TileEntityCabinet) tile_entity, "oak_cabinet", 175, 165);
	}
	if(id == 2){
		return new SimpleCabinetGUI(player.inventory, (TileEntityCabinet) tile_entity, "iron_cabinet", 175, 165);
	}
	if(id == 3){
		System.out.println("Displaying Safe");
		return new SafeGUI(player.inventory, (TileEntitySafe) tile_entity);
	}
	return null;

}	
}

 

Console:

 

2016-06-02 15:30:05,833 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-06-02 15:30:05,836 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[15:30:05] [main/INFO] [GradleStart]: Extra: []
[15:30:05] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Noah/.gradle/caches/minecraft/assets, --assetIndex, 1.9, --accessToken{REDACTED}, --version, 1.9, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[15:30:06] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[15:30:06] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[15:30:06] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[15:30:06] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[15:30:06] [main/INFO] [FML]: Forge Mod Loader version 12.16.1.1887 for Minecraft 1.9 loading
[15:30:06] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_65, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_66\jre
[15:30:06] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[15:30:06] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[15:30:06] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[15:30:06] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[15:30:06] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[15:30:06] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[15:30:06] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[15:30:06] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[15:30:06] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[15:30:06] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[15:30:06] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[15:30:08] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[15:30:08] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[15:30:08] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[15:30:09] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[15:30:09] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[15:30:09] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[15:30:09] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
2016-06-02 15:30:10,327 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-06-02 15:30:10,372 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-06-02 15:30:10,376 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[15:30:10] [Client thread/INFO]: Setting user: Player129
[15:30:15] [Client thread/INFO]: LWJGL Version: 2.9.4
[15:30:16] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:200]: ---- Minecraft Crash Report ----
// Would you like a cupcake?

Time: 6/2/16 3:30 PM
Description: Loading screen debug info

This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- System Details --
Details:
Minecraft Version: 1.9
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_65, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 772617088 bytes (736 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: 
Loaded coremods (and transformers): 
GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13416 Compatibility Profile Context 15.300.1025.1001' Renderer: 'AMD Radeon R7 200 Series'
[15:30:16] [Client thread/INFO] [FML]: MinecraftForge v12.16.1.1887 Initialized
[15:30:16] [Client thread/INFO] [FML]: Replaced 232 ore recipes
[15:30:17] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[15:30:17] [Client thread/INFO] [FML]: Searching C:\Users\Noah\Desktop\StorageSolutions\run\mods for mods
[15:30:19] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
[15:30:19] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, StorageSolutions] at CLIENT
[15:30:19] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, StorageSolutions] at SERVER
[15:30:19] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Storage Solutions
[15:30:19] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[15:30:19] [Client thread/INFO] [FML]: Found 418 ObjectHolder annotations
[15:30:20] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[15:30:20] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[15:30:20] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[15:30:20] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[15:30:20] [Client thread/INFO] [sTDOUT]: [com.thatcreepyuncle.storagesolutions.blocks.cabinets.Cabinet:<init>:37]: spruce_cabinet
[15:30:20] [Client thread/INFO] [sTDOUT]: [com.thatcreepyuncle.storagesolutions.blocks.cabinets.Cabinet:<init>:37]: oak_cabinet
[15:30:20] [Client thread/INFO] [sTDOUT]: [com.thatcreepyuncle.storagesolutions.blocks.cabinets.Cabinet:<init>:37]: iron_cabinet
[15:30:20] [Client thread/INFO] [sTDOUT]: [com.thatcreepyuncle.storagesolutions.blocks.Safe:<init>:35]: safe
[15:30:20] [Client thread/INFO] [FML]: Applying holder lookups
[15:30:20] [Client thread/INFO] [FML]: Holder lookups applied
[15:30:20] [Client thread/INFO] [FML]: Injecting itemstacks
[15:30:20] [Client thread/INFO] [FML]: Itemstack injection complete
[15:30:20] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: UP_TO_DATE Target: null
[15:30:24] [sound Library Loader/INFO]: Starting up SoundSystem...
[15:30:25] [Thread-8/INFO]: Initializing LWJGL OpenAL
[15:30:25] [Thread-8/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[15:30:25] [Thread-8/INFO]: OpenAL initialized.
[15:30:25] [sound Library Loader/INFO]: Sound engine started
[15:30:31] [Client thread/INFO] [FML]: Max texture size: 16384
[15:30:31] [Client thread/INFO]: Created: 16x16 textures-atlas
[15:30:33] [Client thread/INFO] [FML]: Injecting itemstacks
[15:30:33] [Client thread/INFO] [FML]: Itemstack injection complete
[15:30:33] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
[15:30:33] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Storage Solutions
[15:30:38] [Client thread/INFO]: SoundSystem shutting down...
[15:30:38] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
[15:30:38] [sound Library Loader/INFO]: Starting up SoundSystem...
[15:30:38] [Thread-10/INFO]: Initializing LWJGL OpenAL
[15:30:38] [Thread-10/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[15:30:38] [Thread-10/INFO]: OpenAL initialized.
[15:30:39] [sound Library Loader/INFO]: Sound engine started
[15:30:44] [Client thread/INFO] [FML]: Max texture size: 16384
[15:30:44] [Client thread/INFO]: Created: 1024x512 textures-atlas
[15:30:46] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
[15:30:50] [server thread/INFO]: Starting integrated minecraft server version 1.9
[15:30:50] [server thread/INFO]: Generating keypair
[15:30:51] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[15:30:51] [server thread/INFO] [FML]: Applying holder lookups
[15:30:51] [server thread/INFO] [FML]: Holder lookups applied
[15:30:51] [server thread/INFO] [FML]: Loading dimension 0 (Dev World) (net.minecraft.server.integrated.IntegratedServer@20363039)
[15:30:51] [server thread/INFO] [FML]: Loading dimension 1 (Dev World) (net.minecraft.server.integrated.IntegratedServer@20363039)
[15:30:51] [server thread/INFO] [FML]: Loading dimension -1 (Dev World) (net.minecraft.server.integrated.IntegratedServer@20363039)
[15:30:51] [server thread/INFO]: Preparing start region for level 0
[15:30:52] [server thread/INFO]: Preparing spawn area: 7%
[15:30:53] [server thread/INFO]: Preparing spawn area: 96%
[15:30:54] [server thread/INFO]: Changing view distance to 5, from 10
[15:30:55] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
[15:30:55] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
[15:30:55] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]
[15:30:55] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
[15:30:55] [server thread/INFO] [FML]: [server thread] Server side modded connection established
[15:30:55] [server thread/INFO]: Player129[local:E:16e723cf] logged in with entity id 262 at (-215.83490069548589, 64.0, 388.523279551267)
[15:30:55] [server thread/INFO]: Player129 joined the game
[15:30:56] [server thread/INFO]: Saving and pausing game...
[15:30:56] [server thread/INFO]: Saving chunks for level 'Dev World'/Overworld
[15:30:56] [server thread/INFO]: Saving chunks for level 'Dev World'/Nether
[15:30:56] [server thread/INFO]: Saving chunks for level 'Dev World'/The End
[15:30:56] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@62837e6d[id=3584c7cd-614b-3687-b1ad-b239e7a37bd8,name=Player129,properties={},legacy=false]
com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:65) ~[YggdrasilAuthenticationService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:175) [YggdrasilMinecraftSessionService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:59) [YggdrasilMinecraftSessionService$1.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:56) [YggdrasilMinecraftSessionService$1.class:?]
at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?]
at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:165) [YggdrasilMinecraftSessionService.class:?]
at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:3038) [Minecraft.class:?]
at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:130) [skinManager$3.class:?]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:1.8.0_65]
at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_65]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [?:1.8.0_65]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [?:1.8.0_65]
at java.lang.Thread.run(Thread.java:745) [?:1.8.0_65]
[15:30:59] [server thread/INFO]: Saving and pausing game...
[15:30:59] [server thread/INFO]: Saving chunks for level 'Dev World'/Overworld
[15:30:59] [server thread/INFO]: Saving chunks for level 'Dev World'/Nether
[15:30:59] [server thread/INFO]: Saving chunks for level 'Dev World'/The End
[15:31:45] [server thread/INFO] [sTDOUT]: [com.thatcreepyuncle.storagesolutions.blocks.Safe:onBlockActivated:106]: CHECKING TILE ENTITY
[15:31:45] [server thread/INFO] [sTDOUT]: [com.thatcreepyuncle.storagesolutions.blocks.Safe:onBlockActivated:108]: OPENING GUI
[15:31:47] [server thread/INFO]: Saving and pausing game...
[15:31:47] [server thread/INFO]: Saving chunks for level 'Dev World'/Overworld
[15:31:47] [server thread/INFO]: Saving chunks for level 'Dev World'/Nether
[15:31:47] [server thread/INFO]: Saving chunks for level 'Dev World'/The End
[15:31:58] [server thread/INFO]: Saving and pausing game...
[15:31:58] [server thread/INFO]: Saving chunks for level 'Dev World'/Overworld
[15:31:58] [server thread/INFO]: Saving chunks for level 'Dev World'/Nether
[15:31:58] [server thread/INFO]: Saving chunks for level 'Dev World'/The End
[15:31:59] [server thread/INFO]: Stopping server
[15:31:59] [server thread/INFO]: Saving players
[15:31:59] [server thread/INFO]: Saving worlds
[15:31:59] [server thread/INFO]: Saving chunks for level 'Dev World'/Overworld
[15:31:59] [server thread/INFO]: Saving chunks for level 'Dev World'/Nether
[15:31:59] [server thread/INFO]: Saving chunks for level 'Dev World'/The End
[15:31:59] [server thread/INFO] [FML]: Unloading dimension 0
[15:31:59] [server thread/INFO] [FML]: Unloading dimension -1
[15:31:59] [server thread/INFO] [FML]: Unloading dimension 1
[15:31:59] [server thread/INFO] [FML]: Applying holder lookups
[15:31:59] [server thread/INFO] [FML]: Holder lookups applied
[15:32:00] [Client thread/INFO]: Stopping!
[15:32:00] [Client thread/INFO]: SoundSystem shutting down...
[15:32:01] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release

 

Thanks for any suggestions given!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.