Skip to content

Commit a458065

Browse files
committed
build(version): 1.1.24->1.1.25
1 parent 30b5ddc commit a458065

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ neogradle.subsystems.parchment.mappingsVersion=2024.07.28
1111
mod_id=nitrogen_internals
1212
mod_group=com.aetherteam.nitrogen
1313
mod_name=Nitrogen
14-
mod_version=1.1.24
14+
mod_version=1.1.25
1515
mod_license=Assets: All Rights Reserved; Code: LGPL-3.0
1616
mod_url=https://github.com/The-Aether-Team/Nitrogen
1717
mod_tracker=https://github.com/The-Aether-Team/Nitrogen/issues

src/main/java/com/aetherteam/nitrogen/data/providers/NitrogenBlockStateProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public void logWallBlock(WallBlock block, Block baseBlock, String location, Stri
196196
}
197197

198198
public void logWallBlockTop(WallBlock block, Block baseBlock, Block topBlock, String location, String modid, boolean postUsesTop, ModelFile postBig, ModelFile postShort, ModelFile postTall, ModelFile side, ModelFile sideAlt, ModelFile sideTall, ModelFile sideTallAlt, ModelFile sideShort, ModelFile sideAltShort, ModelFile sideTallShort, ModelFile sideTallAltShort) {
199-
this.logWallBlockInternal(block, this.name(block), ResourceLocation.fromNamespaceAndPath(modid, "block/" + location + this.name(baseBlock)), ResourceLocation.fromNamespaceAndPath(modid, "block/" + location + this.name(topBlock)), postUsesTop, postBig, postShort, postTall, side, sideAlt, sideTall, sideTallAlt, sideShort, sideAltShort, sideTallShort, sideTallAltShort);
199+
this.logWallBlockInternal(block, this.name(block), ResourceLocation.fromNamespaceAndPath(modid, "block/" + location + this.name(baseBlock)), ResourceLocation.fromNamespaceAndPath(modid, "block/" + location + this.name(topBlock) + "_top"), postUsesTop, postBig, postShort, postTall, side, sideAlt, sideTall, sideTallAlt, sideShort, sideAltShort, sideTallShort, sideTallAltShort);
200200
}
201201

202202
private void logWallBlockInternal(WallBlock block, String baseName, ResourceLocation texture, ResourceLocation topTexture, boolean postUsesTop, ModelFile postBig, ModelFile postShort, ModelFile postTall, ModelFile side, ModelFile sideAlt, ModelFile sideTall, ModelFile sideTallAlt, ModelFile sideShort, ModelFile sideAltShort, ModelFile sideTallShort, ModelFile sideTallAltShort) {

src/main/java/com/aetherteam/nitrogen/data/providers/NitrogenItemModelProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public void translucentItemWallBlock(Block block, Block baseBlock, String locati
154154

155155
public void itemLogWallBlock(Block block, Block baseBlock, Block topBlock, String location, String modid) {
156156
ResourceLocation baseTexture = ResourceLocation.fromNamespaceAndPath(modid, "block/" + location + this.blockName(baseBlock));
157-
ResourceLocation topTexture = ResourceLocation.fromNamespaceAndPath(modid, "block/" + location + this.blockName(topBlock));
157+
ResourceLocation topTexture = ResourceLocation.fromNamespaceAndPath(modid, "block/" + location + this.blockName(topBlock) + "_top");
158158
this.itemLogWallBlock(block, baseTexture, topTexture);
159159
}
160160

0 commit comments

Comments
 (0)