Skip to content

Commit 36b7f55

Browse files
committed
2.0.4
1 parent 870633a commit 36b7f55

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

changelog.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,6 @@
4747
- And i forgot the dye color sorry im rushing
4848
1.21.1-2.0.3: |
4949
- Updated chinese localisation for 1.21.1
50+
1.21.1-2.0.4: |
51+
- Fixed create ponder registering twice
5052
...

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ mod_name=Create: Pattern Schematics
3434
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
3535
mod_license=All Rights Reserved
3636
# The mod version. See https://semver.org/
37-
mod_version=2.0.3
37+
mod_version=2.0.4
3838
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
3939
# This should match the base package used for the mod sources.
4040
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
package com.cak.pattern_schematics;
22

3+
import com.cak.pattern_schematics.content.ponder.PatternSchematicsPonderPlugin;
34
import com.cak.pattern_schematics.foundation.mirror.PatternSchematicHandler;
4-
import com.cak.pattern_schematics.registry.PlatformPackets;
5-
import com.simibubi.create.foundation.ponder.CreatePonderPlugin;
65
import net.createmod.ponder.foundation.PonderIndex;
76

87
public class PatternSchematicsClient {
@@ -11,7 +10,7 @@ public class PatternSchematicsClient {
1110
public static PatternSchematicHandler PATTERN_SCHEMATIC_HANDLER;
1211

1312
public static void init() {
14-
PonderIndex.addPlugin(new CreatePonderPlugin());
13+
PonderIndex.addPlugin(new PatternSchematicsPonderPlugin());
1514
}
1615

1716
}

src/main/java/com/cak/pattern_schematics/PatternSchematicsForgeClient.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ public PatternSchematicsForgeClient() {
1818
public static void onInitializeClient() {
1919
PatternSchematicsClient.PATTERN_SCHEMATIC_HANDLER = PATTERN_SCHEMATICS_HANDLER_FORGE;
2020
PatternSchematicsClient.init();
21-
PonderIndex.addPlugin(new PatternSchematicsPonderPlugin());
2221
}
2322

2423
}

src/main/java/com/cak/pattern_schematics/content/ponder/PatternSchematicsPonderPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public void registerScenes(PonderSceneRegistrationHelper<ResourceLocation> helpe
2323

2424
@Override
2525
public void registerTags(PonderTagRegistrationHelper<ResourceLocation> helper) {
26-
PatternSchematicsPonderTags.register(helper);
26+
PatternSchematicsPonderTags.registerTags(helper);
2727
}
2828

2929
@Override

src/main/java/com/cak/pattern_schematics/content/ponder/PatternSchematicsPonderTags.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ private static ResourceLocation loc(String id) {
1414
return PatternSchematics.asResource(id);
1515
}
1616

17-
public static void register(PonderTagRegistrationHelper<ResourceLocation> helper) {
17+
public static void registerTags(PonderTagRegistrationHelper<ResourceLocation> helper) {
1818
PonderTagRegistrationHelper<RegistryEntry<?, ?>> HELPER = helper.withKeyFunction(RegistryEntry::getId);
1919

2020
helper.registerTag(PATTERN_SCHEMATICS)

0 commit comments

Comments
 (0)