Jump to content

1.12.2 Slabs not rendering in inventory


JesusRH0717

Recommended Posts

My slabs are not rendering in the inventory or they do not render as items. They look like big black/purple squares when throwing them on the floor.

My BlockSlab:

Spoiler

public abstract class RubyRefinedSlab extends BlockSlab {
    
public static final PropertyEnum<Variant> VARIANT = PropertyEnum.<Variant>create("variant", Variant.class);
    
    public RubyRefinedSlab(String name, Material material) {
        super(material);
        this.setUnlocalizedName(name);
        this.setRegistryName(name);
        setCreativeTab(CreativeTabs.BUILDING_BLOCKS);
        setSoundType(SoundType.METAL);
        setHardness(5.0F);
        setResistance(30.0F);
        setHarvestLevel("pickaxe", 2);
        //setLihtLevel();
        //setLightOpacity();
        //setBlockUnbreakable();
        
        ModBlocks.Blocks.add(this); 
       
        
        IBlockState iblockstate = this.blockState.getBaseState().withProperty(VARIANT, Variant.DEFAULT);
        
        if(!this.isDouble()) {
            iblockstate.withProperty(HALF, BlockSlab.EnumBlockHalf.BOTTOM);
        }
        
        this.setDefaultState(iblockstate);
        this.useNeighborBrightness = true;
    }
    
    

    @Override
    public String getUnlocalizedName(int meta) {
        return super.getUnlocalizedName();
    }

    @Override
    public IProperty<?> getVariantProperty() {
        return VARIANT;
    }

    @Override
    public Comparable<?> getTypeForItem(ItemStack stack) {
        return Variant.DEFAULT;
    }

    @Override
    public Item getItemDropped(IBlockState state, Random rand, int fortune) {
        return Item.getItemFromBlock(ModBlocks.RUBY_REFINED_SLAB_HALF);
    }
    
    
    @Override
    public ItemStack getItem(World worldIn, BlockPos pos, IBlockState state) {
        return new ItemStack(ModBlocks.RUBY_REFINED_SLAB_HALF);
    }
    
    @Override
    public final IBlockState getStateFromMeta(final int meta) {
        IBlockState blockstate = this.blockState.getBaseState().withProperty(VARIANT, Variant.DEFAULT);
        
        if(!this.isDouble()) {
            blockstate = blockstate.withProperty(HALF, ((meta&8)!=0)?EnumBlockHalf.TOP:EnumBlockHalf.BOTTOM);
        }
        
        return blockstate;
    }
    
    @Override
    public final int getMetaFromState(final IBlockState state) {
        int meta = 0;
        
        if(!this.isDouble()&& state.getValue(HALF)==EnumBlockHalf.TOP) {
            meta |= 0;
        }
        
        return meta;
    }
    
    @Override
    protected BlockStateContainer createBlockState() {
        if(!this.isDouble()){
            return new BlockStateContainer(this, new IProperty[] {VARIANT, HALF});
        }
        return new BlockStateContainer(this, new IProperty[] {VARIANT});
    }
    
    public static class Double extends RubyRefinedSlab
    {

        public Double(String name, Material material) {
            super(name, material);
        }

        @Override
        public boolean isDouble() {
            return true;
        }

    }

    public static class Half extends RubyRefinedSlab
    {

        public Half(String name, Material material) {
            super(name, material);
        }

        @Override
        public boolean isDouble() {
            return false;
        }

    }
    
    public static enum Variant implements IStringSerializable
    {
        DEFAULT;

        @Override
        public String getName() {
            return "default";
        }
        
    }    
}

 

My  list

Spoiler

public class ModBlocks 
{
    public static final List<Block> Blocks = new ArrayList<Block>();
    
    public static final Block RUBY_ORE = new RubyOre("ruby_ore", Material.ROCK);
    public static final Block RUBY_BLOCK = new RubyBlock("ruby_block", Material.IRON);
    public static final Block RUBY_REFINED = new RubyRefined("ruby_refined", Material.IRON);
    
    public static final Block OBSIDIAN_REFINED = new ObsidianRefined("obsidian_refined", Material.IRON);
    
