Jump to content
  • Home
  • Files
  • Docs
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • Odd Missing Texture Error
Currently Supported: 1.16.X (Latest) and 1.15.X (LTS)
Sign in to follow this  
Followers 1
Draco18s

Odd Missing Texture Error

By Draco18s, October 25, 2016 in Modder Support

  • Reply to this topic
  • Start new topic

Recommended Posts

Draco18s    2414

Draco18s

Draco18s    2414

  • Reality Controller
  • Draco18s
  • Members
  • 2414
  • 15998 posts
Posted October 25, 2016

[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN minecraft
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]:   domain minecraft is missing 1 texture
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]:     domain minecraft has 3 locations:
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]:       unknown resourcepack type net.minecraft.client.resources.DefaultResourcePack : Default
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]:       mod FML resources at C:\Users\Major\.gradle\caches\minecraft\net\minecraftforge\forge\1.10.2-12.18.1.2094\snapshot\20160518\forgeSrc-1.10.2-12.18.1.2094.jar
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]:       mod Forge resources at C:\Users\Major\.gradle\caches\minecraft\net\minecraftforge\forge\1.10.2-12.18.1.2094\snapshot\20160518\forgeSrc-1.10.2-12.18.1.2094.jar
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain minecraft are:
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/saltblock.png
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain minecraft
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[17:43:07] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=

 

"saltblock" exists in exactly one place in my code and json files:

 

{
    "forge_marker": 1,
    "defaults": {
        "textures": {
            "all": "harderfarming:blocks/saltblock"
        },
        "model": "cube_all"
    },
    "variants": {
        "normal": [{

        }],
        "inventory": [{
            
        }]
    }
}

 

I've even commented out the whole mod to prevent it from loading and I still get the missing texture notification and no other errors are present.

  • Quote

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.

Share this post


Link to post
Share on other sites

Animefan8888    741

Animefan8888

Animefan8888    741

  • Reality Controller
  • Animefan8888
  • Forge Modder
  • 741
  • 6157 posts
Posted October 26, 2016

That is a weird error it looks like it is looking for "minecraft:blocks/saltBlock" and if you have commented out the whole mod then this error shouldn't be showing up...hmmm what a mystery.

  • Quote

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Share this post


Link to post
Share on other sites

Choonster    1651

Choonster

Choonster    1651

  • Reality Controller
  • Choonster
  • Forge Modder
  • 1651
  • 5100 posts
Posted October 26, 2016

It's possible that your IDE is caching an older version of your compiled code. Try rebuilding the project (Build > Rebuild Project in IDEA) before running Minecraft again.

  • Quote

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Share this post


Link to post
Share on other sites

Leviathan143    40

Leviathan143

Leviathan143    40

  • Creeper Killer
  • Leviathan143
  • Forge Modder
  • 40
  • 211 posts
Posted October 26, 2016

It's possible that your IDE is caching an older version of your compiled code. Try rebuilding the project (Build > Rebuild Project in IDEA) before running Minecraft again.

 

Will that delete the bin folder? I've had issues with the bin folder retaining old code before.

  • Quote

Share this post


Link to post
Share on other sites

Choonster    1651

Choonster

Choonster    1651

  • Reality Controller
  • Choonster
  • Forge Modder
  • 1651
  • 5100 posts
Posted October 26, 2016

It's possible that your IDE is caching an older version of your compiled code. Try rebuilding the project (Build > Rebuild Project in IDEA) before running Minecraft again.

 

Will that delete the bin folder? I've had issues with the bin folder retaining old code before.

 

IDEA clears the output directories when you run Rebuild Project, Eclipse probably does something similar.

  • Quote

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Share this post


Link to post
Share on other sites

Draco18s    2414

Draco18s

Draco18s    2414

  • Reality Controller
  • Draco18s
  • Members
  • 2414
  • 15998 posts
Posted October 26, 2016

Eclipse's version is Project -> Clean, I believe.  That was insufficient (I still got the error).

 

Lets try manually deleted everything in /bin, /build, and /run.... yep that did it.

 

What was weird was that it WAS using the current files (I could make changes and see them reflected when running), but kept insisting there was a problem.

  • Quote

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.

Share this post


Link to post
Share on other sites

Draco18s    2414

Draco18s

Draco18s    2414

  • Reality Controller
  • Draco18s
  • Members
  • 2414
  • 15998 posts
