Мод не грузит текстуры !

Версия Minecraft
1.12.2
Мод не грузит текстуры ! хелб
package com.kass.Jsac.main;

import com.kass.Jsac.proxy.CommonProxy;
import com.kass.Jsac.reference.Reference;

import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.Mod.Instance;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.SidedProxy;

@Mod(modid = Reference.MODID, name = Reference.NAME, version = Reference.VERSION,
acceptedMinecraftVersions = Reference.ACCEPTEDMINECRAFTVERSION)
public class Main
{

@Instance
public static Main instance;

@SidedProxy(clientSide = Reference.CLIENT, serverSide = Reference.COMMON)
public static CommonProxy proxy;

@EventHandler
public static void preInit(FMLPreInitializationEvent event) {};

@EventHandler
public static void Init(FMLInitializationEvent event) {};

@EventHandler
public static void postInit(FMLPostInitializationEvent event) {};
}
package com.kass.Jsac.init;

import java.util.ArrayList;
import java.util.List;

import com.kass.Jsac.items.ItemTestIngo;

import net.minecraft.item.Item;

public class InitItems
{

public static final List<Item> ITEMS = new ArrayList<Item>();

//Items
public static final Item TEST_INGO = new ItemTestIngo("test_ingo");
}
package com.kass.Jsac.items;

import com.kass.Jsac.init.InitItems;
import com.kass.Jsac.main.Main;
import com.kass.Jsac.utils.interfaces.IHasModel;

import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;

public class ItemTestIngo extends Item implements IHasModel
{
public ItemTestIngo(String name)
{
setRegistryName(name);
setUnlocalizedName(name);
setCreativeTab(CreativeTabs.MATERIALS);
setMaxStackSize(240);


InitItems.ITEMS.add(this);
}

@Override
public void registerModels()
{
Main.proxy.registerItemRender(this, 0, "inventory");
}
}
package com.kass.Jsac.proxy;

import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.item.Item;
import net.minecraftforge.client.model.ModelLoader;

public class ClientProxy extends CommonProxy
{

public void registerItemRender(Item item, int meta, String id)
{
ModelLoader.setCustomModelResourceLocation(item, meta, new ModelResourceLocation(item.getRegistryName(), id));
}

}
package com.kass.Jsac.proxy;

import net.minecraft.item.Item;

public class CommonProxy
{
public void registerItemRender(Item item, int meta, String id) {}
}
package com.kass.Jsac.reference;

public class Reference
{

public static final String MODID = "jsac";
public static final String NAME = "JSacs";
public static final String VERSION = "0.1";
public static final String ACCEPTEDMINECRAFTVERSION = "1.12.2";
public static final String CLIENT = "com.kass.Jsac.proxy.ClientProxy";
public static final String COMMON = "com.kass.Jsac.proxy.CommonProxy";

}
package com.kass.Jsac.utils.handler;

import com.kass.Jsac.init.InitItems;
import com.kass.Jsac.utils.interfaces.IHasModel;

import net.minecraft.item.Item;
import net.minecraftforge.client.event.ModelRegistryEvent;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.fml.common.Mod.EventBusSubscriber;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

@EventBusSubscriber
public class RegisterHandler
{

@SubscribeEvent
public static void onItemRegister(RegistryEvent.Register<Item> event)
{
event.getRegistry().registerAll(InitItems.ITEMS.toArray(new Item[0]));
}

@SubscribeEvent
public static void onModelRegister(ModelRegistryEvent event)
{
for(Item item : InitItems.ITEMS)
{
if(item instanceof IHasModel)
{
((IHasModel)item).registerModels();
}
}
}
}
package com.kass.Jsac.utils.interfaces;

public interface IHasModel
{

public void registerModels();


}
ещё есть это
{
"parent": "item/generated",
"textures": {
"layer0": "Jsac:items/test_ingo"
}
}
И скрин рабочей среды на всякий
1578146681756.png
 
Краш-лог
2020-01-04 16:57:32,519 main ERROR Unable to move file C:\Users\Kirill\Desktop\modding\run\logs\latest.log to C:\Users\Kirill\Desktop\modding\run\logs\2020-01-04-7.log: java.nio.file.FileSystemException C:\Users\Kirill\Desktop\modding\run\logs\latest.log -> C:\Users\Kirill\Desktop\modding\run\logs\2020-01-04-7.log: Процесс не может получить доступ к файлу, так как этот файл занят другим процессом.

