Fix IronChest's version check + Fix the dirt chest's book.
This commit is contained in:
parent
5720fa2065
commit
e5e601a1b8
|
@ -29,7 +29,7 @@ import net.minecraftforge.fml.common.network.NetworkRegistry;
|
||||||
import net.minecraftforge.fml.common.registry.ForgeRegistries;
|
import net.minecraftforge.fml.common.registry.ForgeRegistries;
|
||||||
import net.minecraftforge.fml.common.registry.GameRegistry;
|
import net.minecraftforge.fml.common.registry.GameRegistry;
|
||||||
|
|
||||||
@Mod(modid = IronChest.MOD_ID, name = "Iron Chests", dependencies = "required-after:forge@[13.19.0.2142,);", acceptedMinecraftVersions = "[1.11, 1.12)")
|
@Mod(modid = IronChest.MOD_ID, name = "Iron Chests", dependencies = "required-after:forge@[13.19.0.2142,)", acceptedMinecraftVersions = "[1.11, 1.12)")
|
||||||
public class IronChest
|
public class IronChest
|
||||||
{
|
{
|
||||||
public static final String MOD_ID = "ironchest";
|
public static final String MOD_ID = "ironchest";
|
||||||
|
@ -55,7 +55,6 @@ public class IronChest
|
||||||
String minor = properties.getProperty("IronChest.build.minor.number");
|
String minor = properties.getProperty("IronChest.build.minor.number");
|
||||||
String rev = properties.getProperty("IronChest.build.revision.number");
|
String rev = properties.getProperty("IronChest.build.revision.number");
|
||||||
String build = properties.getProperty("IronChest.build.number");
|
String build = properties.getProperty("IronChest.build.number");
|
||||||
// String mcversion = properties.getProperty("IronChest.build.mcversion");
|
|
||||||
event.getModMetadata().version = String.format("%s.%s.%s build %s", major, minor, rev, build);
|
event.getModMetadata().version = String.format("%s.%s.%s build %s", major, minor, rev, build);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,8 +18,8 @@ item.ironchest:WOODCOPPER.name=Wood to Copper Chest Upgrade
|
||||||
item.ironchest:DIAMONDOBSIDIAN.name=Diamond to Obsidian Chest Upgrade
|
item.ironchest:DIAMONDOBSIDIAN.name=Diamond to Obsidian Chest Upgrade
|
||||||
|
|
||||||
book.ironchest:dirtchest9000.title=How to use your DirtChest 9000!
|
book.ironchest:dirtchest9000.title=How to use your DirtChest 9000!
|
||||||
book.ironchest:dirtchest9000.page1=Welcome to your new DirtChest 9000! We hope you will enjoy many happy years of storing your stack of dirt in our storage utility.
|
book.ironchest:dirtchest9000.page1="Welcome to your new DirtChest 9000! We hope you will enjoy many happy years of storing your stack of dirt in our storage utility."
|
||||||
book.ironchest:dirtchest9000.page2=Usage: simply insert the stack of dirt of your choice into the highly receptive slot and enjoy the great convenience of having that dirt available to you, any time you pass by this chest!
|
book.ironchest:dirtchest9000.page2="Usage: simply insert the stack of dirt of your choice into the highly receptive slot and enjoy the great convenience of having that dirt available to you, any time you pass by this chest!"
|
||||||
book.ironchest:dirtchest9000.page3=We hope you have enjoyed reviewing this instruction manual, and hope you will consider using our products in future! Kind regards, The DirtChest 9000 manual writers incorporated.
|
book.ironchest:dirtchest9000.page3="We hope you have enjoyed reviewing this instruction manual, and hope you will consider using our products in future! Kind regards, The DirtChest 9000 manual writers incorporated."
|
||||||
book.ironchest:dirtchest9000.page4=Warranty: This product has no warranty of any kind. Your dirt may not be stored, it may slowly leech into the environment, or alternatively, it may not do anything at all.
|
book.ironchest:dirtchest9000.page4="Warranty: This product has no warranty of any kind. Your dirt may not be stored, it may slowly leech into the environment, or alternatively, it may not do anything at all."
|
||||||
book.ironchest:dirtchest9000.page5=DirtChest 9000 is kind to the environment. Please dispose of this guide book responsibly, and do not whatever you do just chuck it into some lava. We would be very sad.
|
book.ironchest:dirtchest9000.page5="DirtChest 9000 is kind to the environment. Please dispose of this guide book responsibly, and do not whatever you do just chuck it into some lava. We would be very sad."
|
||||||
|
|
Loading…
Reference in New Issue