From 6db92495043d79244cbad42166fcc83793925157 Mon Sep 17 00:00:00 2001 From: Quarris Date: Sun, 28 Nov 2021 19:09:23 +0000 Subject: [PATCH] Fixes #27 --- .../ticticboooom/mods/mm/ports/state/MekInfusePortState.java | 2 +- version.properties | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/ticticboooom/mods/mm/ports/state/MekInfusePortState.java b/src/main/java/com/ticticboooom/mods/mm/ports/state/MekInfusePortState.java index 612c355..a21d8df 100644 --- a/src/main/java/com/ticticboooom/mods/mm/ports/state/MekInfusePortState.java +++ b/src/main/java/com/ticticboooom/mods/mm/ports/state/MekInfusePortState.java @@ -48,7 +48,7 @@ public class MekInfusePortState extends PortState { public void processRequirement(List storage) { long current = amount; for (PortStorage st : storage) { - if (st instanceof MekSlurryPortStorage) { + if (st instanceof MekInfusePortStorage) { MekInfusePortStorage gasStorage = (MekInfusePortStorage) st; if (gasStorage.getInv().getStack().getType().getRegistryName().toString().equals(infuse)) { InfusionStack extract = gasStorage.getInv().extractChemical(0, current, Action.EXECUTE); diff --git a/version.properties b/version.properties index 80b9077..61ac51d 100644 --- a/version.properties +++ b/version.properties @@ -1,2 +1,2 @@ -#Sun Nov 28 15:53:16 GMT 2021 -VERSION_CODE=865 +#Sun Nov 28 19:05:29 GMT 2021 +VERSION_CODE=866