fixes #197
add namespace of original item/ block to autogen item/block id
This commit is contained in:
parent
714cae5bd0
commit
f47931d00d
2 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ public class DimensionalDoorBlockRegistrar {
|
|||
}
|
||||
|
||||
private void register(Identifier identifier, Block original, BiFunction<AbstractBlock.Settings, Block, ? extends Block> constructor) {
|
||||
Identifier gennedId = new Identifier("dimdoors", PREFIX + identifier.getPath());
|
||||
Identifier gennedId = new Identifier("dimdoors", PREFIX + identifier.getNamespace() + "_" + identifier.getPath());
|
||||
Block dimBlock = Registry.register(registry, gennedId, constructor.apply(FabricBlockSettings.copy(original), original));
|
||||
ModBlockEntityTypes.ENTRANCE_RIFT.addBlock(dimBlock);
|
||||
mappedDoorBlocks.put(gennedId, identifier);
|
||||
|
|
|
@ -112,7 +112,7 @@ public class DimensionalDoorItemRegistrar {
|
|||
}
|
||||
|
||||
private void register(Identifier identifier, Item original, BlockItem dimItem) {
|
||||
Identifier gennedId = new Identifier("dimdoors", PREFIX + identifier.getPath());
|
||||
Identifier gennedId = new Identifier("dimdoors", PREFIX + identifier.getNamespace() + "_" + identifier.getPath());
|
||||
if (!DoorData.PARENT_ITEMS.contains(original)) {
|
||||
Registry.register(registry, gennedId, dimItem);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue