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
0
Merge Requests
0
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
9405b2c2
Commit
9405b2c2
authored
Jan 04, 2025
by
Jonathan Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaning up Mixin code for player icon support
parent
e151eddf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
CHANGELOG.md
CHANGELOG.md
+1
-0
MixinPlayerSkinTexture.java
...va/com/owlmaddie/mixin/client/MixinPlayerSkinTexture.java
+2
-2
creaturechat.client.mixins.json
src/client/resources/creaturechat.client.mixins.json
+2
-2
No files found.
CHANGELOG.md
View file @
9405b2c2
...
...
@@ -17,6 +17,7 @@ All notable changes to **CreatureChat** are documented in this file. The format
### Fixed
-
Changing death message timestamp output to use DEBUG log level
-
Bug with build causing issues with 1.20, 1.20.1 builds (wrong minimum version set in fabric.mod.json)
## [1.2.1] - 2025-01-01
...
...
src/client/java/com/owlmaddie/mixin/client/MixinPlayerSkinTexture
1202Plus
.java
→
src/client/java/com/owlmaddie/mixin/client/MixinPlayerSkinTexture.java
View file @
9405b2c2
...
...
@@ -17,12 +17,12 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
* loading custom player icons in the unused UV coordinates of the player skin image.
*/
@Mixin
(
PlayerSkinTexture
.
class
)
public
abstract
class
MixinPlayerSkinTexture
1202Plus
extends
ResourceTexture
implements
IPlayerSkinTexture
{
public
abstract
class
MixinPlayerSkinTexture
extends
ResourceTexture
implements
IPlayerSkinTexture
{
@Unique
private
NativeImage
cachedSkinImage
;
public
MixinPlayerSkinTexture
1202Plus
(
Identifier
location
)
{
public
MixinPlayerSkinTexture
(
Identifier
location
)
{
super
(
location
);
}
...
...
src/client/resources/creaturechat.client.mixins.json
View file @
9405b2c2
...
...
@@ -5,13 +5,13 @@
"client"
:
[
"EntityRendererMixin"
,
"MixinPlayerCustomTexture"
,
"MixinPlayerSkinTexture
1202Plus
"
"MixinPlayerSkinTexture"
],
"env"
:
{
"client.MixinPlayerCustomTexture"
:
{
"minVersion"
:
"1.20"
},
"client.MixinPlayerSkinTexture
1202Plus
"
:
{
"client.MixinPlayerSkinTexture"
:
{
"minVersion"
:
"1.20"
}
},
...
...
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