Skip to content

Commit 27a1b60

Browse files
committed
Grade bump -> republished
1 parent d5cd082 commit 27a1b60

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

changelog.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,7 @@
1414
1.20.1-1.1.10: |
1515
- Fixed signal placement bug
1616
1.20.1-1.1.11: |
17-
- Changed changed creative mode tab ordering (Also should help for when latest create releases)
17+
- Changed creative mode tab ordering (Also should help for when latest create releases)
18+
- Changed to use correct gradle version
19+
1820
...

common/src/main/java/com/cak/pattern_schematics/mixin/CreateCreativeModeTabMixin.java

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public class CreateCreativeModeTabMixin {
1414
@Redirect(method = "collectItems", at = @At(value = "INVOKE", target = "Ljava/util/List;add(Ljava/lang/Object;)Z"))
1515
private boolean addAdditionalItemInject(List<Item> instance, Object element) {
1616
Item itemToAdd = (Item) element;
17+
//Ensure execution order, add the instance then add other
1718
boolean result = instance.add(itemToAdd);
1819

1920
if (

forge-updates.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"homepage": "https://modrinth.com/mod/create-pattern-schematics",
33
"promos": {
4-
"1.20.1-recommended": "1.1.9",
5-
"1.20.1-latest": "1.1.9"
4+
"1.20.1-recommended": "1.1.11",
5+
"1.20.1-latest": "1.1.11"
66
}
77
}

0 commit comments

Comments
 (0)