How to fix “loading model for blockstate variant '#normal' exception” in minecraft forge?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















After succesfully making an item have a texture, for the last hours I am struggling to make the texture loading work for blocks (Interpreting my error message, it's the model loading I struggle with)



I followed cubicoders tutorial ( https://cubicoder.wordpress.com/2018/06/20/basic-block/ ) for the progress so far. Because his solution for creating blocks threw an error, I checked back with other tutorials. While my error log insists the problem lies within the model loading (spezifically the variant loading of the variant #normal), this part is the exact same as in every tutorial I could find.

What else could be the trigger for such an exception?



My complete project code can be found here: https://github.com/harlekintiger/modding

It's really just the basic setup, one item and this broken block.





The most important parts are the following:



"basic_block.json" located in "resources/assets/MODID/blockstate":



{
"forge_marker": 1,
"defaults": {
"model": "firstforgemod:basic_block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}


"basic_block.json" located in "resources/assets/MODID/models/block":



{
"parent": "block/cube_all",
"textures": {
"all": "firstforgemod:blocks/basic_block"
}
}


Class of the actual block:



public class BlockBasic extends Block{

public BlockBasic(Material material, String unlocalizedName, String registryName){
this(material, SoundType.STONE, unlocalizedName, registryName);
}

public BlockBasic(Material material, SoundType sound, String unlocalizedName, String registryName){
super(material);
setUnlocalizedName(FirstForgeMod.MODID + "." + unlocalizedName);
setRegistryName(registryName);
setCreativeTab(FirstForgeMod.TUTORIAL_TAB);
setSoundType(sound);
}
}


Class to collect the blocks:



@ObjectHolder(FirstForgeMod.MODID)
public class TutorialBlocks {

public static final Block BASIC_BLOCK = null;
}


ModelRegistryHandler class: (my guess is there is something missing in here)



@EventBusSubscriber(Side.CLIENT)
public class ModelRegistryHandler {

@SubscribeEvent
public static void registerModels(ModelRegistryEvent event){
registerModel(TutorialItems.BASIC_ITEM);
registerModel(Item.getItemFromBlock(TutorialBlocks.BASIC_BLOCK));
}

private static void registerModel(Item item) {
ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
}
}


RegistryHandler class:



@EventBusSubscriber
public class RegistryHandler {

@SubscribeEvent
public static void registerBlocks(Register<Block> event){
final Block blocks ={
new BlockBasic(Material.ROCK, "blockBasic", "basic_block")
};

event.getRegistry().registerAll(blocks);
}

@SubscribeEvent
public static void registerItems(Register<Item> event){
final Item items = {
new ItemBasic("itemBasic", "basic_item")
};

final Item itemBlocks = {
new ItemBlock(TutorialBlocks.BASIC_BLOCK).setRegistryName(TutorialBlocks.BASIC_BLOCK.getRegistryName())
};

event.getRegistry().registerAll(items);
event.getRegistry().registerAll(itemBlocks);
}
}


Log file of minecraft starting (with the error message) and closing:
https://pastebin.com/Ff7NuFSk





What I am getting:
The game starts and in-game the block can be placed, but is completely untextured (missing textures texutre) in both the world and the inventory.










share|improve this question

























  • Can you post the complete log file? Use pastebin if you have to. "Cannot load model" is a very broad error and down underneath it will be another error (the true source) that will have more information.

    – Draco18s
    Jan 5 at 1:20











  • @Draco18s Thanks for the suggestion, I did add the log file

    – harlekintiger
    Jan 6 at 13:57













  • Just to be complete, Cubicoder (the tutorial author) found I wrote "blockstate" instead of "blockstates" as the folder name. So quadruple check your spelling if you have the same error. If it persists, look at Draco18s answer, it is worth its character count in kilos of gold!

    – harlekintiger
    Jan 6 at 19:55


















0















After succesfully making an item have a texture, for the last hours I am struggling to make the texture loading work for blocks (Interpreting my error message, it's the model loading I struggle with)



I followed cubicoders tutorial ( https://cubicoder.wordpress.com/2018/06/20/basic-block/ ) for the progress so far. Because his solution for creating blocks threw an error, I checked back with other tutorials. While my error log insists the problem lies within the model loading (spezifically the variant loading of the variant #normal), this part is the exact same as in every tutorial I could find.

What else could be the trigger for such an exception?



My complete project code can be found here: https://github.com/harlekintiger/modding

It's really just the basic setup, one item and this broken block.





The most important parts are the following:



"basic_block.json" located in "resources/assets/MODID/blockstate":



{
"forge_marker": 1,
"defaults": {
"model": "firstforgemod:basic_block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}


"basic_block.json" located in "resources/assets/MODID/models/block":



{
"parent": "block/cube_all",
"textures": {
"all": "firstforgemod:blocks/basic_block"
}
}


Class of the actual block:



public class BlockBasic extends Block{

public BlockBasic(Material material, String unlocalizedName, String registryName){
this(material, SoundType.STONE, unlocalizedName, registryName);
}

public BlockBasic(Material material, SoundType sound, String unlocalizedName, String registryName){
super(material);
setUnlocalizedName(FirstForgeMod.MODID + "." + unlocalizedName);
setRegistryName(registryName);
setCreativeTab(FirstForgeMod.TUTORIAL_TAB);
setSoundType(sound);
}
}


Class to collect the blocks:



@ObjectHolder(FirstForgeMod.MODID)
public class TutorialBlocks {

public static final Block BASIC_BLOCK = null;
}


ModelRegistryHandler class: (my guess is there is something missing in here)



@EventBusSubscriber(Side.CLIENT)
public class ModelRegistryHandler {

@SubscribeEvent
public static void registerModels(ModelRegistryEvent event){
registerModel(TutorialItems.BASIC_ITEM);
registerModel(Item.getItemFromBlock(TutorialBlocks.BASIC_BLOCK));
}

private static void registerModel(Item item) {
ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
}
}


RegistryHandler class:



@EventBusSubscriber
public class RegistryHandler {

@SubscribeEvent
public static void registerBlocks(Register<Block> event){
final Block blocks ={
new BlockBasic(Material.ROCK, "blockBasic", "basic_block")
};

event.getRegistry().registerAll(blocks);
}

@SubscribeEvent
public static void registerItems(Register<Item> event){
final Item items = {
new ItemBasic("itemBasic", "basic_item")
};

final Item itemBlocks = {
new ItemBlock(TutorialBlocks.BASIC_BLOCK).setRegistryName(TutorialBlocks.BASIC_BLOCK.getRegistryName())
};

event.getRegistry().registerAll(items);
event.getRegistry().registerAll(itemBlocks);
}
}


Log file of minecraft starting (with the error message) and closing:
https://pastebin.com/Ff7NuFSk





What I am getting:
The game starts and in-game the block can be placed, but is completely untextured (missing textures texutre) in both the world and the inventory.










share|improve this question

























  • Can you post the complete log file? Use pastebin if you have to. "Cannot load model" is a very broad error and down underneath it will be another error (the true source) that will have more information.

    – Draco18s
    Jan 5 at 1:20











  • @Draco18s Thanks for the suggestion, I did add the log file

    – harlekintiger
    Jan 6 at 13:57













  • Just to be complete, Cubicoder (the tutorial author) found I wrote "blockstate" instead of "blockstates" as the folder name. So quadruple check your spelling if you have the same error. If it persists, look at Draco18s answer, it is worth its character count in kilos of gold!

    – harlekintiger
    Jan 6 at 19:55














0












0








0








After succesfully making an item have a texture, for the last hours I am struggling to make the texture loading work for blocks (Interpreting my error message, it's the model loading I struggle with)



I followed cubicoders tutorial ( https://cubicoder.wordpress.com/2018/06/20/basic-block/ ) for the progress so far. Because his solution for creating blocks threw an error, I checked back with other tutorials. While my error log insists the problem lies within the model loading (spezifically the variant loading of the variant #normal), this part is the exact same as in every tutorial I could find.

What else could be the trigger for such an exception?



My complete project code can be found here: https://github.com/harlekintiger/modding

It's really just the basic setup, one item and this broken block.





The most important parts are the following:



"basic_block.json" located in "resources/assets/MODID/blockstate":



{
"forge_marker": 1,
"defaults": {
"model": "firstforgemod:basic_block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}


"basic_block.json" located in "resources/assets/MODID/models/block":



{
"parent": "block/cube_all",
"textures": {
"all": "firstforgemod:blocks/basic_block"
}
}


Class of the actual block:



public class BlockBasic extends Block{

public BlockBasic(Material material, String unlocalizedName, String registryName){
this(material, SoundType.STONE, unlocalizedName, registryName);
}

public BlockBasic(Material material, SoundType sound, String unlocalizedName, String registryName){
super(material);
setUnlocalizedName(FirstForgeMod.MODID + "." + unlocalizedName);
setRegistryName(registryName);
setCreativeTab(FirstForgeMod.TUTORIAL_TAB);
setSoundType(sound);
}
}


Class to collect the blocks:



@ObjectHolder(FirstForgeMod.MODID)
public class TutorialBlocks {

public static final Block BASIC_BLOCK = null;
}


ModelRegistryHandler class: (my guess is there is something missing in here)



@EventBusSubscriber(Side.CLIENT)
public class ModelRegistryHandler {

@SubscribeEvent
public static void registerModels(ModelRegistryEvent event){
registerModel(TutorialItems.BASIC_ITEM);
registerModel(Item.getItemFromBlock(TutorialBlocks.BASIC_BLOCK));
}

private static void registerModel(Item item) {
ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
}
}


RegistryHandler class:



@EventBusSubscriber
public class RegistryHandler {

@SubscribeEvent
public static void registerBlocks(Register<Block> event){
final Block blocks ={
new BlockBasic(Material.ROCK, "blockBasic", "basic_block")
};

event.getRegistry().registerAll(blocks);
}

@SubscribeEvent
public static void registerItems(Register<Item> event){
final Item items = {
new ItemBasic("itemBasic", "basic_item")
};

final Item itemBlocks = {
new ItemBlock(TutorialBlocks.BASIC_BLOCK).setRegistryName(TutorialBlocks.BASIC_BLOCK.getRegistryName())
};

event.getRegistry().registerAll(items);
event.getRegistry().registerAll(itemBlocks);
}
}


Log file of minecraft starting (with the error message) and closing:
https://pastebin.com/Ff7NuFSk





What I am getting:
The game starts and in-game the block can be placed, but is completely untextured (missing textures texutre) in both the world and the inventory.










share|improve this question
















After succesfully making an item have a texture, for the last hours I am struggling to make the texture loading work for blocks (Interpreting my error message, it's the model loading I struggle with)



I followed cubicoders tutorial ( https://cubicoder.wordpress.com/2018/06/20/basic-block/ ) for the progress so far. Because his solution for creating blocks threw an error, I checked back with other tutorials. While my error log insists the problem lies within the model loading (spezifically the variant loading of the variant #normal), this part is the exact same as in every tutorial I could find.

What else could be the trigger for such an exception?



My complete project code can be found here: https://github.com/harlekintiger/modding

It's really just the basic setup, one item and this broken block.





The most important parts are the following:



"basic_block.json" located in "resources/assets/MODID/blockstate":



{
"forge_marker": 1,
"defaults": {
"model": "firstforgemod:basic_block"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}


"basic_block.json" located in "resources/assets/MODID/models/block":



{
"parent": "block/cube_all",
"textures": {
"all": "firstforgemod:blocks/basic_block"
}
}


Class of the actual block:



public class BlockBasic extends Block{

public BlockBasic(Material material, String unlocalizedName, String registryName){
this(material, SoundType.STONE, unlocalizedName, registryName);
}

public BlockBasic(Material material, SoundType sound, String unlocalizedName, String registryName){
super(material);
setUnlocalizedName(FirstForgeMod.MODID + "." + unlocalizedName);
setRegistryName(registryName);
setCreativeTab(FirstForgeMod.TUTORIAL_TAB);
setSoundType(sound);
}
}


Class to collect the blocks:



@ObjectHolder(FirstForgeMod.MODID)
public class TutorialBlocks {

public static final Block BASIC_BLOCK = null;
}


ModelRegistryHandler class: (my guess is there is something missing in here)



@EventBusSubscriber(Side.CLIENT)
public class ModelRegistryHandler {

@SubscribeEvent
public static void registerModels(ModelRegistryEvent event){
registerModel(TutorialItems.BASIC_ITEM);
registerModel(Item.getItemFromBlock(TutorialBlocks.BASIC_BLOCK));
}

private static void registerModel(Item item) {
ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
}
}


RegistryHandler class:



@EventBusSubscriber
public class RegistryHandler {

@SubscribeEvent
public static void registerBlocks(Register<Block> event){
final Block blocks ={
new BlockBasic(Material.ROCK, "blockBasic", "basic_block")
};

event.getRegistry().registerAll(blocks);
}

@SubscribeEvent
public static void registerItems(Register<Item> event){
final Item items = {
new ItemBasic("itemBasic", "basic_item")
};

final Item itemBlocks = {
new ItemBlock(TutorialBlocks.BASIC_BLOCK).setRegistryName(TutorialBlocks.BASIC_BLOCK.getRegistryName())
};

event.getRegistry().registerAll(items);
event.getRegistry().registerAll(itemBlocks);
}
}


Log file of minecraft starting (with the error message) and closing:
https://pastebin.com/Ff7NuFSk





What I am getting:
The game starts and in-game the block can be placed, but is completely untextured (missing textures texutre) in both the world and the inventory.







minecraft minecraft-forge






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 6 at 13:56







harlekintiger

















asked Jan 3 at 20:15









harlekintigerharlekintiger

55212




55212













  • Can you post the complete log file? Use pastebin if you have to. "Cannot load model" is a very broad error and down underneath it will be another error (the true source) that will have more information.

    – Draco18s
    Jan 5 at 1:20











  • @Draco18s Thanks for the suggestion, I did add the log file

    – harlekintiger
    Jan 6 at 13:57













  • Just to be complete, Cubicoder (the tutorial author) found I wrote "blockstate" instead of "blockstates" as the folder name. So quadruple check your spelling if you have the same error. If it persists, look at Draco18s answer, it is worth its character count in kilos of gold!

    – harlekintiger
    Jan 6 at 19:55



















  • Can you post the complete log file? Use pastebin if you have to. "Cannot load model" is a very broad error and down underneath it will be another error (the true source) that will have more information.

    – Draco18s
    Jan 5 at 1:20











  • @Draco18s Thanks for the suggestion, I did add the log file

    – harlekintiger
    Jan 6 at 13:57













  • Just to be complete, Cubicoder (the tutorial author) found I wrote "blockstate" instead of "blockstates" as the folder name. So quadruple check your spelling if you have the same error. If it persists, look at Draco18s answer, it is worth its character count in kilos of gold!

    – harlekintiger
    Jan 6 at 19:55

















Can you post the complete log file? Use pastebin if you have to. "Cannot load model" is a very broad error and down underneath it will be another error (the true source) that will have more information.

– Draco18s
Jan 5 at 1:20





Can you post the complete log file? Use pastebin if you have to. "Cannot load model" is a very broad error and down underneath it will be another error (the true source) that will have more information.

– Draco18s
Jan 5 at 1:20













@Draco18s Thanks for the suggestion, I did add the log file

– harlekintiger
Jan 6 at 13:57







@Draco18s Thanks for the suggestion, I did add the log file

– harlekintiger
Jan 6 at 13:57















Just to be complete, Cubicoder (the tutorial author) found I wrote "blockstate" instead of "blockstates" as the folder name. So quadruple check your spelling if you have the same error. If it persists, look at Draco18s answer, it is worth its character count in kilos of gold!

– harlekintiger
Jan 6 at 19:55





Just to be complete, Cubicoder (the tutorial author) found I wrote "blockstate" instead of "blockstates" as the folder name. So quadruple check your spelling if you have the same error. If it persists, look at Draco18s answer, it is worth its character count in kilos of gold!

– harlekintiger
Jan 6 at 19:55












1 Answer
1






active

oldest

votes


















1














Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 14 column 2 path $


There's your underlying error.



https://github.com/harlekintiger/modding/blob/master/src/main/resources/assets/firstforgemod/blockstates/basic_block.json#L14



JSON is a data format, it doesn't allow comments (of any type) anywhere in the file.






share|improve this answer
























  • You have some serious error message analytic skills! It now works like a charm, thank you very much :)

    – harlekintiger
    Jan 6 at 19:48











  • @harlekintiger Its because I've been working with the system long enough to know what to look for. "Error loading model" is an error thrown by one system in response to any one of a half dozen or so errors through by one or more other systems. Error in the JSON itself, missing blockstate file, a missing model file, a missing texture file, a missing blockstate entry (i.e. you said "I have a block with facing" and then your blockstate doesn't have all of the facing directions), etc.

    – Draco18s
    Jan 6 at 22:19














Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54029185%2fhow-to-fix-loading-model-for-blockstate-variant-normal-exception-in-minecra%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 14 column 2 path $


There's your underlying error.



https://github.com/harlekintiger/modding/blob/master/src/main/resources/assets/firstforgemod/blockstates/basic_block.json#L14



JSON is a data format, it doesn't allow comments (of any type) anywhere in the file.






share|improve this answer
























  • You have some serious error message analytic skills! It now works like a charm, thank you very much :)

    – harlekintiger
    Jan 6 at 19:48











  • @harlekintiger Its because I've been working with the system long enough to know what to look for. "Error loading model" is an error thrown by one system in response to any one of a half dozen or so errors through by one or more other systems. Error in the JSON itself, missing blockstate file, a missing model file, a missing texture file, a missing blockstate entry (i.e. you said "I have a block with facing" and then your blockstate doesn't have all of the facing directions), etc.

    – Draco18s
    Jan 6 at 22:19


















1














Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 14 column 2 path $


There's your underlying error.



https://github.com/harlekintiger/modding/blob/master/src/main/resources/assets/firstforgemod/blockstates/basic_block.json#L14



JSON is a data format, it doesn't allow comments (of any type) anywhere in the file.






share|improve this answer
























  • You have some serious error message analytic skills! It now works like a charm, thank you very much :)

    – harlekintiger
    Jan 6 at 19:48











  • @harlekintiger Its because I've been working with the system long enough to know what to look for. "Error loading model" is an error thrown by one system in response to any one of a half dozen or so errors through by one or more other systems. Error in the JSON itself, missing blockstate file, a missing model file, a missing texture file, a missing blockstate entry (i.e. you said "I have a block with facing" and then your blockstate doesn't have all of the facing directions), etc.

    – Draco18s
    Jan 6 at 22:19
















1












1








1







Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 14 column 2 path $


There's your underlying error.



https://github.com/harlekintiger/modding/blob/master/src/main/resources/assets/firstforgemod/blockstates/basic_block.json#L14



JSON is a data format, it doesn't allow comments (of any type) anywhere in the file.






share|improve this answer













Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 14 column 2 path $


There's your underlying error.



https://github.com/harlekintiger/modding/blob/master/src/main/resources/assets/firstforgemod/blockstates/basic_block.json#L14



JSON is a data format, it doesn't allow comments (of any type) anywhere in the file.







share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 6 at 16:44









Draco18sDraco18s

10.8k32242




10.8k32242













  • You have some serious error message analytic skills! It now works like a charm, thank you very much :)

    – harlekintiger
    Jan 6 at 19:48











  • @harlekintiger Its because I've been working with the system long enough to know what to look for. "Error loading model" is an error thrown by one system in response to any one of a half dozen or so errors through by one or more other systems. Error in the JSON itself, missing blockstate file, a missing model file, a missing texture file, a missing blockstate entry (i.e. you said "I have a block with facing" and then your blockstate doesn't have all of the facing directions), etc.

    – Draco18s
    Jan 6 at 22:19





















  • You have some serious error message analytic skills! It now works like a charm, thank you very much :)

    – harlekintiger
    Jan 6 at 19:48











  • @harlekintiger Its because I've been working with the system long enough to know what to look for. "Error loading model" is an error thrown by one system in response to any one of a half dozen or so errors through by one or more other systems. Error in the JSON itself, missing blockstate file, a missing model file, a missing texture file, a missing blockstate entry (i.e. you said "I have a block with facing" and then your blockstate doesn't have all of the facing directions), etc.

    – Draco18s
    Jan 6 at 22:19



















You have some serious error message analytic skills! It now works like a charm, thank you very much :)

– harlekintiger
Jan 6 at 19:48





You have some serious error message analytic skills! It now works like a charm, thank you very much :)

– harlekintiger
Jan 6 at 19:48













@harlekintiger Its because I've been working with the system long enough to know what to look for. "Error loading model" is an error thrown by one system in response to any one of a half dozen or so errors through by one or more other systems. Error in the JSON itself, missing blockstate file, a missing model file, a missing texture file, a missing blockstate entry (i.e. you said "I have a block with facing" and then your blockstate doesn't have all of the facing directions), etc.

– Draco18s
Jan 6 at 22:19







@harlekintiger Its because I've been working with the system long enough to know what to look for. "Error loading model" is an error thrown by one system in response to any one of a half dozen or so errors through by one or more other systems. Error in the JSON itself, missing blockstate file, a missing model file, a missing texture file, a missing blockstate entry (i.e. you said "I have a block with facing" and then your blockstate doesn't have all of the facing directions), etc.

– Draco18s
Jan 6 at 22:19






















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54029185%2fhow-to-fix-loading-model-for-blockstate-variant-normal-exception-in-minecra%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Monofisismo

Angular Downloading a file using contenturl with Basic Authentication

Olmecas