Skip to content

Commit 7d538fd

Browse files
committed
update to 1.21.5
1 parent 1d79a91 commit 7d538fd

6 files changed

Lines changed: 9 additions & 14 deletions

File tree

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ org.gradle.jvmargs=-Xmx3G
44
org.gradle.daemon=false
55
## Environment Properties
66
# The Minecraft version must agree with the Forge version to get a valid artifact
7-
minecraft_version=1.21.4
7+
minecraft_version=1.21.5
88
# The Minecraft version range can use any release version of Minecraft as bounds.
99
# Snapshots, pre-releases, and release candidates are not guaranteed to sort properly
1010
# as they do not follow standard versioning conventions.
11-
minecraft_version_range=[1.21.4,1.22)
11+
minecraft_version_range=[1.21.5,1.22)
1212
# The Forge version must agree with the Minecraft version to get a valid artifact
13-
forge_version=54.0.1
13+
forge_version=55.0.9
1414
# The Forge version range can use any version of Forge as bounds or match the loader version range
1515
forge_version_range=[0,)
1616
# The loader version range can only use the major version of Forge/FML as bounds
@@ -32,7 +32,7 @@ loader_version_range=[0,)
3232
mapping_channel=official
3333
# The mapping version to query from the mapping channel.
3434
# This must match the format required by the mapping channel.
35-
mapping_version=1.21.4
35+
mapping_version=1.21.5
3636
## Mod Properties
3737
# The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63}
3838
# Must match the String constant located in the main mod class annotated with @Mod.
@@ -42,7 +42,7 @@ mod_name=OfflineSkins
4242
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
4343
mod_license=MIT License
4444
# The mod version. See https://semver.org/
45-
mod_version=1.21.4-v1
45+
mod_version=1.21.5-v1
4646
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
4747
# This should match the base package used for the mod sources.
4848
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

gradle/wrapper/gradle-wrapper.jar

-130 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/java/lain/mods/skins/init/forge/Proxy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ ResourceLocation getLocationSkin(GameProfile profile) {
6767
ResourceLocation getOrCreateTexture(ByteBuffer data, ISkin skin) throws IOException {
6868
if (!textures.containsKey(data)) {
6969
ResourceLocation location = generateRandomLocation();
70-
Minecraft.getInstance().getTextureManager().register(location, new DynamicTexture(NativeImage.read(data)));
70+
Minecraft.getInstance().getTextureManager().register(location, new DynamicTexture(location::toString, NativeImage.read(data)));
7171
textures.put(data, location);
7272

7373
if (skin != null) {

0 commit comments

Comments
 (0)