Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
CreatureChat
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
Public
CreatureChat
Commits
6c7acc20
Commit
6c7acc20
authored
Apr 05, 2024
by
Jonathan Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stop annoying logs when texture is not found
parent
c0b08cfc
Pipeline
#11946
passed with stage
in 31 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
1 deletion
+0
-1
TextureLoader.java
src/client/java/com/owlmaddie/TextureLoader.java
+0
-1
No files found.
src/client/java/com/owlmaddie/TextureLoader.java
View file @
6c7acc20
...
@@ -45,7 +45,6 @@ public class TextureLoader {
...
@@ -45,7 +45,6 @@ public class TextureLoader {
return
textureId
;
return
textureId
;
}
else
{
}
else
{
// Texture not found, log a message and return the "not_found" texture Identifier
// Texture not found, log a message and return the "not_found" texture Identifier
LOGGER
.
info
(
texturePath
+
" was not found"
);
Identifier
notFoundTextureId
=
new
Identifier
(
"mobgpt"
,
"textures/entity/not_found.png"
);
Identifier
notFoundTextureId
=
new
Identifier
(
"mobgpt"
,
"textures/entity/not_found.png"
);
MinecraftClient
.
getInstance
().
getTextureManager
().
bindTexture
(
notFoundTextureId
);
MinecraftClient
.
getInstance
().
getTextureManager
().
bindTexture
(
notFoundTextureId
);
return
notFoundTextureId
;
return
notFoundTextureId
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment