From 8cbccf328cf99130496cd8d69869291a51cfd4cc Mon Sep 17 00:00:00 2001 From: SenseiKiwi Date: Sun, 16 Jun 2013 05:15:59 -0400 Subject: [PATCH] Fixed mcmod.info Fixed problems in mcmod.info. Changed modid and version to match the @Mod Java annotations. If these annotations don't match the information in the file, the file is ignored! So previous versions did not have their mod info or logo appear under the mod menu in Minecraft. The credits line is too long, unfortunately. It runs off my screen and there is no attempt to wrap it back. Our best bet would be to place the credits in the description instead. I tried placing newlines but they're not rendered properly on the client. --- mcmod.info | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/mcmod.info b/mcmod.info index 09e49bf..f953784 100644 --- a/mcmod.info +++ b/mcmod.info @@ -1,19 +1,17 @@ [ { -"modid": "DimensionalDoors", +"modid": "DimDoors", "name": "Dimensional Doors", -"description": "Bend and twist reality itelf, creating pocket dimensions, rifts, and much more", -"version": "1.4.0", -"credits": "Created by StevenRS11, Coded by StevenRS11 and SenseiKiwi, logo and testing by Jaitsu", +"description": "Bend and twist reality itself, creating pocket dimensions, rifts, and much more", +"version": "1.5.2R1.4.0RC1", +"credits": "Created by StevenRS11, Coded by StevenRS11 and SenseiKiwi, Logo and Testing by Jaitsu", "logoFile": "/dimdoors_logo.png", "mcversion": "", "url": "http://www.minecraftforum.net/topic/1650007-147smpssplan-dimensional-doors-v110-physics-what-physics-updated-with-fancy-opengl/", "updateUrl": "", -"authors": [ "StevenRS11, SenseiKiwi" ], +"authors": [ "StevenRS11", "SenseiKiwi" ], "parent":"", "screenshots": [], -"dependencies": [ -"mod_MinecraftForge" -] +"dependencies": [ "mod_MinecraftForge" ] } ]