    public static final Block EMERALD_REFINED = new EmeraldRefined("emerald_refined", Material.IRON);
 
    public static final Block ONYX_ORE = new OnyxOre("onyx_ore", Material.ROCK);
    public static final Block ONYX_BLOCK = new OnyxBlock("onyx_block", Material.IRON);
    public static final Block ONYX_REFINED = new OnyxBlock("onyx_refined", Material.IRON);
    
    public static final Block PERLA_ORE = new PerlaOre("perla_ore", Material.ROCK);
    public static final Block PERLA_BLOCK = new PerlaBlock("perla_block", Material.IRON);
    
    //Slabs
    public static final Block RUBY_REFINED_SLAB_HALF = new RubyRefinedSlab.Half("ruby_refined_slab_half", Material.IRON);
    public static final Block RUBY_REFINED_SLAB_DOUBLE = new RubyRefinedSlab.Double("ruby_refined_slab_double", Material.IRON);
    
    

}

 

My events

Spoiler

@EventBusSubscriber
public class RegistryHandler 
{
    @SubscribeEvent
    public static void onItemRegister(RegistryEvent.Register<Item> event)
    {
        event.getRegistry().registerAll(ModItems.ITEMS.toArray(new Item[0]));
        
        ItemBlock item = new ItemSlab(ModBlocks.RUBY_REFINED_SLAB_HALF, (BlockSlab)ModBlocks.RUBY_REFINED_SLAB_HALF, (BlockSlab)ModBlocks.RUBY_REFINED_SLAB_DOUBLE);
        item.setRegistryName(ModBlocks.RUBY_REFINED_SLAB_HALF.getRegistryName());
        event.getRegistry().register(item);
        
    }
    
    @SubscribeEvent
    public static void onBlockRegister(RegistryEvent.Register<Block> event)
    {
        event.getRegistry().registerAll(ModBlocks.Blocks.toArray(new Block[0]));
    }
    
    @SubscribeEvent
    public static void onModelRegister(ModelRegistryEvent event)
    {
        for(Item item : ModItems.ITEMS)
        {
            if(item instanceof IHasModel)
            {
                ((IHasModel)item).registerModels();
            }
        }
        
        for(Block block : ModBlocks.Blocks)
        {
            if(block instanceof IHasModel)
            {
                ((IHasModel)block).registerModels();
            }
        }

    }
}

My .json

Spoiler

blockstate:

ruby_refined_slab_double.json:

{
    "variants": {
        "variant=default": { "model": "em:ruby_refined" }
    }
}

 

ruby_refined_slab_half.json:

{
    "variants": {
        "half=bottom,variant=default": { "model": "em:bottom_ruby_refined_slab" },
        "half=top,variant=default": { "model": "em:upper_ruby_refined_slab" }
    }
}

 

models/block

bottom_ruby_refined_slab.json:

{
    "parent": "block/half_slab",
    "textures": {
        "bottom": "em:blocks/ruby_refined",
        "top": "em:blocks/ruby_refined",
        "side": "em:blocks/ruby_refined"
    }
}

 

 

upper_ruby_refined_slab.json:

{
    "parent": "block/upper_slab",
    "textures": {
        "bottom": "em:blocks/ruby_refined",
        "top": "em:blocks/ruby_refined",
        "side": "em:blocks/ruby_refined"
    }
}

 

 

model/tem

ruby_refined_slab_half.json:

{
    "parent": "block/em:bottom_ruby_refined_slab"
        
}

So, you see

1969467788_Sinttulo.png.e8131286c44d156ab31665b8a511e839.png2.png.bc0e14c1bee9195e38b572dce5b7ce81.png

 

I'm new to this  xD

What is my mistake and how to solve it?

please and thank you

Edited by JesusRH0717
Link to comment
Share on other sites

When you run the game, in the minecraft client console, does it say anything there about this block? ctrl f to find the statements about the block then paste them here? I'm sort of new but I've had a similar problem that I solved.

Edited by LittleOne
Link to comment
Share on other sites

Spoiler

