diff --git a/gradle.properties b/gradle.properties index 00881a6..f647263 100644 --- a/gradle.properties +++ b/gradle.properties @@ -44,6 +44,6 @@ mod_version=0.7.0 # See https://maven.apache.org/guides/mini/guide-naming-conventions.html mod_group_id=com.jenny # The authors of the mod. This is a simple text string that is used for display purposes in the mod list. -mod_authors= +mod_authors=Jenny # The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list. -mod_description= +mod_description=strong & throwable explosives diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 46176cf..7885f3b 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -5,6 +5,7 @@ # Find more information on toml format here: https://github.com/toml-lang/toml # The name of the mod loader type to load - for regular FML @Mod mods it should be javafml modLoader = "javafml" #mandatory +logoFile = "logo.png" # A version range to match for said mod loader - for regular FML @Mod it will be the forge version loaderVersion = "${loader_version_range}" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. # The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties. diff --git a/src/main/resources/logo.png b/src/main/resources/logo.png new file mode 100644 index 0000000..e38953b Binary files /dev/null and b/src/main/resources/logo.png differ