From c9fd55421f3118bf4017247a0b4683d1ef6a9d88 Mon Sep 17 00:00:00 2001 From: TheyuGin Date: Tue, 21 Dec 2021 23:44:34 +0500 Subject: [PATCH] fix: supply empty match case for geolyzer getTileEntity --- .../li/cil/oc/integration/gregtech/EventHandlerGregTech.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/scala/li/cil/oc/integration/gregtech/EventHandlerGregTech.scala b/src/main/scala/li/cil/oc/integration/gregtech/EventHandlerGregTech.scala index 1bb280bcb..94bd13c86 100644 --- a/src/main/scala/li/cil/oc/integration/gregtech/EventHandlerGregTech.scala +++ b/src/main/scala/li/cil/oc/integration/gregtech/EventHandlerGregTech.scala @@ -17,6 +17,7 @@ object EventHandlerGregTech { case tile : IGregTechTileEntity => e.data += "facing" -> ForgeDirection.getOrientation(tile.getFrontFacing).name() e.data += "sensorInformation" -> tile.getInfoData() + case _ => } }