2018-06-26 08:58:01,749 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2018-06-26 08:58:01,758 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[08:58:02] [main/INFO] [GradleStart]: Extra: []
[08:58:02] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/JesusRH/.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]
[08:58:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[08:58:02] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[08:58:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[08:58:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[08:58:02] [main/INFO] [FML]: Forge Mod Loader version 14.23.2.2611 for Minecraft 1.12.2 loading
[08:58:02] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_172, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_172
[08:58:02] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[08:58:02] [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
[08:58:02] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin
[08:58:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[08:58:02] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[08:58:02] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[08:58:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[08:58:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[08:58:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[08:58:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[08:58:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[08:58:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2018-06-26 08:58:03,776 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2018-06-26 08:58:04,658 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2018-06-26 08:58:04,661 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[08:58:07] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[08:58:07] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[08:58:07] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[08:58:09] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[08:58:09] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[08:58:09] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[08:58:09] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[08:58:10] [main/INFO]: Setting user: Player744
[08:58:19] [main/WARN]: Skipping bad option: lastServer:
[08:58:19] [main/INFO]: LWJGL Version: 2.9.4
[08:58:22] [main/INFO] [FML]: -- System Details --
Details:
    Minecraft Version: 1.12.2
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 1.8.0_172, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 747086040 bytes (712 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.13399 Compatibility Profile Context 15.201.1101.0' Renderer: 'AMD Radeon(TM) R6 Graphics'
[08:58:22] [main/INFO] [FML]: MinecraftForge v14.23.2.2611 Initialized
[08:58:22] [main/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
[08:58:22] [main/INFO] [FML]: Replaced 1036 ore ingredients
[08:58:23] [main/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[08:58:23] [main/INFO] [FML]: Searching C:\Users\JesusRH\Desktop\ExtraMod\run\mods for mods
[08:58:25] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 275522394 nanos
[08:58:26] [main/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[08:58:27] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, em] at CLIENT
[08:58:27] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, em] at SERVER
[08:58:28] [main/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Extra Mod
[08:58:29] [main/INFO] [FML]: Processing ObjectHolder annotations
[08:58:29] [main/INFO] [FML]: Found 1168 ObjectHolder annotations
[08:58:29] [main/INFO] [FML]: Identifying ItemStackHolder annotations
[08:58:29] [main/INFO] [FML]: Found 0 ItemStackHolder annotations
[08:58:29] [main/INFO] [FML]: Configured a dormant chunk cache size of 0
[08:58:29] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[08:58:29] [main/INFO] [FML]: Applying holder lookups
[08:58:29] [main/INFO] [FML]: Holder lookups applied
[08:58:29] [main/INFO] [FML]: Applying holder lookups
[08:58:29] [main/INFO] [FML]: Holder lookups applied
[08:58:29] [main/INFO] [FML]: Applying holder lookups
[08:58:29] [main/INFO] [FML]: Holder lookups applied
[08:58:29] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Found status: OUTDATED Target: 14.23.4.2705
[08:58:29] [main/INFO] [FML]: Applying holder lookups
[08:58:29] [main/INFO] [FML]: Holder lookups applied
[08:58:29] [main/INFO] [FML]: Injecting itemstacks
[08:58:29] [main/INFO] [FML]: Itemstack injection complete
[08:58:36] [Sound Library Loader/INFO]: Starting up SoundSystem...
[08:58:36] [Thread-5/INFO]: Initializing LWJGL OpenAL
[08:58:36] [Thread-5/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[08:58:38] [Thread-5/INFO]: OpenAL initialized.
[08:58:38] [Sound Library Loader/INFO]: Sound engine started
[08:58:45] [main/ERROR] [FML]: Could not load vanilla model parent 'block/em:bottom_ruby_refined_slab' for 'net.minecraft.client.renderer.block.model.ModelBlock@209fa1fc
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model block/em:bottom_ruby_refined_slab with loader VanillaLoader.INSTANCE, skipping
    at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
    at net.minecraftforge.client.model.ModelLoaderRegistry.getModelOrLogError(ModelLoaderRegistry.java:203) [ModelLoaderRegistry.class:?]
    at net.minecraftforge.client.model.ModelLoader$VanillaModelWrapper.getTextures(ModelLoader.java:405) [ModelLoader$VanillaModelWrapper.class:?]
    at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:163) [ModelLoaderRegistry.class:?]
    at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:314) [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:164) [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_172]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_172]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_172]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_172]
    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_172]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_172]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_172]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_172]
    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
    at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: java.io.FileNotFoundException: block/em:models/bottom_ruby_refined_slab.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$1600(ModelLoader.java:130) ~[ModelLoader.class:?]
    at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:880) ~[ModelLoader$VanillaLoader.class:?]
    at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
    ... 23 more
[08:58:49] [main/INFO] [FML]: Max texture size: 16384
[08:58:50] [main/INFO]: Created: 512x512 textures-atlas
[08:58:53] [main/ERROR] [FML]: Exception loading model for variant em:ruby_refined_slab_half#inventory for item "em:ruby_refined_slab_half", normal location exception: 
java.lang.IllegalStateException: vanilla model 'net.minecraft.client.renderer.block.model.ModelBlock@209fa1fc' can't have non-vanilla parent
    at net.minecraftforge.client.model.ModelLoader$VanillaModelWrapper.getTextures(ModelLoader.java:412) ~[ModelLoader$VanillaModelWrapper.class:?]
    at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:163) ~[ModelLoaderRegistry.class:?]
    at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:314) ~[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:164) ~[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_172]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_172]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_172]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_172]
    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_172]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_172]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_172]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_172]
    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
    at GradleStart.main(GradleStart.java:25) [start/:?]
