Skip to content

Commit d48ec15

Browse files
authored
24w36a (#4068)
* 24w36a * Some fixes * More work * Fixes * Update yarn * Update fabric loader * Bump versions
1 parent 2ade441 commit d48ec15

File tree

127 files changed

+492
-942
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+492
-942
lines changed

deprecated/fabric-command-api-v1/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"FabricMC"
1717
],
1818
"depends": {
19-
"fabricloader": ">=0.16.3",
19+
"fabricloader": ">=0.16.4",
2020
"fabric-api-base": "*",
2121
"fabric-command-api-v2": "*"
2222
},

deprecated/fabric-commands-v0/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"FabricMC"
1717
],
1818
"depends": {
19-
"fabricloader": ">=0.16.3",
19+
"fabricloader": ">=0.16.4",
2020
"fabric-api-base": "*",
2121
"fabric-command-api-v2": "*"
2222
},

deprecated/fabric-convention-tags-v1/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
]
2222
},
2323
"depends": {
24-
"fabricloader": ">=0.16.3",
24+
"fabricloader": ">=0.16.4",
2525
"minecraft": ">=1.18.2"
2626
},
2727
"description": "Contains common tags used by mods for vanilla things.",

deprecated/fabric-keybindings-v0/src/client/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"FabricMC"
1717
],
1818
"depends": {
19-
"fabricloader": ">=0.16.3",
19+
"fabricloader": ">=0.16.4",
2020
"fabric-key-binding-api-v1": "*"
2121
},
2222
"description": "Keybinding registry API.",

deprecated/fabric-loot-api-v2/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"FabricMC"
1717
],
1818
"depends": {
19-
"fabricloader": ">=0.16.3",
19+
"fabricloader": ">=0.16.4",
2020
"fabric-api-base": "*",
2121
"fabric-resource-loader-v0": "*"
2222
},

deprecated/fabric-rendering-data-attachment-v1/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"FabricMC"
1717
],
1818
"depends": {
19-
"fabricloader": ">=0.16.3",
19+
"fabricloader": ">=0.16.4",
2020
"fabric-block-view-api-v2": "*"
2121
},
2222
"description": "Thread-safe hooks for block entity data use during terrain rendering.",

deprecated/fabric-rendering-v0/src/client/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
]
2222
},
2323
"depends": {
24-
"fabricloader": ">=0.16.3",
24+
"fabricloader": ">=0.16.4",
2525
"minecraft": ">=1.15-alpha.19.39.a",
2626
"fabric-api-base": "*",
2727
"fabric-rendering-v1": "*"

fabric-api-base/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"FabricMC"
1717
],
1818
"depends": {
19-
"fabricloader": ">=0.16.3"
19+
"fabricloader": ">=0.16.4"
2020
},
2121
"description": "Contains the essentials for Fabric API modules.",
2222
"custom": {

fabric-api-lookup-api-v1/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"FabricMC"
1717
],
1818
"depends": {
19-
"fabricloader": ">=0.16.3",
19+
"fabricloader": ">=0.16.4",
2020
"fabric-api-base": "*",
2121
"fabric-lifecycle-events-v1": "*"
2222
},

fabric-api-lookup-api-v1/src/testmod/java/net/fabricmc/fabric/test/lookup/FabricApiLookupTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,19 +46,19 @@ public class FabricApiLookupTest implements ModInitializer {
4646
// It's meant to work with unsided containers: chests, dispensers, droppers and hoppers.
4747
public static final RegistryKey<Block> CHUTE_BLOCK_KEY = keyOf("chute");
4848
public static final ChuteBlock CHUTE_BLOCK = new ChuteBlock(AbstractBlock.Settings.create().registryKey(CHUTE_BLOCK_KEY));
49-
public static final BlockItem CHUTE_ITEM = new BlockItem(CHUTE_BLOCK, new Item.Settings());
49+
public static final BlockItem CHUTE_ITEM = new BlockItem(CHUTE_BLOCK, new Item.Settings().registryKey(RegistryKey.of(RegistryKeys.ITEM, CHUTE_BLOCK_KEY.getValue())));
5050
public static BlockEntityType<ChuteBlockEntity> CHUTE_BLOCK_ENTITY_TYPE;
5151
// Cobble gen - Block without model that can generate infinite cobblestone when placed above a chute.
5252
// It's meant to test BlockApiLookup#registerSelf.
5353
public static final RegistryKey<Block> COBBLE_GEN_BLOCK_KEY = keyOf("cobble_gen");
5454
public static final CobbleGenBlock COBBLE_GEN_BLOCK = new CobbleGenBlock(AbstractBlock.Settings.create().registryKey(COBBLE_GEN_BLOCK_KEY));
55-
public static final BlockItem COBBLE_GEN_ITEM = new BlockItem(COBBLE_GEN_BLOCK, new Item.Settings());
55+
public static final BlockItem COBBLE_GEN_ITEM = new BlockItem(COBBLE_GEN_BLOCK, new Item.Settings().registryKey(RegistryKey.of(RegistryKeys.ITEM, COBBLE_GEN_BLOCK_KEY.getValue())));
5656
public static BlockEntityType<CobbleGenBlockEntity> COBBLE_GEN_BLOCK_ENTITY_TYPE;
5757
// Testing for item api lookups is done in the `item` package.
5858

5959
public static final RegistryKey<Block> INSPECTOR_BLOCK_KEY = keyOf("inspector");
6060
public static final InspectorBlock INSPECTOR_BLOCK = new InspectorBlock(AbstractBlock.Settings.create().registryKey(INSPECTOR_BLOCK_KEY));
61-
public static final BlockItem INSPECTOR_ITEM = new BlockItem(INSPECTOR_BLOCK, new Item.Settings());
61+
public static final BlockItem INSPECTOR_ITEM = new BlockItem(INSPECTOR_BLOCK, new Item.Settings().registryKey(RegistryKey.of(RegistryKeys.ITEM, INSPECTOR_BLOCK_KEY.getValue())));
6262

6363
private static RegistryKey<Block> keyOf(String id) {
6464
return RegistryKey.of(RegistryKeys.BLOCK, Identifier.of(MOD_ID, id));

0 commit comments

Comments
 (0)