Skip to content

Commit

Permalink
Fix andesite alloy can't grow in Botany Pots.
Browse files Browse the repository at this point in the history
  • Loading branch information
skniro committed Feb 5, 2025
1 parent 50fbeba commit 264ea56
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
],
"type": "botanypots:crop",
"seed": {
"item": "growable_ores:c_brass_ingot_cane"
"item": "growable_ores:c_andesite_alloy_cane"
},
"categories": [
"sand",
Expand All @@ -38,17 +38,17 @@
"growthTicks": 1200,
"display": [
{
"block": "growable_ores:c_brass_ingot_cane"
"block": "growable_ores:c_andesite_alloy_cane"
},
{
"block": "growable_ores:c_brass_ingot_cane"
"block": "growable_ores:c_andesite_alloy_cane"
}
],
"drops": [
{
"chance": 1.00,
"output": {
"item": "growable_ores:c_brass_ingot_cane"
"item": "growable_ores:c_andesite_alloy_cane"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion Forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ modId = "growable_ores" #mandatory
# The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
# ${file.jarVersion} will substitute the value of the Implementation-Version as read from the mod's JAR file metadata
# see the associated build.gradle script for how to populate this completely automatically during a build
version = "3.0.2-1.16.5-Forge" #mandatory
version = "3.0.3-1.16.5-Forge" #mandatory
# A display name for the mod
displayName = "Growable Ores" #mandatory
# A URL to query for updates for this mod. See the JSON update specification <here>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
],
"type": "botanypots:crop",
"seed": {
"item": "growable_ores:c_brass_ingot_cane"
"item": "growable_ores:c_andesite_alloy_cane"
},
"categories": [
"sand",
Expand All @@ -38,17 +38,17 @@
"growthTicks": 1200,
"display": [
{
"block": "growable_ores:c_brass_ingot_cane"
"block": "growable_ores:c_andesite_alloy_cane"
},
{
"block": "growable_ores:c_brass_ingot_cane"
"block": "growable_ores:c_andesite_alloy_cane"
}
],
"drops": [
{
"chance": 1.00,
"output": {
"item": "growable_ores:c_brass_ingot_cane"
"item": "growable_ores:c_andesite_alloy_cane"
}
}
]
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ loader_version=0.14.21
ae2_version=15.0.3-alpha

# Mod Properties
mod_version=3.0.2-1.16.5-Fabric
forge_mod_version=3.0.2-1.16.5-Forge
mod_version=3.0.3-1.16.5-Fabric
forge_mod_version=3.0.3-1.16.5-Forge
maven_group=com.skniro
archives_base_name=GrowableOres
mod_author=skniro
Expand Down

0 comments on commit 264ea56

Please sign in to comment.