[08:58:53] [main/ERROR] [FML]: Exception loading model for variant em:ruby_refined_slab_half#inventory for item "em:ruby_refined_slab_half", blockstate location exception: 
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model em:ruby_refined_slab_half#inventory with loader VariantLoader.INSTANCE, skipping
    at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
    at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:322) ~[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:164) ~[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_172]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_172]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_172]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_172]
    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_172]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_172]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_172]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_172]
    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:1189) ~[ModelLoader$VariantLoader.class:?]
    at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
    ... 20 more
[08:58:55] [main/INFO] [FML]: Applying holder lookups
[08:58:55] [main/INFO] [FML]: Holder lookups applied
[08:58:55] [main/INFO] [FML]: Injecting itemstacks
[08:58:55] [main/INFO] [FML]: Itemstack injection complete
[08:58:55] [main/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods
[08:58:56] [main/WARN]: Skipping bad option: lastServer:
[08:58:56] [main/INFO]: Narrator library for x64 successfully loaded
[08:58:57] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
[08:59:03] [Server thread/INFO]: Starting integrated minecraft server version 1.12.2
[08:59:03] [Server thread/INFO]: Generating keypair
[08:59:03] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance
[08:59:04] [Server thread/INFO] [FML]: Applying holder lookups
[08:59:04] [Server thread/INFO] [FML]: Holder lookups applied
[08:59:04] [Server thread/INFO] [FML]: Loading dimension 0 (Pruebas) (net.minecraft.server.integrated.IntegratedServer@604e7db4)
[08:59:05] [Server thread/INFO]: Loaded 488 advancements
[08:59:05] [Server thread/INFO] [FML]: Loading dimension 1 (Pruebas) (net.minecraft.server.integrated.IntegratedServer@604e7db4)
[08:59:05] [Server thread/INFO] [FML]: Loading dimension -1 (Pruebas) (net.minecraft.server.integrated.IntegratedServer@604e7db4)
[08:59:05] [Server thread/INFO]: Preparing start region for level 0
[08:59:06] [Server thread/INFO]: Preparing spawn area: 21%
[08:59:08] [Server thread/INFO]: Changing view distance to 12, from 10
[08:59:11] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
[08:59:11] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
[08:59:11] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : minecraft@1.12.2,FML@8.0.99.99,forge@14.23.2.2611,em@1.0,mcp@9.42
[08:59:11] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
[08:59:11] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[08:59:11] [Server thread/INFO]: Player744[local:E:7964eeed] logged in with entity id 95 at (110.463014669004, 75.0, -1311.3869616631016)
[08:59:11] [Server thread/INFO]: Player744 se ha unido a la partida
[08:59:14] [Server thread/INFO]: Saving and pausing game...
[08:59:14] [Server thread/INFO]: Saving chunks for level 'Pruebas'/overworld
[08:59:14] [Server thread/INFO]: Saving chunks for level 'Pruebas'/the_nether
[08:59:14] [Server thread/INFO]: Saving chunks for level 'Pruebas'/the_end
[08:59:14] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@70aa10a1[id=aeca01bf-232e-37a2-985b-599827b3226a,name=Player744,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) ~[YggdrasilAuthenticationService.class:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:180) [YggdrasilMinecraftSessionService.class:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:60) [YggdrasilMinecraftSessionService$1.class:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:57) [YggdrasilMinecraftSessionService$1.class:?]
    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) [YggdrasilMinecraftSessionService.class:?]
    at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:3188) [Minecraft.class:?]
    at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:138) [SkinManager$3.class:?]
    at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_172]
    at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_172]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_172]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_172]
    at java.lang.Thread.run(Unknown Source) [?:1.8.0_172]
