Skip to content

Commit

Permalink
Make the modID lowercase.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander committed Apr 8, 2015
1 parent 83002b3 commit 3d5eccd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/progwml6/natura/Natura.java
Expand Up @@ -30,14 +30,14 @@
import com.progwml6.natura.worldgen.CloudWorldgen;
import com.progwml6.natura.worldgen.CropWorldGen;

@Mod(modid = "Natura", name = "Natura", version = "3.0.0", acceptedMinecraftVersions = "[1.8]", dependencies = "required-after:mantle@[0.3.1,)")
@Mod(modid = "natura", name = "Natura", version = "3.0.0", acceptedMinecraftVersions = "[1.8]", dependencies = "required-after:mantle@[0.3.1,)")
public class Natura
{
/* Proxies for sides, used for graphics processing */
@SidedProxy(clientSide = "com.progwml6.natura.client.ClientProxy", serverSide = "com.progwml6.natura.CommonProxy")
public static CommonProxy proxy;

public static final String modID = "Natura";
public static final String modID = "natura";

/* Instance of this mod, used for grabbing prototype fields */
@Instance(modID)
Expand Down

0 comments on commit 3d5eccd

Please sign in to comment.