Skip to content

Commit

Permalink
Fixed missing wumpleutil curseforge dep, cleanup, version increase
Browse files Browse the repository at this point in the history
  • Loading branch information
Stormwind99 committed Jan 16, 2020
1 parent ba58b16 commit 9d42f27
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ mod_description="Copy Map item data to other Maps including different scale Maps
mod_logo="logo.png"
mod_credits="Stormwind99"
//mod_dependencies=""
mod_dependencies="\"mod_MinecraftForge\""
mod_dependencies="\"mod_MinecraftForge\", \"wumpleutil\""
mod_authors="\"${github_owner}\""
mod_author="${github_owner}"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@

public class PantographBlock extends Block // PORT extends HorizontalOrientableBlock
{
protected VoxelShape shape;

// ----------------------------------------------------------------------
// BlockPantograph

Expand All @@ -50,7 +48,6 @@ public PantographBlock()
setRegistryName(ID);
}


// ------------------------------------------------------------------------
// for horizontal orientable block

Expand All @@ -77,7 +74,7 @@ protected void fillStateContainer(StateContainer.Builder<Block, BlockState> buil

protected VoxelShape buildShape()
{
// exported by loading model into Blockbench then using Mod Utils plugins
// exported by loading model into Blockbench then using Mod Utils plugins to export VoxelShape
// followed by manual fix-up

Optional<VoxelShape> a = Stream.of(Block.makeCuboidShape(1, 2, 8, 2, 3, 9), Block.makeCuboidShape(1, 2, 2, 2, 3, 3),
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 @@ -50,7 +50,7 @@ description="${mod_description}"
versionRange="[${config.mc_version}]"
ordering="NONE"
side="BOTH"
[[dependencies.pantography]]
[[dependencies.${mod_id}]]
modId="wumpleutil"
mandatory=true
versionRange="[3.0,)"
Expand Down
5 changes: 3 additions & 2 deletions update.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"homepage": "https://github.com/Stormwind99/Pantography",
"promos": {
"1.14.4-latest": "3.0.9",
"1.14.4-recommended": "3.0.9",
"1.14.4-latest": "3.0.10",
"1.14.4-recommended": "3.0.10",
"1.12.2-latest": "2.0.2",
"1.12.2-recommended": "2.0.2",
"1.7.10-latest": "1.0.1",
"1.7.10-recommended": "1.0.1"
},
"1.14.4": {
"3.0.10": "Fix Curseforge dependencies to add WumpleUtil",
"3.0.9": "Fix Curseforge dependencies to add WumpleUtil",
"3.0.8": "Switched to VoxelShapes rendering to fix rendering pantograph next to another block",
"3.0.7": "Fix rendering pantograph next to another block",
Expand Down
4 changes: 2 additions & 2 deletions version.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#Automated build number increase
#Mon Jan 13 21:30:21 CST 2020
BUILD_NUMBER=272
#Wed Jan 15 13:14:38 CST 2020
BUILD_NUMBER=283

0 comments on commit 9d42f27

Please sign in to comment.