Jump to content

ScrambledFox

Members
  • Posts

    8
  • Joined

  • Last visited

ScrambledFox's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Make a separate class called something like TileEntityColouredBlock that extends TileEntity. Then in your ColouredBlock class that extends from Block, override Block#hasTileEntity and return true. Also override Block#createTileEntity and return a new instance of your TileEntityColouredBlock class. Don't forget to register your TileEntity.
  2. And by the way, just copying from someone else without permission is just blately a violation of copyright and disrespectful.
  3. Before doing something on this scale, I would suggest to start with making some simpler things.. Try to just create a block with a TileEntity. And instead of doing everything at the same time, just log something in your TileEntity#tick. If that works move on to the next thing, like implementing colour data. You can copy/paste all you want, but you'll never get it to work by doing it the way your handling it right now. Some part of the whole thing won't work and you wouldn't even have clue where you need to look for debugging. If you can only learn from examples, then I suggest to look at the link DavidM posted earlier. But try to understand the code instead of just copy/pasting everything
  4. Yeah, you're right. That would be a better practice. Hard crash if something like this should work and it doesn't.
  5. Yep, you're completely right. Thank you very much. Added parameters to hasTileEntity fixed it. @Override public boolean hasTileEntity( IBlockState state ) { return true; }
  6. I am exactly in the same boat currently, in my case it doesn't even run the NetworkHooks.openGui, because the TileEntity cast check doesn't go through? Is this the same in your case?
  7. I've been working on updating a very old mod of mine, but have some problems right at the start and would like to ask for an extra pair of eyes.. The mill block is basically a custom furnace, but currently doesn't open it's GUI. After doing some checks it seems that the game can't find an instance of TileEntityMill at the block's position. I'm not sure where it goes wrong? BlockMill#onBlockActivated @Override public boolean onBlockActivated(IBlockState state, World worldIn, BlockPos pos, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) { LOGGER.info("test1"); if(!worldIn.isRemote() && player instanceof EntityPlayerMP) { LOGGER.info("test2"); TileEntity tileentity = worldIn.getTileEntity(pos); if (tileentity instanceof TileEntityMill) { LOGGER.info("test3"); NetworkHooks.openGui((EntityPlayerMP)player, new InteractionObjectMill((TileEntityMill)tileentity), (buffer) -> { buffer.writeBlockPos(pos); }); } } return true; } The log just outputs this [07Mar2019 19:00:13.293] [Client thread/INFO] [net.minecraft.block.Block/]: test1 [07Mar2019 19:00:13.341] [Server thread/INFO] [net.minecraft.block.Block/]: test1 [07Mar2019 19:00:13.341] [Server thread/INFO] [net.minecraft.block.Block/]: test2 So it never reaches the openGui call. It did see a warning from forge about data fixers, could this be the source of the problem, as I'm not sure what this is? Full Log [07Mar2019 19:24:59.424] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmluserdevclient, --fml.forgeVersion, 25.0.69, --fml.mcpVersion, 20190213.203750, --fml.mcpMappings, snapshot_20180921-1.13, --fml.mcVersion, 1.13.2, --fml.forgeGroup, net.minecraftforge, --accessToken, ????????, --version, FMLDev, --assetIndex, 1.13.1, --assetsDir, C:\Users\joris\.gradle\caches\forge_gradle\assets, --userProperties, {}] [07Mar2019 19:24:59.428] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher starting: java version 1.8.0_192 [07Mar2019 19:24:59.731] [main/INFO] [net.minecraftforge.fml.loading.FixSSL/CORE]: Added Lets Encrypt root certificates as additional trust [07Mar2019 19:25:00.155] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'fmluserdevclient' with arguments [--gameDir, ., --launchTarget, fmluserdevclient, --fml.forgeVersion, 25.0.69, --fml.mcpVersion, 20190213.203750, --fml.mcpMappings, snapshot_20180921-1.13, --fml.mcVersion, 1.13.2, --fml.forgeGroup, net.minecraftforge, --accessToken, ????????, --version, FMLDev, --assetIndex, 1.13.1, --assetsDir, C:\Users\joris\.gradle\caches\forge_gradle\assets, --userProperties, {}] [07Mar2019 19:25:02.360] [Client thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Player949 [07Mar2019 19:25:11.713] [Client thread/ERROR] [net.minecraft.util.registry.IRegistry/]: Registry 'minecraft:block' was empty after loading [07Mar2019 19:25:11.730] [Client thread/ERROR] [net.minecraft.util.registry.IRegistry/]: Registry 'minecraft:potion' was empty after loading [07Mar2019 19:25:11.730] [Client thread/ERROR] [net.minecraft.util.registry.IRegistry/]: Registry 'minecraft:biome' was empty after loading [07Mar2019 19:25:11.730] [Client thread/ERROR] [net.minecraft.util.registry.IRegistry/]: Registry 'minecraft:block_entity_type' was empty after loading [07Mar2019 19:25:11.730] [Client thread/ERROR] [net.minecraft.util.registry.IRegistry/]: Registry 'minecraft:enchantment' was empty after loading [07Mar2019 19:25:11.730] [Client thread/ERROR] [net.minecraft.util.registry.IRegistry/]: Registry 'minecraft:entity_type' was empty after loading [07Mar2019 19:25:11.730] [Client thread/ERROR] [net.minecraft.util.registry.IRegistry/]: Registry 'minecraft:item' was empty after loading [07Mar2019 19:25:11.730] [Client thread/ERROR] [net.minecraft.util.registry.IRegistry/]: Registry 'minecraft:mob_effect' was empty after loading [07Mar2019 19:25:11.730] [Client thread/ERROR] [net.minecraft.util.registry.IRegistry/]: Registry 'minecraft:sound_event' was empty after loading [07Mar2019 19:25:12.018] [Client thread/WARN] [net.minecraft.client.GameSettings/]: Skipping bad option: lastServer: [07Mar2019 19:25:12.054] [Client thread/INFO] [net.minecraft.client.Minecraft/]: LWJGL Version: 3.1.6 build 14 [07Mar2019 19:25:15.931] [modloading-worker-2/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 25.0.69, for MC 1.13.2 with MCP 20190213.203750 [07Mar2019 19:25:15.931] [modloading-worker-2/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v25.0.69 Initialized [07Mar2019 19:25:16.186] [Client thread/INFO] [scrambledfoxmorefood/]: Blocks registered. [07Mar2019 19:25:16.191] [Client thread/INFO] [scrambledfoxmorefood/]: Items registered. [07Mar2019 19:25:16.212] [Client thread/WARN] [net.minecraft.tileentity.TileEntityType/]: No data fixer registered for block entity scrambledfoxmorefood:mill_tile_entity [07Mar2019 19:25:16.212] [Client thread/INFO] [scrambledfoxmorefood/]: Tile Entities registered. [07Mar2019 19:25:16.229] [modloading-worker-1/INFO] [scrambledfoxmorefood/]: Setup method running.. [07Mar2019 19:25:16.229] [Thread-1/FATAL] [net.minecraftforge.common.ForgeConfig/CORE]: Forge config just got changed on the file system! [07Mar2019 19:25:16.382] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [07Mar2019 19:25:16.382] [modloading-worker-1/INFO] [scrambledfoxmorefood/]: Client Registries method running.. [07Mar2019 19:25:16.410] [Client thread/INFO] [net.minecraft.resources.SimpleReloadableResourceManager/]: Reloading ResourceManager: main, forge-1.13.2-25.0.69_mapped_snapshot_20180921-1.13.jar, Default [07Mar2019 19:25:16.980] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: BETA_OUTDATED Target: 25.0.73 [07Mar2019 19:25:17.549] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager/]: Starting up SoundSystem version 201809301515... [07Mar2019 19:25:17.792] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager/]: Initializing No Sound [07Mar2019 19:25:17.793] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager/]: (Silent Mode) [07Mar2019 19:25:18.051] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager/]: OpenAL initialized. [07Mar2019 19:25:18.164] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager/SOUNDS]: Preloading sound minecraft:sounds/ambient/underwater/underwater_ambience.ogg [07Mar2019 19:25:18.169] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager/SOUNDS]: Sound engine started [07Mar2019 19:25:23.541] [Client thread/INFO] [net.minecraft.client.renderer.texture.TextureMap/]: Max texture size: 16384 [07Mar2019 19:25:25.532] [Client thread/INFO] [net.minecraft.client.renderer.texture.TextureMap/]: Created: 512x512 textures-atlas [07Mar2019 19:25:28.446] [Client thread/INFO] [net.minecraftforge.fml.common.ObfuscationReflectionHelper/REFLECTION]: Loading Mappings: jar:file:/C:/Users/joris/.gradle/caches/modules-2/files-2.1/de.oceanlabs.mcp/mcp_snapshot/20180921-1.13/c0dbdc4588889e083624b346f86e148aae928b8e/mcp_snapshot-20180921-1.13.zip!/fields.csv [07Mar2019 19:25:28.469] [Client thread/INFO] [net.minecraftforge.fml.common.ObfuscationReflectionHelper/REFLECTION]: Loaded 11816 entries [07Mar2019 19:25:28.469] [Client thread/INFO] [net.minecraftforge.fml.common.ObfuscationReflectionHelper/REFLECTION]: Loading Mappings: jar:file:/C:/Users/joris/.gradle/caches/modules-2/files-2.1/de.oceanlabs.mcp/mcp_snapshot/20180921-1.13/c0dbdc4588889e083624b346f86e148aae928b8e/mcp_snapshot-20180921-1.13.zip!/methods.csv [07Mar2019 19:25:28.483] [Client thread/INFO] [net.minecraftforge.fml.common.ObfuscationReflectionHelper/REFLECTION]: Loaded 10770 entries [07Mar2019 19:25:28.564] [Client thread/WARN] [net.minecraft.client.GameSettings/]: Skipping bad option: lastServer: [07Mar2019 19:25:28.667] [Client thread/INFO] [com.mojang.text2speech.NarratorWindows/]: Narrator library for x64 successfully loaded [07Mar2019 19:25:29.330] [Realms Notification Availability checker #1/INFO] [com.mojang.realmsclient.client.RealmsClient/]: Could not authorize you against Realms server: Invalid session id [07Mar2019 19:25:37.782] [Client thread/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498] [07Mar2019 19:25:37.783] [Client thread/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0] [07Mar2019 19:25:37.784] [Client thread/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0] [07Mar2019 19:25:37.784] [Client thread/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498] [07Mar2019 19:25:37.785] [Client thread/WARN] [net.minecraft.command.Commands/]: Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0] [07Mar2019 19:25:37.916] [Client thread/INFO] [net.minecraft.item.crafting.RecipeManager/]: Loaded 0 recipes [07Mar2019 19:25:37.917] [Client thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 0 advancements [07Mar2019 19:25:37.960] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer/]: Starting integrated minecraft server version 1.13.2 [07Mar2019 19:25:37.961] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer/]: Generating keypair [07Mar2019 19:25:38.060] [Thread-1/FATAL] [net.minecraftforge.common.ForgeConfig/CORE]: Forge config just got changed on the file system! [07Mar2019 19:25:38.083] [Server thread/ERROR] [net.minecraftforge.fml.FMLWorldPersistenceHook/WP]: This world was saved with mod minecraft which appears to be missing, things may not work well [07Mar2019 19:25:38.095] [Server thread/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: Injecting existing registry data into this SERVER instance [07Mar2019 19:25:38.319] [Server thread/INFO] [net.minecraft.resources.SimpleReloadableResourceManager/]: Reloading ResourceManager: Default, main, forge-1.13.2-25.0.69_mapped_snapshot_20180921-1.13.jar [07Mar2019 19:25:39.090] [Server thread/INFO] [net.minecraft.item.crafting.RecipeManager/]: Loaded 524 recipes [07Mar2019 19:25:40.131] [Server thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 571 advancements [07Mar2019 19:25:40.491] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld [07Mar2019 19:25:41.179] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 4% [07Mar2019 19:25:41.220] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 8% [07Mar2019 19:25:41.326] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 12% [07Mar2019 19:25:41.362] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 16% [07Mar2019 19:25:41.392] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 20% [07Mar2019 19:25:41.415] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 24% [07Mar2019 19:25:41.705] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 28% [07Mar2019 19:25:41.731] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 32% [07Mar2019 19:25:41.762] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 36% [07Mar2019 19:25:41.788] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 40% [07Mar2019 19:25:41.816] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 44% [07Mar2019 19:25:41.840] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 48% [07Mar2019 19:25:41.862] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 52% [07Mar2019 19:25:41.885] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 56% [07Mar2019 19:25:41.909] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 60% [07Mar2019 19:25:41.932] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 64% [07Mar2019 19:25:41.958] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 68% [07Mar2019 19:25:41.983] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 72% [07Mar2019 19:25:42.006] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 76% [07Mar2019 19:25:42.221] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 80% [07Mar2019 19:25:42.255] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 84% [07Mar2019 19:25:42.274] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 88% [07Mar2019 19:25:42.293] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 92% [07Mar2019 19:25:42.316] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 96% [07Mar2019 19:25:42.361] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing spawn area: 100% [07Mar2019 19:25:42.361] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Time elapsed: 1870 ms [07Mar2019 19:25:42.695] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer/]: Changing view distance to 12, from 10 [07Mar2019 19:25:46.606] [Netty Local Client IO #0/INFO] [net.minecraftforge.fml.network.NetworkHooks/]: Connected to a modded server. [07Mar2019 19:25:46.754] [Server thread/INFO] [net.minecraft.server.management.PlayerList/]: Player949[local:E:eef5dc98] logged in with entity id 209 at (151.25323318901633, 71.0, -321.15841136764294) [07Mar2019 19:25:46.783] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Player949 joined the game [07Mar2019 19:25:47.527] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Player949 has made the advancement [Isn't It Iron Pick] [07Mar2019 19:25:48.966] [Server thread/WARN] [net.minecraft.server.MinecraftServer/]: Can't keep up! Is the server overloaded? Running 2165ms or 43 ticks behind [07Mar2019 19:25:48.966] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer/]: Saving and pausing game... [07Mar2019 19:25:49.032] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'New World'/minecraft:overworld [07Mar2019 19:25:49.848] [Client thread/INFO] [net.minecraft.client.gui.GuiNewChat/]: [CHAT] Player949 has made the advancement [Isn't It Iron Pick] [07Mar2019 19:25:49.877] [Client thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 10 advancements [07Mar2019 19:25:50.191] [pool-5-thread-1/WARN] [com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService/]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@4563ec4a[id=216c785c-0df1-3594-b574-a2156a14723d,name=Player949,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:79) ~[authlib-1.5.25.jar:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:180) ~[authlib-1.5.25.jar:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:60) ~[authlib-1.5.25.jar:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:57) ~[authlib-1.5.25.jar:?] at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3716) ~[guava-21.0.jar:?] at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2424) ~[guava-21.0.jar:?] at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2298) ~[guava-21.0.jar:?] at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2211) ~[guava-21.0.jar:?] at com.google.common.cache.LocalCache.get(LocalCache.java:4154) ~[guava-21.0.jar:?] at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:4158) ~[guava-21.0.jar:?] at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:5147) ~[guava-21.0.jar:?] at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:5153) ~[guava-21.0.jar:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:170) ~[authlib-1.5.25.jar:?] at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:1765) ~[?:?] at net.minecraft.client.resources.SkinManager.func_210275_a(SourceFile:111) ~[?:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:1.8.0_192] at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_192] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) [?:1.8.0_192] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) [?:1.8.0_192] at java.lang.Thread.run(Thread.java:748) [?:1.8.0_192] [07Mar2019 19:25:55.202] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer/]: Saving and pausing game... [07Mar2019 19:25:55.217] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'New World'/minecraft:overworld [07Mar2019 19:26:00.729] [Client thread/INFO] [net.minecraft.block.Block/]: test1 [07Mar2019 19:26:00.751] [Server thread/INFO] [net.minecraft.block.Block/]: test1 [07Mar2019 19:26:00.751] [Server thread/INFO] [net.minecraft.block.Block/]: test2 [07Mar2019 19:26:04.280] [Client thread/INFO] [net.minecraft.block.Block/]: test1 [07Mar2019 19:26:04.301] [Server thread/INFO] [net.minecraft.block.Block/]: test1 [07Mar2019 19:26:04.301] [Server thread/INFO] [net.minecraft.block.Block/]: test2 [07Mar2019 19:26:09.101] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer/]: Saving and pausing game... [07Mar2019 19:26:09.112] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'New World'/minecraft:overworld [07Mar2019 19:26:10.071] [Server thread/INFO] [net.minecraft.network.NetHandlerPlayServer/]: Player949 lost connection: Disconnected [07Mar2019 19:26:10.072] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Player949 left the game [07Mar2019 19:26:10.086] [Server thread/INFO] [net.minecraft.network.NetHandlerPlayServer/]: Stopping singleplayer server as player logged out [07Mar2019 19:26:10.102] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server [07Mar2019 19:26:10.102] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players [07Mar2019 19:26:10.102] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds [07Mar2019 19:26:10.102] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'New World'/minecraft:overworld [07Mar2019 19:26:12.534] [Client thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! [07Mar2019 19:26:13.058] [Client thread/INFO] [net.minecraft.client.audio.SoundManager/]: SoundSystem shutting down... [07Mar2019 19:26:13.273] [Client thread/INFO] [net.minecraft.client.audio.SoundManager/]: SoundSystem Author: Paul Lamb, www.paulscode.com [07Mar2019 19:26:13.325] [Thread-4/FATAL] [net.minecraftforge.fml.packs.ModFileResourcePack/]: Failed to clean up tempdir C:\Users\joris\AppData\Local\Temp\modpacktmp6793742816505190396 Link to GitHub for all code: https://github.com/ScrambledFox/MoreFoodRevived
×
×
  • Create New...

Important Information

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