fix: supply empty match case for geolyzer getTileEntity

This commit is contained in:
TheyuGin 2021-12-21 23:44:34 +05:00
parent 42d390b7c6
commit c9fd55421f

View File

@ -17,6 +17,7 @@ object EventHandlerGregTech {
case tile : IGregTechTileEntity =>
e.data += "facing" -> ForgeDirection.getOrientation(tile.getFrontFacing).name()
e.data += "sensorInformation" -> tile.getInfoData()
case _ =>
}
}