Posted October 26, 2016

Edit, ok, the missing texture is back AND several other blocks now have missing models and no errors.

 

WTF.

 

*Compares with Git repo*

 

Well I can now solve both problems.  Despite having searched the entire project for "saltblock" and not finding it, it was buried over in the model used by the blocks that were broken. :|

  • Quote

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.

Share this post


Link to post
Share on other sites

jeffryfisher    183

jeffryfisher

jeffryfisher    183

  • World Shaper
  • jeffryfisher
  • Members
  • 183
  • 1283 posts
Posted October 27, 2016

That highlights the main reason that I HATE this new-fanged json scheme. Brokenness is not detected or traced by our IDE (Eclipse for most of us). Our most powerful tool knows neither syntax nor semantics of these opaque text files. For us old Fortran coders, it's much like returning to the 1970's.

 

I understand why Mojang wanted to "bake" models, but they could have used a callback method in Block and Item rather than pushing so much fragile code into the purgatory that is JSON. Imagine if each state to be baked could call a function, pass the BS, and get back an object to be baked. Our mods could then use all of Java's power to concatenate, consolidate etc. Cartesian products would never have happened. Errors would all have been in Java.

 

Life would have been so much simpler.

  • Quote

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Share this post


Link to post
Share on other sites

Draco18s    2414

Draco18s

Draco18s    2414

  • Reality Controller
  • Draco18s
  • Members
  • 2414
  • 15998 posts
Posted October 27, 2016

That highlights the main reason that I HATE this new-fanged json scheme.

 

Indeed

  • Quote

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.

Share this post


Link to post
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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  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.

    • Insert image from URL
×
  • Desktop
  • Tablet
  • Phone
Sign in to follow this  
Followers 1
Go To Topic Listing



  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • cadbane86140
      Minecraft: Parkour Stairs Part 1!

      By cadbane86140 · Posted 2 minutes ago

      Hello There! Today we are playing a BRAND NEW parkour map that was actually just released about a month ago and all I gotta say is that this map is so freaking unique and the map creators did something with this map that we have never seen in parkour before! There are so many hilarious moments in this video that I know you guys are gonna love! I hope you all enjoy this video and if you did don't forget to like and sub for more! https://www.youtube.com/watch?v=5aGkMp5bExg
    • cadbane86140
      Minecraft: Parkour Stairs Part 1!

      By cadbane86140 · Posted 3 minutes ago

      Hello There! Today we are playing a BRAND NEW parkour map that was actually just released about a month ago and all I gotta say is that this map is so freaking unique and the map creators did something with this map that we have never seen in parkour before! There are so many hilarious moments in this video that I know you guys are gonna love! I hope you all enjoy this video and if you did don't forget to like and sub for more! https://www.youtube.com/watch?v=5aGkMp5bExg
    • kiou.23
      Block Rotate

      By kiou.23 · Posted 31 minutes ago

      That's usually the case, always try to understand the code before copy and pasting, or else you'll get a lot of headaches later in the code's life
    • Varzac
      Forge jar file not opening

      By Varzac · Posted 57 minutes ago

      I ran Jarfix and then tried installing again with the same results. Nothing happening I even tried using winrar, but as you said nothing happened
    • BeardlessBrady
      [1.16.4] Null when OpenGUI

      By BeardlessBrady · Posted 1 hour ago

      Ah.. Thats what I get for stopping half way through and not double checking, thanks!
  • Topics

    • cadbane86140
      0
      Minecraft: Parkour Stairs Part 1!

      By cadbane86140
      Started 2 minutes ago

    • cadbane86140
      0
      Minecraft: Parkour Stairs Part 1!

      By cadbane86140
      Started 3 minutes ago

    • ehbean
      10
      Block Rotate

      By ehbean
      Started 7 hours ago

    • Varzac
      3
      Forge jar file not opening

      By Varzac
      Started 13 hours ago

    • BeardlessBrady
      2
      [1.16.4] Null when OpenGUI

      By BeardlessBrady
      Started 1 hour ago

  • Who's Online (See full list)

    • cadbane86140
    • ehbean
    • We Random
    • The_Deadly_Taco
    • kiou.23
    • DieGo901yt
    • brok4d
    • JackRaidenPH
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • Odd Missing Texture Error
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community