Skip to content

Commit

Permalink
Fixed flower pot not rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
North-West-Wind committed Dec 14, 2020
1 parent db18e9e commit 45c4435
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '1.3.0-1.16.x'
version = '1.3.1-1.16.x'
group = 'com.northwestwind.moreboots' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'moreboots'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public static void registerBlocks(final RegistryEvent.Register<Block> event) {
else if(block instanceof EndRodBlock) newBlock = new VanishingEndRodBlock(block);
else if(block instanceof FenceBlock) newBlock = new VanishingFenceBlock(block);
else if(block instanceof FenceGateBlock) newBlock = new VanishingFenceGateBlock(block);
else if(block instanceof FlowerPotBlock) newBlock = new VanishingFlowerPotBlock((FlowerPotBlock) block);
//else if(block instanceof FlowerPotBlock) newBlock = new VanishingFlowerPotBlock((FlowerPotBlock) block);
else if(block instanceof LadderBlock) newBlock = new VanishingLadderBlock(block);
else if(block instanceof LanternBlock) newBlock = new VanishingLanternBlock(block);
else if(block instanceof PaneBlock) newBlock = new VanishingPaneBlock(block);
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ issueTrackerURL="https://github.com/North-West-Wind/MoreBoots/issues"

[[mods]]
modId="moreboots"
version="1.3.0"
version="1.3.1"
displayName="More Boots"
updateJSONURL="https://github.com/North-West-Wind/MoreBoots/raw/main/update.json"
displayURL="https://github.com/North-West-Wind/MoreBoots"
Expand Down
28 changes: 16 additions & 12 deletions update.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,41 @@
"1.0.1": "Fixed furnace recipe",
"1.1.0": "Week #1 Update",
"1.2.0": "Week #2 Update",
"1.3.0": "Week #3 Update"
"1.3.0": "Week #3 Update",
"1.3.1": "Fixed flower pot not rendering"
},
"1.16.3": {
"1.0.0": "The very first release",
"1.0.1": "Fixed furnace recipe",
"1.1.0": "Week #1 Update",
"1.2.0": "Week #2 Update",
"1.3.0": "Week #3 Update"
"1.3.0": "Week #3 Update",
"1.3.1": "Fixed flower pot not rendering"
},
"1.16.2": {
"1.0.0": "The very first release",
"1.0.1": "Fixed furnace recipe",
"1.1.0": "Week #1 Update",
"1.2.0": "Week #2 Update",
"1.3.0": "Week #3 Update"
"1.3.0": "Week #3 Update",
"1.3.1": "Fixed flower pot not rendering"
},
"1.16.1": {
"1.0.0": "The very first release",
"1.0.1": "Fixed furnace recipe",
"1.1.0": "Week #1 Update",
"1.2.0": "Week #2 Update",
"1.3.0": "Week #3 Update"
"1.3.0": "Week #3 Update",
"1.3.1": "Fixed flower pot not rendering"
},
"promos": {
"1.16.4-latest": "1.3.0",
"1.16.4-recommended": "1.3.0",
"1.16.3-latest": "1.3.0",
"1.16.3-recommended": "1.3.0",
"1.16.2-latest": "1.3.0",
"1.16.2-recommended": "1.3.0",
"1.16.1-latest": "1.3.0",
"1.16.1-recommended": "1.3.0"
"1.16.4-latest": "1.3.1",
"1.16.4-recommended": "1.3.1",
"1.16.3-latest": "1.3.1",
"1.16.3-recommended": "1.3.1",
"1.16.2-latest": "1.3.1",
"1.16.2-recommended": "1.3.1",
"1.16.1-latest": "1.3.1",
"1.16.1-recommended": "1.3.1"
}
}

0 comments on commit 45c4435

Please sign in to comment.