[08:59:15] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2455ms behind, skipping 49 tick(s)
[08:59:57] [Server thread/INFO]: Saving and pausing game...
[08:59:57] [Server thread/INFO]: Saving chunks for level 'Pruebas'/overworld
[08:59:57] [Server thread/INFO]: Saving chunks for level 'Pruebas'/the_nether
[08:59:58] [Server thread/INFO]: Saving chunks for level 'Pruebas'/the_end
[09:06:22] [Server thread/INFO]: Saving and pausing game...
[09:06:22] [Server thread/INFO]: Saving chunks for level 'Pruebas'/overworld
[09:06:23] [Server thread/INFO]: Saving chunks for level 'Pruebas'/the_nether
[09:06:23] [Server thread/INFO]: Saving chunks for level 'Pruebas'/the_end
[09:24:32] [Server thread/INFO]: Saving and pausing game...
[09:24:32] [Server thread/INFO]: Saving chunks for level 'Pruebas'/overworld
[09:24:32] [Server thread/INFO]: Saving chunks for level 'Pruebas'/the_nether
[09:24:32] [Server thread/INFO]: Saving chunks for level 'Pruebas'/the_end
 

am, these?
I'm sorry if I'm wrong xD

I'm new

 

@LittleOne

 

 

 

 

Link to comment
Share on other sites

Yep those are the ones! :)

 

So these lines here:

 

Could not load vanilla model parent 'block/em:bottom_ruby_refined_slab' for 'net.minecraft.client.renderer.block.model.ModelBlock@209fa1fc

net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model block/em:bottom_ruby_refined_slab with loader VanillaLoader.INSTANCE, skipping

Caused by: java.io.FileNotFoundException: block/em:models/bottom_ruby_refined_slab.json
    at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:69) ~

[08:58:53] [main/ERROR] [FML]: Exception loading model for variant em:ruby_refined_slab_half#inventory for item "em:ruby_refined_slab_half", normal location exception: 
java.lang.IllegalStateException: vanilla model 'net.minecraft.client.renderer.block.model.ModelBlock@209fa1fc' can't have non-vanilla parent

 

Perhaps something to do with this. 

 "parent": "block/em:bottom_ruby_refined_slab" ?

I'm taking a guess.

 

Link to comment
Share on other sites

 

7 minutes ago, LittleOne said:

Yep those are the ones! :)

 

So these lines here:

 

Could not load vanilla model parent 'block/em:bottom_ruby_refined_slab' for 'net.minecraft.client.renderer.block.model.ModelBlock@209fa1fc

net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model block/em:bottom_ruby_refined_slab with loader VanillaLoader.INSTANCE, skipping

Caused by: java.io.FileNotFoundException: block/em:models/bottom_ruby_refined_slab.json
    at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:69) ~

