Skip to content

Commit

Permalink
added acceptableRemoteVersions = "*"
Browse files Browse the repository at this point in the history
this allows players to delete the mod from the local storage if they choose to not use it.
  • Loading branch information
bartimaeusnek authored Jul 9, 2018
1 parent ae30c50 commit d1685f5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/com/gtnh/findit/FindIt.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@
modid = FindIt.MOD_ID,
name = FindIt.MOD_NAME,
version = FindIt.VERSION,
dependencies = "required-after:NotEnoughItems;required-after:gregtech"
dependencies = "required-after:NotEnoughItems;required-after:gregtech",
acceptableRemoteVersions = "*"
)
public class FindIt {

// Mod info
public static final String MOD_ID = "findit";
public static final String MOD_NAME = "FindIt";
public static final String VERSION = "1.0.0";
public static final String VERSION = "1.0.1";

// Config
public static int SEARCH_RADIUS = 16;
Expand Down

0 comments on commit d1685f5

Please sign in to comment.