2020-01-04 16:57:32,531 main ERROR Unable to delete file C:\Users\Kirill\Desktop\modding\run\logs\latest.log: java.nio.file.FileSystemException C:\Users\Kirill\Desktop\modding\run\logs\latest.log: Процесс не может получить доступ к файлу, так как этот файл занят другим процессом.

2020-01-04 16:57:32,547 main ERROR Unable to move file C:\Users\Kirill\Desktop\modding\run\logs\debug.log to C:\Users\Kirill\Desktop\modding\run\logs\debug-1.log: java.nio.file.FileSystemException C:\Users\Kirill\Desktop\modding\run\logs\debug.log -> C:\Users\Kirill\Desktop\modding\run\logs\debug-1.log: Процесс не может получить доступ к файлу, так как этот файл занят другим процессом.

2020-01-04 16:57:32,549 main ERROR Unable to delete file C:\Users\Kirill\Desktop\modding\run\logs\debug.log: java.nio.file.FileSystemException C:\Users\Kirill\Desktop\modding\run\logs\debug.log: Процесс не может получить доступ к файлу, так как этот файл занят другим процессом.

[16:57:32] [main/INFO] [GradleStart]: Extra: []
[16:57:32] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Kirill/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[16:57:32] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[16:57:32] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[16:57:32] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[16:57:32] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[16:57:32] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2768 for Minecraft 1.12.2 loading
[16:57:32] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_231, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_231\jre
[16:57:32] [main/ERROR] [FML]: Apache Maven library folder was not in the format expected. Using default libraries directory.
[16:57:32] [main/ERROR] [FML]: Full: C:\Users\Kirill\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar
[16:57:32] [main/ERROR] [FML]: Trimmed: c:/users/kirill/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/
[16:57:32] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[16:57:32] [main/INFO] [FML]: Detected deobfuscated environment, loading log configs for colored console logs.
2020-01-04 16:57:34,560 main WARN Disabling terminal, you're running in an unsupported environment.
[16:57:34] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin
[16:57:34] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin
[16:57:34] [main/INFO] [FML]: Searching C:\Users\Kirill\Desktop\modding\run\.\mods for mods
[16:57:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[16:57:34] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[16:57:34] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[16:57:34] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:57:34] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[16:57:34] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[16:57:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:57:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:57:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[16:57:37] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[16:57:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[16:57:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[16:57:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[16:57:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[16:57:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[16:57:37] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[16:57:39] [main/INFO] [minecraft/Minecraft]: Setting user: Player585
[16:57:45] [main/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer:
[16:57:45] [main/INFO] [minecraft/Minecraft]: LWJGL Version: 2.9.4
[16:57:46] [main/INFO] [FML]: -- System Details --
Details:
Minecraft Version: 1.12.2
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_231, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 181629008 bytes (173 MB) / 375914496 bytes (358 MB) up to 1908932608 bytes (1820 MB)
JVM Flags: 0 total;
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML:
Loaded coremods (and transformers):
GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.6.13586 Compatibility Profile Context 19.12.3 26.20.15003.5016' Renderer: 'AMD Radeon HD 7700 Series'
[16:57:46] [main/INFO] [FML]: MinecraftForge v14.23.5.2768 Initialized
[16:57:46] [main/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
[16:57:46] [main/INFO] [FML]: Replaced 1036 ore ingredients
[16:57:46] [main/INFO] [FML]: Searching C:\Users\Kirill\Desktop\modding\run\.\mods for mods
[16:57:48] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 174197300 nanos
[16:57:48] [main/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[16:57:49] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, jsac] at CLIENT
[16:57:49] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, jsac] at SERVER
[16:57:50] [main/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:JSacs
[16:57:50] [main/INFO] [FML]: Processing ObjectHolder annotations
[16:57:50] [main/INFO] [FML]: Found 1168 ObjectHolder annotations
[16:57:50] [main/INFO] [FML]: Identifying ItemStackHolder annotations
[16:57:50] [main/INFO] [FML]: Found 0 ItemStackHolder annotations
[16:57:50] [main/INFO] [FML]: Configured a dormant chunk cache size of 0
[16:57:50] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[16:57:50] [main/INFO] [FML]: Applying holder lookups
[16:57:50] [main/INFO] [FML]: Holder lookups applied
[16:57:50] [main/INFO] [FML]: Applying holder lookups
[16:57:50] [main/INFO] [FML]: Holder lookups applied
[16:57:50] [main/INFO] [FML]: Applying holder lookups
[16:57:50] [main/INFO] [FML]: Holder lookups applied
[16:57:50] [main/INFO] [FML]: Applying holder lookups
[16:57:50] [main/INFO] [FML]: Holder lookups applied
[16:57:50] [main/INFO] [FML]: Injecting itemstacks
[16:57:50] [main/INFO] [FML]: Itemstack injection complete
[16:57:51] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: UP_TO_DATE Target: null
[16:57:53] [Sound Library Loader/INFO] [minecraft/SoundManager]: Starting up SoundSystem...
[16:57:53] [Thread-5/INFO] [minecraft/SoundManager]: Initializing LWJGL OpenAL
[16:57:53] [Thread-5/INFO] [minecraft/SoundManager]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
[16:57:53] [Thread-5/INFO] [minecraft/SoundManager]: OpenAL initialized.
[16:57:54] [Sound Library Loader/INFO] [minecraft/SoundManager]: Sound engine started
[16:57:59] [main/INFO] [FML]: Max texture size: 8192
[16:58:00] [main/INFO] [minecraft/TextureMap]: Created: 512x512 textures-atlas
[16:58:01] [main/ERROR] [FML]: Exception loading model for variant jsac:test_ingo#inventory for item "jsac:test_ingo", normal location exception:
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model jsac:item/test_ingo with loader VanillaLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:302) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:151) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_231]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_231]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_231]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_231]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_231]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_231]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: java.io.FileNotFoundException: jsac:models/item/test_ingo.json
at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:69) ~[SimpleReloadableResourceManager.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.access$1400(ModelLoader.java:115) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:861) ~[ModelLoader$VanillaLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?]
... 20 more
[16:58:01] [main/ERROR] [FML]: Exception loading model for variant jsac:test_ingo#inventory for item "jsac:test_ingo", blockstate location exception:
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model jsac:test_ingo#inventory with loader VariantLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:296) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?]
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:151) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_231]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_231]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_231]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_231]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_231]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_231]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?]
at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1175) ~[ModelLoader$VariantLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?]
... 20 more
[16:58:02] [main/INFO] [FML]: Applying holder lookups
[16:58:02] [main/INFO] [FML]: Holder lookups applied
[16:58:02] [main/INFO] [FML]: Injecting itemstacks
[16:58:02] [main/INFO] [FML]: Itemstack injection complete
[16:58:02] [main/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods
[16:58:02] [main/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer:
[16:58:02] [main/INFO] [mojang/NarratorWindows]: Narrator library for x64 successfully loaded
[16:58:04] [Realms Notification Availability checker #1/INFO] [mojang/RealmsClient]: Could not authorize you against Realms server: Invalid session id
[16:58:18] [Server thread/INFO] [minecraft/IntegratedServer]: Starting integrated minecraft server version 1.12.2
[16:58:18] [Server thread/INFO] [minecraft/IntegratedServer]: Generating keypair
[16:58:18] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance
[16:58:18] [Server thread/INFO] [FML]: Registry Item: Found a missing id from the world jsac:test_indigo
[16:58:18] [Server thread/ERROR] [FML]: Unidentified mapping from registry minecraft:items
[16:58:18] [Server thread/ERROR] [FML]: jsac:test_indigo: 4096
[16:58:23] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server
[16:58:23] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players
[16:58:23] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds
[16:58:23] [Server thread/INFO] [FML]: Applying holder lookups
[16:58:23] [Server thread/INFO] [FML]: Holder lookups applied
[16:58:23] [Server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STARTING and forced into state SERVER_STOPPED. Errors may have been discarded.
[16:58:29] [main/INFO] [minecraft/Minecraft]: Stopping!
[16:58:29] [main/INFO] [minecraft/SoundManager]: SoundSystem shutting down...
[16:58:29] [main/WARN] [minecraft/SoundManager]: Author: Paul Lamb, www.paulscode.com
Краш-лог:
2020-01-04 16:57:32,519 main ERROR Unable to move file C:\Users\Kirill\Desktop\modding\run\logs\latest.log to C:\Users\Kirill\Desktop\modding\run\logs\2020-01-04-7.log: java.nio.file.FileSystemException C:\Users\Kirill\Desktop\modding\run\logs\latest.log -> C:\Users\Kirill\Desktop\modding\run\logs\2020-01-04-7.log: Процесс не может получить доступ к файлу, так как этот файл занят другим процессом.

2020-01-04 16:57:32,531 main ERROR Unable to delete file C:\Users\Kirill\Desktop\modding\run\logs\latest.log: java.nio.file.FileSystemException C:\Users\Kirill\Desktop\modding\run\logs\latest.log: Процесс не может получить доступ к файлу, так как этот файл занят другим процессом.

2020-01-04 16:57:32,547 main ERROR Unable to move file C:\Users\Kirill\Desktop\modding\run\logs\debug.log to C:\Users\Kirill\Desktop\modding\run\logs\debug-1.log: java.nio.file.FileSystemException C:\Users\Kirill\Desktop\modding\run\logs\debug.log -> C:\Users\Kirill\Desktop\modding\run\logs\debug-1.log: Процесс не может получить доступ к файлу, так как этот файл занят другим процессом.

2020-01-04 16:57:32,549 main ERROR Unable to delete file C:\Users\Kirill\Desktop\modding\run\logs\debug.log: java.nio.file.FileSystemException C:\Users\Kirill\Desktop\modding\run\logs\debug.log: Процесс не может получить доступ к файлу, так как этот файл занят другим процессом.

[16:57:32] [main/INFO] [GradleStart]: Extra: []
[16:57:32] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Kirill/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[16:57:32] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[16:57:32] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[16:57:32] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[16:57:32] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[16:57:32] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2768 for Minecraft 1.12.2 loading
[16:57:32] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_231, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_231\jre
[16:57:32] [main/ERROR] [FML]: Apache Maven library folder was not in the format expected. Using default libraries directory.
[16:57:32] [main/ERROR] [FML]: Full: C:\Users\Kirill\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar
[16:57:32] [main/ERROR] [FML]: Trimmed: c:/users/kirill/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/
[16:57:32] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[16:57:32] [main/INFO] [FML]: Detected deobfuscated environment, loading log configs for colored console logs.
2020-01-04 16:57:34,560 main WARN Disabling terminal, you're running in an unsupported environment.
[16:57:34] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin
[16:57:34] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin
[16:57:34] [main/INFO] [FML]: Searching C:\Users\Kirill\Desktop\modding\run\.\mods for mods
[16:57:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[16:57:34] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[16:57:34] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[16:57:34] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:57:34] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[16:57:34] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[16:57:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:57:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:57:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[16:57:37] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[16:57:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[16:57:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[16:57:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[16:57:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[16:57:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[16:57:37] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[16:57:39] [main/INFO] [minecraft/Minecraft]: Setting user: Player585
[16:57:45] [main/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer:
[16:57:45] [main/INFO] [minecraft/Minecraft]: LWJGL Version: 2.9.4
[16:57:46] [main/INFO] [FML]: -- System Details --
Details:
	Minecraft Version: 1.12.2
	Operating System: Windows 10 (amd64) version 10.0
	Java Version: 1.8.0_231, Oracle Corporation
	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
	Memory: 181629008 bytes (173 MB) / 375914496 bytes (358 MB) up to 1908932608 bytes (1820 MB)
	JVM Flags: 0 total; 
	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
	FML: 
	Loaded coremods (and transformers): 
	GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.6.13586 Compatibility Profile Context 19.12.3 26.20.15003.5016' Renderer: 'AMD Radeon HD 7700 Series'
[16:57:46] [main/INFO] [FML]: MinecraftForge v14.23.5.2768 Initialized
[16:57:46] [main/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
[16:57:46] [main/INFO] [FML]: Replaced 1036 ore ingredients
[16:57:46] [main/INFO] [FML]: Searching C:\Users\Kirill\Desktop\modding\run\.\mods for mods
[16:57:48] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 174197300 nanos
[16:57:48] [main/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[16:57:49] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, jsac] at CLIENT
[16:57:49] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, jsac] at SERVER
[16:57:50] [main/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:JSacs
[16:57:50] [main/INFO] [FML]: Processing ObjectHolder annotations
[16:57:50] [main/INFO] [FML]: Found 1168 ObjectHolder annotations
[16:57:50] [main/INFO] [FML]: Identifying ItemStackHolder annotations
[16:57:50] [main/INFO] [FML]: Found 0 ItemStackHolder annotations
[16:57:50] [main/INFO] [FML]: Configured a dormant chunk cache size of 0
[16:57:50] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[16:57:50] [main/INFO] [FML]: Applying holder lookups
[16:57:50] [main/INFO] [FML]: Holder lookups applied
[16:57:50] [main/INFO] [FML]: Applying holder lookups
[16:57:50] [main/INFO] [FML]: Holder lookups applied
[16:57:50] [main/INFO] [FML]: Applying holder lookups
[16:57:50] [main/INFO] [FML]: Holder lookups applied
[16:57:50] [main/INFO] [FML]: Applying holder lookups
[16:57:50] [main/INFO] [FML]: Holder lookups applied
[16:57:50] [main/INFO] [FML]: Injecting itemstacks
[16:57:50] [main/INFO] [FML]: Itemstack injection complete
[16:57:51] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: UP_TO_DATE Target: null
[16:57:53] [Sound Library Loader/INFO] [minecraft/SoundManager]: Starting up SoundSystem...
[16:57:53] [Thread-5/INFO] [minecraft/SoundManager]: Initializing LWJGL OpenAL
[16:57:53] [Thread-5/INFO] [minecraft/SoundManager]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[16:57:53] [Thread-5/INFO] [minecraft/SoundManager]: OpenAL initialized.
[16:57:54] [Sound Library Loader/INFO] [minecraft/SoundManager]: Sound engine started
[16:57:59] [main/INFO] [FML]: Max texture size: 8192
[16:58:00] [main/INFO] [minecraft/TextureMap]: Created: 512x512 textures-atlas
[16:58:01] [main/ERROR] [FML]: Exception loading model for variant jsac:test_ingo#inventory for item "jsac:test_ingo", normal location exception: 
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model jsac:item/test_ingo with loader VanillaLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:302) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:151) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231]
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_231]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_231]
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_231]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231]
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_231]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_231]
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_231]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: java.io.FileNotFoundException: jsac:models/item/test_ingo.json
	at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:69) ~[SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.access$1400(ModelLoader.java:115) ~[ModelLoader.class:?]
	at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:861) ~[ModelLoader$VanillaLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?]
	... 20 more
[16:58:01] [main/ERROR] [FML]: Exception loading model for variant jsac:test_ingo#inventory for item "jsac:test_ingo", blockstate location exception: 
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model jsac:test_ingo#inventory with loader VariantLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:296) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:151) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231]
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_231]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_231]
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_231]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_231]
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_231]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_231]
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_231]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
	at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?]
	at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1175) ~[ModelLoader$VariantLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?]
	... 20 more
