This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configuration file | |
# Generated on 03.01.13 13:24 | |
#################### | |
# block | |
#################### | |
block { | |
# Factorization Machines. | |
I:factoryBlockId=1000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"modid": "mod_Pacifist", | |
"name": "Pacifist's Way", | |
"version": "1.0", | |
"description": "Adds options for animal-friendly players to get leather and feathers.", | |
"author": "copygirl", | |
"url": "http://copy.mcft.net/mc/Pacifist/" | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.mcft.copy.betterstorage.api; | |
import net.minecraft.item.ItemStack; | |
public interface IItemFilter { | |
/** | |
* Checks to see if the filter accepts the ItemStack. | |
* Returns how many items to accept. The ItemStack may | |
* have a stack size above its usual limit. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.mcft.copy.betterstorage.api; | |
import net.minecraft.item.ItemStack; | |
/** When implemented for an Item, signalizes that it can store or | |
* is storing other items. This is useful for other container items to | |
* keep themselves from accepting them, resulting in infinite storage. */ | |
public interface IContainerItem { | |
/** Returns the contents of this container item. <br> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.mcft.copy.betterstorage.api.crafting; | |
import java.util.Random; | |
import net.minecraft.entity.player.EntityPlayer; | |
import net.minecraft.item.ItemStack; | |
public interface IStationRecipe { | |
/** Returns if this input matches the items needed for this recipe. */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configuration file | |
#################### | |
# block | |
#################### | |
block { | |
I:armorStand=2833 | |
I:backpack=2834 | |
I:cardboardBox=2836 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package stanhebben.minetweaker.mods.te; | |
import static stanhebben.minetweaker.api.value.TweakerValue.notNull; | |
import net.minecraft.item.ItemStack; | |
import net.minecraft.nbt.NBTTagCompound; | |
import net.minecraftforge.fluids.FluidStack; | |
import stanhebben.minetweaker.api.Tweaker; | |
import stanhebben.minetweaker.api.value.TweakerValue; | |
import stanhebben.minetweaker.mods.te.actions.ThermalExpansionAction; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configuration file | |
general { | |
# DEFAULT = Settings are used as default in the world creation screen. | |
# LOCK = Settings are locked in the world creation screen. | |
# HIDDEN = Settings are used automatically and world creation screen is not modified. | |
# When using the DEFAULT setting, new worlds will generate with a world-specific config file. | |
# Once a world has a config file, changing the global settings will have no effect on that world. | |
S:control=LOCK |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
net.minecraft.util.ReportedException: Exception while updating neighbours | |
at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:642) ~[MinecraftServer.class:?] | |
at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:335) ~[lt.class:?] | |
at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:547) ~[MinecraftServer.class:?] | |
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:427) [MinecraftServer.class:?] | |
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685) [li.class:?] | |
Caused by: java.lang.NullPointerException | |
at mrtjp.projectred.transmission.BundledCablePart.calcStraightArray(bundledwires.scala:236) ~[BundledCablePart.class:?] | |
at mrtjp.projectred.transmission.BundledCablePart$$anonfun$calculateSignal$1.apply(bundledwires.scala:223) ~[BundledCablePart$$anonfun$calculateSignal$1.class:?] | |
at mrtjp.projectred.transmission.BundledCablePart$$anonfun$calculateSignal$1.apply(bundledwires.scala:218) ~[BundledCableP |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
namespace ScriptingTestingGrounds | |
{ | |
public class ComponentCollection : ICollection<IGameComponent> | |
{ | |
private IDictionary<Type, IGameComponent> dict = | |
new Dictionary<Type, IGameComponent>(); |
OlderNewer