Skip to content

Commit 81215a5

Browse files
committed
Readd box, trash can and cooking pot particles
Signed-off-by: Joseph T. McQuigg <[email protected]>
1 parent ff5272f commit 81215a5

File tree

7 files changed

+39
-4
lines changed

7 files changed

+39
-4
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"variants": {
3+
"": {
4+
"model": "generations_core:block/box"
5+
}
6+
}
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"variants": {
3+
"": {
4+
"model": "generations_core:block/cooking_pot"
5+
}
6+
}
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"variants": {
3+
"": {
4+
"model": "generations_core:block/trash_can"
5+
}
6+
}
7+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"textures": {
3+
"particle": "generations_core:item/blocks/utility_blocks/box"
4+
}
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"textures": {
3+
"particle": "generations_core:item/blocks/utility_blocks/cooking_pot"
4+
}
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"textures": {
3+
"particle": "generations_core:item/blocks/utility_blocks/trash_can"
4+
}
5+
}

forge/src/main/java/generations/gg/generations/core/generationscore/forge/datagen/generators/blocks/BlockDatagen.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -369,10 +369,9 @@ public void registerStatesAndModels() {
369369
GenerationsShrines.SHRINES.forEach(block -> registerBlockItemParticle(block.get(), "shrines"));
370370
GenerationsUtilityBlocks.BALL_LOOTS.forEach(block -> registerBlockItemParticle(block.get(), "ball_loots"));
371371
// GenerationsUtilityBlocks.PC_BLOCKS.forEach(block -> registerBlockItemParticle(block.get().getBlock(), "utility_blocks/pc"));
372-
//registerBlockItemParticle(GenerationsUtilityBlocks.TRASH_CAN, "utility_blocks");
373-
//registerBlockItemParticle(GenerationsUtilityBlocks.BREEDER, "utility_blocks");
374-
//registerBlockItemParticle(GenerationsUtilityBlocks.BOX, "utility_blocks");
375-
//registerBlockItemParticle(GenerationsUtilityBlocks.COOKING_POT, "utility_blocks");
372+
registerBlockItemParticle(GenerationsUtilityBlocks.TRASH_CAN.get(), "utility_blocks");
373+
registerBlockItemParticle(GenerationsUtilityBlocks.BOX.get(), "utility_blocks");
374+
registerBlockItemParticle(GenerationsUtilityBlocks.COOKING_POT.get(), "utility_blocks");
376375
//registerNoModel(GenerationsUtilityBlocks.PC);
377376
//registerNoModel(GenerationsUtilityBlocks.CLOCK);
378377
//registerNoModel(GenerationsUtilityBlocks.HEALER);

0 commit comments

Comments
 (0)