Skip to content
This repository was archived by the owner on May 26, 2018. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/net/minecraftforge/fml/common/Mod.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@
/**
* A user friendly name for the mod
*/
String name() default "";
String name();
/**
* A version string for this mod
*/
String version() default "";
String version() default "unknown";

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suggest forcing a version number too.

/**
* A simple dependency string for this mod (see modloader's "priorities" string specification)
*/
Expand Down