[08:58:53] [main/ERROR] [FML]: Exception loading model for variant em:ruby_refined_slab_half#inventory for item "em:ruby_refined_slab_half", normal location exception: 
java.lang.IllegalStateException: vanilla model 'net.minecraft.client.renderer.block.model.ModelBlock@209fa1fc' can't have non-vanilla parent

 

Perhaps something to do with this. 

 "parent": "block/em:bottom_ruby_refined_slab" ?

I'm taking a guess.

 

Yes, apparently, but now the question, how to solve it?
I'm seeing that it went wrong, maybe I wrote something wrong

Link to comment
Share on other sites

"parent": "em:block/bottom_ruby_refined_slab" ?

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

15 minutes ago, LittleOne said:

Does it still give you the same logs when you run the client?

no more, but now I do not know what it is, this ...

 

Spoiler

2018-06-26 10:33:38,095 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2018-06-26 10:33:38,112 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[10:33:38] [main/INFO] [GradleStart]: Extra: []
[10:33:38] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/JesusRH/.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]
[10:33:38] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[10:33:38] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[10:33:38] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[10:33:38] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[10:33:38] [main/INFO] [FML]: Forge Mod Loader version 14.23.2.2611 for Minecraft 1.12.2 loading
[10:33:38] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_172, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_172
[10:33:38] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[10:33:39] [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
[10:33:39] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin
[10:33:39] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[10:33:39] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[10:33:39] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[10:33:39] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[10:33:39] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[10:33:39] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[10:33:39] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[10:33:39] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[10:33:39] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2018-06-26 10:33:40,211 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2018-06-26 10:33:41,067 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2018-06-26 10:33:41,083 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[10:33:44] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[10:33:44] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[10:33:44] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[10:33:45] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[10:33:45] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[10:33:45] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[10:33:45] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[10:33:47] [main/INFO]: Setting user: Player384
[10:33:56] [main/WARN]: Skipping bad option: lastServer:
[10:33:56] [main/INFO]: LWJGL Version: 2.9.4
[10:33:59] [main/INFO] [FML]: -- System Details --
Details:
    Minecraft Version: 1.12.2
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 1.8.0_172, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 739529832 bytes (705 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.13399 Compatibility Profile Context 15.201.1101.0' Renderer: 'AMD Radeon(TM) R6 Graphics'
[10:33:59] [main/INFO] [FML]: MinecraftForge v14.23.2.2611 Initialized
[10:33:59] [main/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
[10:34:00] [main/INFO] [FML]: Replaced 1036 ore ingredients
[10:34:01] [main/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[10:34:01] [main/INFO] [FML]: Searching C:\Users\JesusRH\Desktop\ExtraMod\run\mods for mods
[10:34:02] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 282544831 nanos
[10:34:03] [main/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[10:34:04] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, em] at CLIENT
[10:34:04] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, em] at SERVER
[10:34:06] [main/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Extra Mod
[10:34:06] [main/INFO] [FML]: Processing ObjectHolder annotations
[10:34:06] [main/INFO] [FML]: Found 1168 ObjectHolder annotations
[10:34:06] [main/INFO] [FML]: Identifying ItemStackHolder annotations
[10:34:06] [main/INFO] [FML]: Found 0 ItemStackHolder annotations
[10:34:07] [main/INFO] [FML]: Configured a dormant chunk cache size of 0
[10:34:07] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[10:34:07] [main/INFO] [FML]: Applying holder lookups
[10:34:07] [main/INFO] [FML]: Holder lookups applied
[10:34:07] [main/INFO] [FML]: Applying holder lookups
[10:34:07] [main/INFO] [FML]: Holder lookups applied
[10:34:07] [main/INFO] [FML]: Applying holder lookups
[10:34:07] [main/INFO] [FML]: Holder lookups applied
[10:34:07] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Found status: OUTDATED Target: 14.23.4.2705
[10:34:07] [main/INFO] [FML]: Applying holder lookups
[10:34:07] [main/INFO] [FML]: Holder lookups applied
[10:34:07] [main/INFO] [FML]: Injecting itemstacks
[10:34:07] [main/INFO] [FML]: Itemstack injection complete
[10:34:15] [Sound Library Loader/INFO]: Starting up SoundSystem...
[10:34:15] [Thread-5/INFO]: Initializing LWJGL OpenAL
[10:34:15] [Thread-5/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
AL lib: (EE) MMDevApiOpenPlayback: Device init failed: 0x80004005
[10:34:15] [Thread-5/INFO]: OpenAL initialized.
[10:34:15] [Sound Library Loader/INFO]: Sound engine started
[10:34:28] [main/INFO] [FML]: Max texture size: 16384
[10:34:29] [main/INFO]: Created: 512x512 textures-atlas
[10:34:34] [main/INFO] [FML]: Applying holder lookups
[10:34:34] [main/INFO] [FML]: Holder lookups applied
[10:34:34] [main/INFO] [FML]: Injecting itemstacks
[10:34:34] [main/INFO] [FML]: Itemstack injection complete
[10:34:35] [main/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods
[10:34:35] [main/WARN]: Skipping bad option: lastServer:
[10:34:35] [main/INFO]: Narrator library for x64 successfully loaded
[10:34:37] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
[10:34:47] [Server thread/INFO]: Starting integrated minecraft server version 1.12.2
[10:34:47] [Server thread/INFO]: Generating keypair
[10:34:47] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance
[10:34:48] [Server thread/INFO] [FML]: Applying holder lookups
[10:34:48] [Server thread/INFO] [FML]: Holder lookups applied
[10:34:48] [Server thread/INFO] [FML]: Loading dimension 0 (Pruebas) (net.minecraft.server.integrated.IntegratedServer@4085a3e8)
[10:34:49] [Server thread/INFO]: Loaded 488 advancements
[10:34:49] [Server thread/INFO] [FML]: Loading dimension 1 (Pruebas) (net.minecraft.server.integrated.IntegratedServer@4085a3e8)
[10:34:50] [Server thread/INFO] [FML]: Loading dimension -1 (Pruebas) (net.minecraft.server.integrated.IntegratedServer@4085a3e8)
[10:34:50] [Server thread/INFO]: Preparing start region for level 0
[10:34:51] [Server thread/INFO]: Preparing spawn area: 14%
[10:34:52] [Server thread/INFO]: Preparing spawn area: 84%
[10:34:52] [Server thread/INFO]: Changing view distance to 12, from 10
[10:34:56] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
[10:34:56] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
[10:34:56] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : minecraft@1.12.2,FML@8.0.99.99,forge@14.23.2.2611,em@1.0,mcp@9.42
[10:34:56] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
[10:34:56] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[10:34:56] [Server thread/INFO]: Player384[local:E:57505d74] logged in with entity id 95 at (115.02949707037388, 74.0, -1310.2282150428105)
[10:34:56] [Server thread/INFO]: Player384 se ha unido a la partida
[10:34:57] [Server thread/INFO]: Saving and pausing game...
[10:34:58] [Server thread/INFO]: Saving chunks for level 'Pruebas'/overworld
[10:34:59] [Server thread/INFO]: Saving chunks for level 'Pruebas'/the_nether
[10:34:59] [Server thread/INFO]: Saving chunks for level 'Pruebas'/the_end
[10:34:59] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2722ms behind, skipping 54 tick(s)
[10:35:01] [Server thread/INFO]: Saving and pausing game...
[10:35:01] [Server thread/INFO]: Saving chunks for level 'Pruebas'/overworld
[10:35:01] [Server thread/INFO]: Saving chunks for level 'Pruebas'/the_nether
[10:35:02] [Server thread/INFO]: Saving chunks for level 'Pruebas'/the_end
[10:35:09] [Server thread/INFO]: Saving and pausing game...
[10:35:09] [Server thread/INFO]: Saving chunks for level 'Pruebas'/overworld
[10:35:09] [Server thread/INFO]: Saving chunks for level 'Pruebas'/the_nether
[10:35:09] [Server thread/INFO]: Saving chunks for level 'Pruebas'/the_end
 

 

Link to comment
Share on other sites

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.