From eb8bf60e93ecace03da687bedb60edecec07ae7c Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Sun, 11 Sep 2022 22:17:41 +1000 Subject: [PATCH] Fix #2398. Add support for IFC4X3 entities. --- src/blenderbim/blenderbim/bim/ifc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/ifc.py b/src/blenderbim/blenderbim/bim/ifc.py index 375d1cce27..dd6e05d5d8 100644 --- a/src/blenderbim/blenderbim/bim/ifc.py +++ b/src/blenderbim/blenderbim/bim/ifc.py @@ -50,7 +50,7 @@ class IfcStore: last_transaction = "" history = [] future = [] - schema_identifiers = ["IFC4", "IFC2X3"] + schema_identifiers = ["IFC4", "IFC2X3", "IFC4X3"] @staticmethod def purge(): @@ -70,7 +70,7 @@ class IfcStore: IfcStore.last_transaction = "" IfcStore.history = [] IfcStore.future = [] - IfcStore.schema_identifiers = ["IFC4", "IFC2X3"] + IfcStore.schema_identifiers = ["IFC4", "IFC2X3", "IFC4X3"] @staticmethod def get_file():