Skip to content

Commit 661fc74

Browse files
authored
Wooden brick form fix (#799)
* set maxstacksize for wooden brick form * fix/update bs
1 parent 147d981 commit 661fc74

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

gradle.properties

+6-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
gtnh.settings.blowdryerTag = 0.2.0
44

55
# Human-readable mod name, available for mcmod.info population.
6-
modName = GT: New Horizons
6+
modName = GT\: New Horizons
77

88
# Case-sensitive identifier string, available for mcmod.info population and used for automatic mixin JSON generation.
99
# Conventionally lowercase.
@@ -33,7 +33,7 @@ channel = stable
3333
mappingsVersion = 12
3434

3535
# Defines other MCP mappings for dependency deobfuscation.
36-
remoteMappings = https://raw.githubusercontent.com/MinecraftForge/FML/1.7.10/conf/
36+
remoteMappings = https\://raw.githubusercontent.com/MinecraftForge/FML/1.7.10/conf/
3737

3838
# Select a default username for testing your mod. You can always override this per-run by running
3939
# `./gradlew runClient --username=AnotherPlayer`, or configuring this command in your IDE.
@@ -61,6 +61,9 @@ gradleTokenModId =
6161
# [DEPRECATED] Mod name replacement token.
6262
gradleTokenModName =
6363

64+
# [DEPRECATED] Mod Group replacement token.
65+
gradleTokenGroupName =
66+
6467
# [DEPRECATED]
6568
# Multiple source files can be defined here by providing a comma-separated list: Class1.java,Class2.java,Class3.java
6669
# public static final String VERSION = "GRADLETOKEN_VERSION";
@@ -123,7 +126,7 @@ includeWellKnownRepositories = true
123126
usesMavenPublishing = true
124127

125128
# Maven repository to publish the mod to.
126-
# mavenPublishUrl = https://nexus.gtnewhorizons.com/repository/releases/
129+
# mavenPublishUrl = https\://nexus.gtnewhorizons.com/repository/releases/
127130

128131
# Publishing to Modrinth requires you to set the MODRINTH_TOKEN environment variable to your current Modrinth API token.
129132
#
@@ -187,5 +190,3 @@ customArchiveBaseName = GTNewHorizonsCoreMod
187190
# This is meant to be set in $HOME/.gradle/gradle.properties.
188191
# ideaCheckSpotlessOnBuild = true
189192

190-
# Non-GTNH properties
191-
gradleTokenGroupName =

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pluginManagement {
1717
}
1818

1919
plugins {
20-
id 'com.gtnewhorizons.gtnhsettingsconvention' version '1.0.8'
20+
id 'com.gtnewhorizons.gtnhsettingsconvention' version '1.0.12'
2121
}
2222

2323

src/main/java/com/dreammaster/item/WoodenBrickForm.java

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ public WoodenBrickForm(String pItemName, String pCreativeTab) {
4646
super.setTextureName(String.format("%s:item%s", Refstrings.MODID, _mItemName));
4747
super.setUnlocalizedName(_mItemName);
4848
super.setMaxDamage(maxDurability);
49+
super.setMaxStackSize(1);
4950
}
5051

5152
@Override

0 commit comments

Comments
 (0)