aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/recipe/maps/PurificationUnitLaserFrontend.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/api/recipe/maps/PurificationUnitLaserFrontend.java')
-rw-r--r--src/main/java/gregtech/api/recipe/maps/PurificationUnitLaserFrontend.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/gregtech/api/recipe/maps/PurificationUnitLaserFrontend.java b/src/main/java/gregtech/api/recipe/maps/PurificationUnitLaserFrontend.java
index df42259864..9c90acd8ad 100644
--- a/src/main/java/gregtech/api/recipe/maps/PurificationUnitLaserFrontend.java
+++ b/src/main/java/gregtech/api/recipe/maps/PurificationUnitLaserFrontend.java
@@ -11,8 +11,8 @@ import gregtech.api.recipe.BasicUIPropertiesBuilder;
import gregtech.api.recipe.NEIRecipePropertiesBuilder;
import gregtech.api.recipe.RecipeMapFrontend;
import gregtech.common.gui.modularui.UIHelper;
-import gregtech.common.tileentities.machines.multi.purification.GT_MetaTileEntity_PurificationUnitUVTreatment;
-import gregtech.nei.GT_NEI_DefaultHandler;
+import gregtech.common.tileentities.machines.multi.purification.MTEPurificationUnitUVTreatment;
+import gregtech.nei.GTNEIDefaultHandler;
public class PurificationUnitLaserFrontend extends RecipeMapFrontend {
@@ -22,13 +22,13 @@ public class PurificationUnitLaserFrontend extends RecipeMapFrontend {
}
@Override
- public void drawNEIOverlays(GT_NEI_DefaultHandler.CachedDefaultRecipe neiCachedRecipe) {
- final int numLenses = GT_MetaTileEntity_PurificationUnitUVTreatment.LENS_ITEMS.size();
+ public void drawNEIOverlays(GTNEIDefaultHandler.CachedDefaultRecipe neiCachedRecipe) {
+ final int numLenses = MTEPurificationUnitUVTreatment.LENS_ITEMS.size();
List<Pos2d> positions = UIHelper.getGridPositions(numLenses, 12, -4, 3, 3);
// Put in lens items
for (int i = 0; i < numLenses; ++i) {
Pos2d position = positions.get(i);
- ItemStack lens = GT_MetaTileEntity_PurificationUnitUVTreatment.LENS_ITEMS.get(i);
+ ItemStack lens = MTEPurificationUnitUVTreatment.LENS_ITEMS.get(i);
neiCachedRecipe.mInputs.add(new PositionedStack(lens, position.x, position.y, false));
}
super.drawNEIOverlays(neiCachedRecipe);