Advertisement
Guest User

Untitled

a guest
Aug 19th, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 21.21 KB | None | 0 0
  1. package hasun.extrapotions.main;
  2.  
  3. import cpw.mods.fml.common.registry.GameRegistry;
  4. import hasun.extrapotions.common.items.ItemPotionParticleRemover;
  5. import net.minecraft.init.Items;
  6. import net.minecraft.inventory.InventoryCrafting;
  7. import net.minecraft.item.Item;
  8. import net.minecraft.item.ItemStack;
  9. import net.minecraft.item.crafting.IRecipe;
  10. import net.minecraft.world.World;
  11.  
  12. public class ItemRegister {
  13.     public static Item itemPotionParticleRemover;
  14.  
  15.     static void register() {
  16.         itemPotionParticleRemover = new ItemPotionParticleRemover()
  17.                 .setUnlocalizedName(Constants.MODID + ".particleremover").setCreativeTab(ExtraPotionsBase.creativeTab);
  18.         GameRegistry.registerItem(itemPotionParticleRemover, Constants.MODID + ".particleremover");
  19.         registerRecipes();
  20.     }
  21.  
  22.     private static void registerRecipes() {
  23.         //particle cleaner
  24.         GameRegistry.addRecipe(new IRecipe() {
  25.             @Override
  26.             public boolean matches(InventoryCrafting craftingwindow, World world) {
  27.                 ItemStack diamond = new ItemStack(Items.diamond), gold = new ItemStack(Items.gold_ingot), potion = new ItemStack(Items.potionitem,1,8270);
  28.                 ItemStack recipes[] = {gold,diamond,gold,diamond,potion,diamond,gold,diamond,gold};
  29.                 for(int i=0;i<9;i++){
  30.                     if(!craftingwindow.getStackInSlot(i+1).equals(recipes[i])) return false;
  31.                 }
  32.                 return true;
  33.             }
  34.  
  35.             @Override
  36.             public int getRecipeSize() {
  37.                 return 9;
  38.             }
  39.  
  40.             @Override
  41.             public ItemStack getRecipeOutput() {
  42.                 return new ItemStack(itemPotionParticleRemover);
  43.             }
  44.  
  45.             @Override
  46.             public ItemStack getCraftingResult(InventoryCrafting craftingwindow) {
  47.                 return new ItemStack(itemPotionParticleRemover);
  48.             }
  49.         });
  50.     }
  51. }
  52.  
  53. crash when i enter the game
  54.  
  55. HOTSWAP AGENT: 19:53:21.288 INFO (org.hotswap.agent.HotswapAgent) - Loading Hotswap agent {0.2} - unlimited runtime class redefinition.
  56. HOTSWAP AGENT: 19:53:21.542 INFO (org.hotswap.agent.config.PluginRegistry) - Plugin 'org.hotswap.agent.plugin.hotswapper.HotswapperPlugin' initialized in ClassLoader 'sun.misc.Launcher$AppClassLoader@4d905742'.
  57. HOTSWAP AGENT: 19:53:21.583 INFO (org.hotswap.agent.config.PluginRegistry) - Discovered plugins: [Hotswapper, AnonymousClassPatch, WatchResources, Hibernate, Spring, Jersey2, Jetty, Tomcat, ZK, Logback, JSF, Seam, ELResolver, OsgiEquinox]
  58. [19:53:22] [main/INFO] [GradleStart]: Extra: []
  59. [19:53:22] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --accessToken, {REDACTED}, --assetIndex, 1.7.10, --assetsDir, C:/Users/하선/.gradle/caches/minecraft/assets, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
  60. [19:53:22] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
  61. [19:53:22] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
  62. [19:53:22] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
  63. [19:53:22] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
  64. [19:53:22] [main/INFO] [FML]: Forge Mod Loader version 7.99.16.1448 for Minecraft 1.7.10 loading
  65. [19:53:22] [main/INFO] [FML]: Java is Dynamic Code Evolution 64-Bit Server VM, version 1.7.0_79, running on Windows 8.1:amd64:6.3, installed at F:\jvm\x64\jdk1.7.0_79\jre
  66. [19:53:22] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
  67. [19:53:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
  68. [19:53:22] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin
  69. [19:53:22] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
  70. [19:53:22] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
  71. [19:53:22] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
  72. [19:53:22] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
  73. [19:53:22] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
  74. [19:53:22] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
  75. [19:53:22] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
  76. [19:53:22] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
  77. (-1 / -1) (org/hotswap/agent/plugin/jvm/AnonymousClassInfos$AnonymousClassInfoMatcher/org/hotswap/agent/plugin/jvm/AnonymousClassInfos$AnonymousClassInfoMatcher)
  78. {instance class}
  79.  - klass: {other class}
  80. {instance class}
  81.  - klass: {other class}
  82. [19:53:23] [Thread-6/INFO] [STDOUT]: [org.hotswap.agent.logging.AgentLoggerHandler:printMessage:33]: HOTSWAP AGENT: 19:53:23.617 INFO (org.hotswap.agent.config.PluginRegistry) - Plugin 'org.hotswap.agent.plugin.hotswapper.HotswapperPlugin' initialized in ClassLoader 'net.minecraft.launchwrapper.LaunchClassLoader@2e644784'.
  83. [19:53:27] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
  84. [19:53:27] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
  85. [19:53:27] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
  86. [19:53:28] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
  87. [19:53:28] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
  88. [19:53:28] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
  89. [19:53:28] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
  90. [19:53:30] [main/INFO]: Setting user: Player937
  91. [19:53:32] [Client thread/INFO]: LWJGL Version: 2.9.1
  92. [19:53:33] [Client thread/INFO] [STDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ----
  93. // Don't do that.
  94.  
  95. Time: 15. 8. 19 오후 7:53
  96. Description: Loading screen debug info
  97.  
  98. This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR
  99.  
  100.  
  101. A detailed walkthrough of the error, its code path and all known details is as follows:
  102. ---------------------------------------------------------------------------------------
  103.  
  104. -- System Details --
  105. Details:
  106.     Minecraft Version: 1.7.10
  107.     Operating System: Windows 8.1 (amd64) version 6.3
  108.     Java Version: 1.7.0_79, Oracle Corporation
  109.     Java VM Version: Dynamic Code Evolution 64-Bit Server VM (mixed mode), Oracle Corporation
  110.     Memory: 81099560 bytes (77 MB) / 129040384 bytes (123 MB) up to 2063794176 bytes (1968 MB)
  111.     JVM Flags: 0 total;
  112.     AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
  113.     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
  114.     FML:
  115.     GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 353.62' Renderer: 'GeForce GTX 660/PCIe/SSE2'
  116. [19:53:33] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
  117. [19:53:33] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1448 Initialized
  118. [19:53:33] [Client thread/INFO] [FML]: Replaced 183 ore recipies
  119. [19:53:34] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
  120. [19:53:34] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
  121. [19:53:34] [Client thread/INFO] [FML]: Searching F:\java_development\MinecraftDev\ExtraPotions-1.7.10\mods for mods
  122. [19:53:36] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
  123. [19:53:37] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, extrapotions] at CLIENT
  124. [19:53:37] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, extrapotions] at SERVER
  125. [19:53:37] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Extra potions
  126. [19:53:37] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
  127. [19:53:37] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
  128. [19:53:37] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
  129. [19:53:37] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
  130. [19:53:38] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
  131. [19:53:38] [Client thread/INFO] [FML]: Applying holder lookups
  132. [19:53:38] [Client thread/INFO] [FML]: Holder lookups applied
  133. [19:53:38] [Client thread/INFO] [FML]: Injecting itemstacks
  134. [19:53:38] [Client thread/INFO] [FML]: Itemstack injection complete
  135. [19:53:38] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
  136. [19:53:38] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
  137. [19:53:38] [Thread-13/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
  138. [19:53:38] [Thread-13/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
  139. [19:53:38] [Thread-13/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
  140. [19:53:38] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
  141. [19:53:38] [Sound Library Loader/INFO]: Sound engine started
  142. (-1 / -1) (org/hotswap/agent/plugin/jvm/AnonymousClassInfos$AnonymousClassInfoMatcher/org/hotswap/agent/plugin/jvm/AnonymousClassInfos$AnonymousClassInfoMatcher)
  143. {instance class}
  144. - klass: {other class}
  145. {instance class}
  146. - klass: {other class}
  147. [19:53:39] [Thread-15/INFO] [STDOUT]: [org.hotswap.agent.logging.AgentLoggerHandler:printMessage:33]: HOTSWAP AGENT: 19:53:39.070 INFO (org.hotswap.agent.config.PluginRegistry) - Plugin 'org.hotswap.agent.plugin.hotswapper.HotswapperPlugin' initialized in ClassLoader 'cpw.mods.fml.common.eventhandler.ASMEventHandler$ASMClassLoader@70073925'.
  148. [19:53:44] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
  149. [19:53:44] [Client thread/INFO]: Created: 256x256 textures/items-atlas
  150. [19:53:44] [Client thread/INFO] [FML]: Injecting itemstacks
  151. [19:53:44] [Client thread/INFO] [FML]: Itemstack injection complete
  152. [19:53:44] [Client thread/INFO] [FML]:   Unknown recipe class! hasun.extrapotions.main.ItemRegister$1 Modder please refer to net.minecraftforge.oredict.RecipeSorter
  153. [19:53:44] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
  154. [19:53:44] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Extra potions
  155. [19:53:45] [Client thread/INFO]: Created: 256x256 textures/items-atlas
  156. [19:53:45] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
  157. [19:53:45] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
  158. [19:53:45] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
  159. [19:53:45] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
  160. [19:53:45] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
  161. [19:53:45] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
  162. [19:53:45] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
  163. [19:53:45] [Thread-16/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
  164. [19:53:45] [Thread-16/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
  165. [19:53:45] [Thread-16/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
  166. [19:53:46] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:
  167. [19:53:46] [Sound Library Loader/INFO]: Sound engine started
  168. [19:53:51] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10
  169. [19:53:51] [Server thread/INFO]: Generating keypair
  170. [19:53:51] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
  171. [19:53:51] [Server thread/INFO] [FML]: Applying holder lookups
  172. [19:53:51] [Server thread/INFO] [FML]: Holder lookups applied
  173. [19:53:52] [Server thread/INFO] [FML]: Loading dimension 0 (Test) (net.minecraft.server.integrated.IntegratedServer@ac24b13)
  174. [19:53:52] [Server thread/INFO] [FML]: Loading dimension 1 (Test) (net.minecraft.server.integrated.IntegratedServer@ac24b13)
  175. [19:53:52] [Server thread/INFO] [FML]: Loading dimension -1 (Test) (net.minecraft.server.integrated.IntegratedServer@ac24b13)
  176. [19:53:52] [Server thread/INFO]: Preparing start region for level 0
  177. [19:53:53] [Server thread/INFO]: Preparing spawn area: 69%
  178. [19:53:53] [Server thread/INFO]: Changing view distance to 12, from 10
  179. [19:53:54] [Server thread/ERROR]: Encountered an unexpected exception
  180. net.minecraft.util.ReportedException: Ticking memory connection
  181.     at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:198) ~[NetworkSystem.class:?]
  182.     at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:726) ~[MinecraftServer.class:?]
  183.     at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) ~[MinecraftServer.class:?]
  184.     at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) ~[IntegratedServer.class:?]
  185.     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [MinecraftServer.class:?]
  186.     at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [MinecraftServer$2.class:?]
  187. Caused by: java.lang.NullPointerException
  188.     at hasun.extrapotions.main.ItemRegister$1.matches(ItemRegister.java:30) ~[ItemRegister$1.class:?]
  189.     at net.minecraft.item.crafting.CraftingManager.findMatchingRecipe(CraftingManager.java:329) ~[CraftingManager.class:?]
  190.     at net.minecraft.inventory.ContainerPlayer.onCraftMatrixChanged(ContainerPlayer.java:95) ~[ContainerPlayer.class:?]
  191.     at net.minecraft.inventory.ContainerPlayer.<init>(ContainerPlayer.java:87) ~[ContainerPlayer.class:?]
  192.     at net.minecraft.entity.player.EntityPlayer.<init>(EntityPlayer.java:168) ~[EntityPlayer.class:?]
  193.     at net.minecraft.entity.player.EntityPlayerMP.<init>(EntityPlayerMP.java:158) ~[EntityPlayerMP.class:?]
  194.     at net.minecraft.server.management.ServerConfigurationManager.createPlayerForUser(ServerConfigurationManager.java:443) ~[ServerConfigurationManager.class:?]
  195.     at net.minecraft.server.network.NetHandlerLoginServer.func_147326_c(NetHandlerLoginServer.java:105) ~[NetHandlerLoginServer.class:?]
  196.     at net.minecraft.server.network.NetHandlerLoginServer.onNetworkTick(NetHandlerLoginServer.java:64) ~[NetHandlerLoginServer.class:?]
  197.     at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:244) ~[NetworkManager.class:?]
  198.     at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182) ~[NetworkSystem.class:?]
  199.     ... 5 more
  200. [19:53:54] [Server thread/ERROR]: This crash report has been saved to: F:\java_development\MinecraftDev\ExtraPotions-1.7.10\.\crash-reports\crash-2015-08-19_19.53.54-server.txt
  201. [19:53:54] [Server thread/INFO]: Stopping server
  202. [19:53:54] [Server thread/INFO]: Saving players
  203. [19:53:54] [Server thread/INFO]: Saving worlds
  204. [19:53:54] [Server thread/INFO]: Saving chunks for level 'Test'/Overworld
  205. [19:53:54] [Client thread/INFO] [STDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ----
  206. // I'm sorry, Dave.
  207.  
  208. Time: 15. 8. 19 오후 7:53
  209. Description: Ticking memory connection
  210.  
  211. java.lang.NullPointerException: Ticking memory connection
  212.     at hasun.extrapotions.main.ItemRegister$1.matches(ItemRegister.java:30)
  213.     at net.minecraft.item.crafting.CraftingManager.findMatchingRecipe(CraftingManager.java:329)
  214.     at net.minecraft.inventory.ContainerPlayer.onCraftMatrixChanged(ContainerPlayer.java:95)
  215.     at net.minecraft.inventory.ContainerPlayer.<init>(ContainerPlayer.java:87)
  216.     at net.minecraft.entity.player.EntityPlayer.<init>(EntityPlayer.java:168)
  217.     at net.minecraft.entity.player.EntityPlayerMP.<init>(EntityPlayerMP.java:158)
  218.     at net.minecraft.server.management.ServerConfigurationManager.createPlayerForUser(ServerConfigurationManager.java:443)
  219.     at net.minecraft.server.network.NetHandlerLoginServer.func_147326_c(NetHandlerLoginServer.java:105)
  220.     at net.minecraft.server.network.NetHandlerLoginServer.onNetworkTick(NetHandlerLoginServer.java:64)
  221.     at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:244)
  222.     at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182)
  223.     at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:726)
  224.     at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
  225.     at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
  226.     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
  227.     at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
  228.  
  229.  
  230. A detailed walkthrough of the error, its code path and all known details is as follows:
  231. ---------------------------------------------------------------------------------------
  232.  
  233. -- Head --
  234. Stacktrace:
  235.     at hasun.extrapotions.main.ItemRegister$1.matches(ItemRegister.java:30)
  236.     at net.minecraft.item.crafting.CraftingManager.findMatchingRecipe(CraftingManager.java:329)
  237.     at net.minecraft.inventory.ContainerPlayer.onCraftMatrixChanged(ContainerPlayer.java:95)
  238.     at net.minecraft.inventory.ContainerPlayer.<init>(ContainerPlayer.java:87)
  239.     at net.minecraft.entity.player.EntityPlayer.<init>(EntityPlayer.java:168)
  240.     at net.minecraft.entity.player.EntityPlayerMP.<init>(EntityPlayerMP.java:158)
  241.     at net.minecraft.server.management.ServerConfigurationManager.createPlayerForUser(ServerConfigurationManager.java:443)
  242.     at net.minecraft.server.network.NetHandlerLoginServer.func_147326_c(NetHandlerLoginServer.java:105)
  243.     at net.minecraft.server.network.NetHandlerLoginServer.onNetworkTick(NetHandlerLoginServer.java:64)
  244.     at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:244)
  245.  
  246. -- Ticking connection --
  247. Details:
  248.     Connection: net.minecraft.network.NetworkManager@1c07c863
  249. Stacktrace:
  250.     at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182)
  251.     at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:726)
  252.     at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614)
  253.     at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)
  254.     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485)
  255.     at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752)
  256.  
  257. -- System Details --
  258. Details:
  259.     Minecraft Version: 1.7.10
  260.     Operating System: Windows 8.1 (amd64) version 6.3
  261.     Java Version: 1.7.0_79, Oracle Corporation
  262.     Java VM Version: Dynamic Code Evolution 64-Bit Server VM (mixed mode), Oracle Corporation
  263.     Memory: 57049272 bytes (54 MB) / 181252096 bytes (172 MB) up to 2063794176 bytes (1968 MB)
  264.     JVM Flags: 0 total;
  265.     AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
  266.     IntCache: cache: 11, tcache: 0, allocated: 13, tallocated: 95
  267.     FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1448 4 mods loaded, 4 mods active
  268.     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
  269.     UCHIJAAAA   mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
  270.     UCHIJAAAA   FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar)
  271.     UCHIJAAAA   Forge{10.13.4.1448} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar)
  272.     UCHIJAAAA   extrapotions{0.1-1710} [Extra potions] (bin)
  273.     GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.
  274.     Profiler Position: N/A (disabled)
  275.     Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
  276.     Player Count: 0 / 8; []
  277.     Type: Integrated Server (map_client.txt)
  278.     Is Modded: Definitely; Client brand changed to 'fml,forge'
  279. [19:53:54] [Client thread/INFO] [STDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:393]: #@!@# Game crashed! Crash report saved to: #@!@# .\crash-reports\crash-2015-08-19_19.53.54-server.txt
  280. [19:53:54] [Client thread/INFO] [FML]: Waiting for the server to terminate/save.
  281. [19:53:54] [Server thread/INFO]: Saving chunks for level 'Test'/Nether
  282. [19:53:54] [Server thread/INFO]: Saving chunks for level 'Test'/The End
  283. [19:53:55] [Server thread/INFO] [FML]: Unloading dimension 0
  284. [19:53:55] [Server thread/INFO] [FML]: Unloading dimension -1
  285. [19:53:55] [Server thread/INFO] [FML]: Unloading dimension 1
  286. [19:53:55] [Server thread/INFO] [FML]: Applying holder lookups
  287. [19:53:55] [Server thread/INFO] [FML]: Holder lookups applied
  288. [19:53:55] [Server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.
  289. [19:53:55] [Client thread/INFO] [FML]: Server terminated.
  290. AL lib: (EE) alc_cleanup: 1 device not closed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement