Skip to content

Commit

Permalink
Making the mod ID lowercase.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbegt committed Apr 5, 2015
1 parent 952c9e2 commit 23dde7d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/mcmod.info
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[{
"modid": "Mantle",
"modid": "mantle",
"name": "Mantle",
"description": "Shared code for Slime Knights mods and others.",
"version": "${version}",
Expand Down
2 changes: 1 addition & 1 deletion src/mantle/Mantle.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
public class Mantle
{
/* Instance of this mod, used for grabbing prototype fields */
@Instance("Mantle")
@Instance("mantle")
public static Mantle instance;
/* Proxies for sides, used for graphics processing */
@SidedProxy(clientSide = "mantle.client.MProxyClient", serverSide = "mantle.common.MProxyCommon")
Expand Down
2 changes: 1 addition & 1 deletion src/mantle/lib/CoreRepo.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
public final class CoreRepo
{

public static final String modId = "Mantle";
public static final String modId = "mantle";
public static final String modName = "Mantle";
public static final String modVersion = "${version}";

Expand Down

0 comments on commit 23dde7d

Please sign in to comment.