commit
44b61868e2
8 changed files with 8 additions and 8 deletions
|
@ -34,7 +34,7 @@ public class Crusher implements ICraftHandler, IWebsiteSerializer
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
new RecipeError( "Crusher must have a single input, and single output." );
|
throw new RecipeError( "Crusher must have a single input, and single output." );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -31,7 +31,7 @@ public class Grind implements ICraftHandler, IWebsiteSerializer
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
new RecipeError( "Grind must have a single input, and single output." );
|
throw new RecipeError( "Grind must have a single input, and single output." );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -34,7 +34,7 @@ public class GrindFZ implements ICraftHandler, IWebsiteSerializer
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
new RecipeError( "Grind must have a single input, and single output." );
|
throw new RecipeError( "Grind must have a single input, and single output." );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -33,7 +33,7 @@ public class HCCrusher implements ICraftHandler, IWebsiteSerializer
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
new RecipeError( "Crusher must have a single input, and single output." );
|
throw new RecipeError( "Crusher must have a single input, and single output." );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -34,7 +34,7 @@ public class Macerator implements ICraftHandler, IWebsiteSerializer
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
new RecipeError( "Grind must have a single input, and single output." );
|
throw new RecipeError( "Grind must have a single input, and single output." );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -34,7 +34,7 @@ public class MekCrusher implements ICraftHandler, IWebsiteSerializer
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
new RecipeError( "MekCrusher must have a single input, and single output." );
|
throw new RecipeError( "MekCrusher must have a single input, and single output." );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -34,7 +34,7 @@ public class MekEnrichment implements ICraftHandler, IWebsiteSerializer
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
new RecipeError( "MekCrusher must have a single input, and single output." );
|
throw new RecipeError( "MekCrusher must have a single input, and single output." );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -32,7 +32,7 @@ public class Pulverizer implements ICraftHandler, IWebsiteSerializer
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
new RecipeError( "Grind must have a single input, and single output." );
|
throw new RecipeError( "Grind must have a single input, and single output." );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue