From 8e4f7dc1204b70c95d7af78a0e2c117663cdb0b1 Mon Sep 17 00:00:00 2001 From: "Erica M. (\"Loonatic\")" Date: Tue, 21 Nov 2023 21:41:17 -0600 Subject: [PATCH] Importer: Fix logic error with crash evade --- importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/importer.py b/importer.py index 68b7b0b..36e0eef 100755 --- a/importer.py +++ b/importer.py @@ -1434,7 +1434,7 @@ def add_polygon(self, context, prim, vpool): # Reference those loops in the polygon. poly.loop_start = loop_offset # Newer versions of Blender have changed loop_total to be readonly, resulting in a crash. - if bpy.app.version > (3, 50): + if bpy.app.version < (3, 6): poly.loop_total = len(prim.indices) # Assign the highest priority texture that uses a given UV set to