Skip to content

Commit

Permalink
Adds readme with install and modpack instructions as well as moving t…
Browse files Browse the repository at this point in the history
…o a com.matjojo package instead of net.fabricmc
  • Loading branch information
matjojo committed May 5, 2019
1 parent 14312ce commit fe32f03
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 19 deletions.
19 changes: 19 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#Desire Paths

A desire path is a path created as a consequence of erosion caused by human or animal foot-fall traffic. The path usually represents the shortest or most easily navigated route between an origin and destination.
___

Have you even needed to make path blocks on the walk from your base to the mine? Have you ever thought, in real live this is automatic? Than this is the mod for you. Walk over a Grass, Dirt, Podzol or Mycelium block often enough and you'll trample it into a path block automatically!

![Like this!](https://i.imgur.com/iPEcfkI.jpg)


#How to install
1. Download and install fabric from the how to install page here [https://fabricmc.net/wiki/install](https://fabricmc.net/wiki/install).
2. Download the fabric api jar from here [https://minecraft.curseforge.com/projects/fabric](https://minecraft.curseforge.com/projects/fabric).
3. Download the newest version that corresponds to the minecraft and fabric version you have from [this page.](https://github.com/matjojo/desire-paths/releases)
4. Move both .jar files to your mods folder. It will be in `.minecraft/mods` If you are using multiMC you can select `Minecraft Folder` from the right mouse menu on the instance that you made in step one to get to the `.minecraft` folder easily.

#Modpack use
- Singleplayer: You can just add both the fabric and the mod jar files to any fabric modpack.
- Multiplayer: You'll want to add both the jars to the server at least. Technically the mods works when only on the server, but it will be a bit janky. You're best off also adding them to the client.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package net.fabricmc.desire_paths.data.Blocks;
package com.matjojo.desire_paths.data.Blocks;

import net.fabricmc.desire_paths.data.DesirePathsDataHolder;
import com.matjojo.desire_paths.data.DesirePathsDataHolder;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.state.StateFactory;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package net.fabricmc.desire_paths.data.Blocks;
package com.matjojo.desire_paths.data.Blocks;

import net.fabricmc.desire_paths.data.DesirePathsDataHolder;
import com.matjojo.desire_paths.data.DesirePathsDataHolder;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.block.SnowyBlock;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.fabricmc.desire_paths.data;
package com.matjojo.desire_paths.data;

import net.minecraft.block.BlockState;
import net.minecraft.entity.player.PlayerEntity;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package net.fabricmc.desire_paths.mixin;
package com.matjojo.desire_paths.mixin;


import net.fabricmc.desire_paths.data.DesirePathsDataHolder;
import com.matjojo.desire_paths.data.DesirePathsDataHolder;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.block.SpreadableBlock;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package net.fabricmc.desire_paths.mixin;
package com.matjojo.desire_paths.mixin;


import net.fabricmc.desire_paths.data.DesirePathsDataHolder;
import com.matjojo.desire_paths.data.DesirePathsDataHolder;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.block.SpreadableBlock;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package net.fabricmc.desire_paths.mixin;
package com.matjojo.desire_paths.mixin;

import net.fabricmc.desire_paths.data.DesirePathsDataHolder;
import com.matjojo.desire_paths.data.DesirePathsDataHolder;
import net.minecraft.block.BlockState;
import net.minecraft.block.Blocks;
import net.minecraft.entity.Entity;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package net.fabricmc.desire_paths.mixin;
package com.matjojo.desire_paths.mixin;

import net.fabricmc.desire_paths.data.Blocks.GenericTrampleable;
import net.fabricmc.desire_paths.data.Blocks.SnowyTrampleable;
import net.fabricmc.desire_paths.data.DesirePathsDataHolder;
import com.matjojo.desire_paths.data.Blocks.GenericTrampleable;
import com.matjojo.desire_paths.data.Blocks.SnowyTrampleable;
import com.matjojo.desire_paths.data.DesirePathsDataHolder;
import net.fabricmc.fabric.api.block.FabricBlockSettings;
import net.minecraft.block.Block;
import net.minecraft.block.Material;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/desire-paths.mixins.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"required": true,
"package": "net.fabricmc.desire_paths.mixin",
"package": "com.matjojo.desire_paths.mixin",
"compatibilityLevel": "JAVA_8",
"mixins": [
"OnGrassBlockAppendPropertiesMixin",
Expand Down
3 changes: 0 additions & 3 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@
"fabricloader": ">=0.4.0",
"fabric": "*"
},
"suggests": {
"flamingo": "*"
},
"custom": {
"modmenu:clientsideOnly": false
}
Expand Down

0 comments on commit fe32f03

Please sign in to comment.