Package net.minecraft.src.forge

Examples of net.minecraft.src.forge.Property


      config.load();
      this.blockIDCraftingTableIII = Integer.parseInt(config.getOrCreateIntProperty("blockIDCraftingTableIII", "block", blockIDCraftingTableIII).value);
      this.EnableSound = Boolean.parseBoolean(config.getOrCreateBooleanProperty("enableSound", "general", true).value);
      this.EnableDoor = Boolean.parseBoolean(config.getOrCreateBooleanProperty("enableDoor", "general", true).value);
     
      Property temp = config.getOrCreateBooleanProperty("ShowTimings", "general", this.ShowTimings);
      temp.comment = "Set to true if you are lagging and Zeldo wants your Timings";
      this.ShowTimings = Boolean.parseBoolean(temp.value);
     
      temp = config.getOrCreateBooleanProperty("CheckForUpdates", "general", this.CheckForUpdates);
      temp.comment = "Keep on true unless you don't want the newest versions";
View Full Code Here


      config.load();
      this.blockIDCraftingTableIII = Integer.parseInt(config.getOrCreateIntProperty("blockIDCraftingTableIII", "block", blockIDCraftingTableIII).value);
      this.EnableSound = Boolean.parseBoolean(config.getOrCreateBooleanProperty("enableSound", "general", true).value);
      this.EnableDoor = Boolean.parseBoolean(config.getOrCreateBooleanProperty("enableDoor", "general", true).value);
     
      Property temp = config.getOrCreateBooleanProperty("ShowTimings", "general", this.ShowTimings);
      temp.comment = "Set to true if you are lagging and Zeldo wants your Timings";
      this.ShowTimings = Boolean.parseBoolean(temp.value);
     
      temp = config.getOrCreateBooleanProperty("CheckForUpdates", "general", this.CheckForUpdates);
      temp.comment = "Keep on true unless you don't want the newest versions";
View Full Code Here

TOP

Related Classes of net.minecraft.src.forge.Property

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.