e5a6eadc45
This patch provides common/mekanism/*.java with standardized indentation (tabs) and also removes trailing whitespace.
28 lines
551 B
Java
28 lines
551 B
Java
package mekanism.api;
|
|
|
|
import mekanism.api.gas.Gas;
|
|
import mekanism.common.util.StackUtils;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class AdvancedInput
|
|
{
|
|
public ItemStack itemStack;
|
|
|
|
public Gas gasType;
|
|
|
|
public AdvancedInput(ItemStack item, Gas gas)
|
|
{
|
|
itemStack = item;
|
|
gasType = gas;
|
|
}
|
|
|
|
public boolean isValid()
|
|
{
|
|
return itemStack != null && gasType != null;
|
|
}
|
|
|
|
public boolean matches(AdvancedInput input)
|
|
{
|
|
return StackUtils.equalsWildcard(itemStack, input.itemStack) && input.itemStack.stackSize >= itemStack.stackSize;
|
|
}
|
|
}
|