Skip to content

Commit

Permalink
Merge branch 'master' into 1.21.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AViewFromTheTop committed Feb 18, 2025
2 parents cab34a9 + f032ae3 commit c093617
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:flower_pot"
}
],
"rolls": 1.0
},
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wilderwild:frozen_fern"
}
],
"rolls": 1.0
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:flower_pot"
}
],
"rolls": 1.0
},
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wilderwild:frozen_short_grass"
}
],
"rolls": 1.0
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,8 @@ public void generate() {
this.dropPottedContents(WWBlocks.POTTED_WILDFLOWERS);
this.dropPottedContents(WWBlocks.POTTED_PHLOX);
this.dropPottedContents(WWBlocks.POTTED_LANTANAS);
this.dropPottedContents(WWBlocks.POTTED_FROZEN_SHORT_GRASS);
this.dropPottedContents(WWBlocks.POTTED_FROZEN_FERN);

this.dropSelf(WWBlocks.NULL_BLOCK);
this.dropSelf(WWBlocks.CHISELED_MUD_BRICKS);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "wilderwild:block/potted_frozen_short_grass"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:block/flower_pot_cross",
"textures": {
"plant": "wilderwild:block/potted_frozen_short_grass"
}
}

0 comments on commit c093617

Please sign in to comment.