Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/1.10.2-dev' into 1.…
Browse files Browse the repository at this point in the history
…10.2-master
  • Loading branch information
whichonespink44 committed May 22, 2017
2 parents 15e7d62 + e69df02 commit cf0c8e7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
mod_id=passableleaves
mod_name=Passable Leaves
mod_desc=Minecraft core mod that makes leaves passable.
mod_version=4.1.0.0
mod_version=4.1.0.1
mc_version=1.10.2
mod_url=https://github.com/Team-RTG/PassableLeaves
mod_author="Team RTG"
mod_creds="Based on code donated by HellFirePvP for the Appalachia mod."
mod_creds=Based on code donated by HellFirePvP for the Appalachia mod.
mod_logo=assets/passableleaves/logo.png
mcf_version=12.18.2.2099
mcf_minver=12.18.1.2011
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/passableleaves/core/PLCore.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
import net.minecraftforge.fml.common.FMLLog;
import net.minecraftforge.fml.relauncher.IFMLLoadingPlugin;

import passableleaves.reference.ModInfo;

/**
* This class was originally written by HellFirePvP for the Appalachia addon for RTG.
* It was extracted from Appalachia by WhichOnesPink so that it could be a standalone mod.
Expand All @@ -14,7 +16,7 @@
* Date: 12.02.2017 / 15:23
*/
@IFMLLoadingPlugin.Name(value = "PLCore")
@IFMLLoadingPlugin.MCVersion(value = "1.10.2")
@IFMLLoadingPlugin.MCVersion(value = ModInfo.MC_VERSION)
@IFMLLoadingPlugin.TransformerExclusions({"passableleaves.core"})
@IFMLLoadingPlugin.SortingIndex(1001)
public class PLCore implements IFMLLoadingPlugin {
Expand Down
1 change: 1 addition & 0 deletions src/main/java/passableleaves/reference/ModInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ public class ModInfo
public static final String MOD_ID = "passableleaves";
public static final String MOD_NAME = "Passable Leaves";
public static final String MOD_VERSION = "@MOD_VERSION@";
public static final String MC_VERSION = "1.10.2";
public static final String MCF_MINVER = "0.0-MCF+MINVER";
public static final String MCF_MAXVER = "9001.0-MCF+MAXVER";
public static final String CONFIG_DIRECTORY = "PassableLeaves";
Expand Down

0 comments on commit cf0c8e7

Please sign in to comment.