[16:58:02] [main/INFO] [FML]: Applying holder lookups
[16:58:02] [main/INFO] [FML]: Holder lookups applied
[16:58:02] [main/INFO] [FML]: Injecting itemstacks
[16:58:02] [main/INFO] [FML]: Itemstack injection complete
[16:58:02] [main/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods
[16:58:02] [main/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer:
[16:58:02] [main/INFO] [mojang/NarratorWindows]: Narrator library for x64 successfully loaded
[16:58:04] [Realms Notification Availability checker #1/INFO] [mojang/RealmsClient]: Could not authorize you against Realms server: Invalid session id
[16:58:18] [Server thread/INFO] [minecraft/IntegratedServer]: Starting integrated minecraft server version 1.12.2
[16:58:18] [Server thread/INFO] [minecraft/IntegratedServer]: Generating keypair
[16:58:18] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance
[16:58:18] [Server thread/INFO] [FML]: Registry Item: Found a missing id from the world jsac:test_indigo
[16:58:18] [Server thread/ERROR] [FML]: Unidentified mapping from registry minecraft:items
[16:58:18] [Server thread/ERROR] [FML]:     jsac:test_indigo: 4096
[16:58:23] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server
[16:58:23] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players
[16:58:23] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds
[16:58:23] [Server thread/INFO] [FML]: Applying holder lookups
[16:58:23] [Server thread/INFO] [FML]: Holder lookups applied
[16:58:23] [Server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STARTING and forced into state SERVER_STOPPED. Errors may have been discarded.
[16:58:29] [main/INFO] [minecraft/Minecraft]: Stopping!
[16:58:29] [main/INFO] [minecraft/SoundManager]: SoundSystem shutting down...
[16:58:29] [main/WARN] [minecraft/SoundManager]: Author: Paul Lamb, www.paulscode.com
3,005
192
592
Сверху