Fix major overstep with last commit
[carveJwlIkooP6JGAAIwe30JlM.git] / blender_export.py
index acd28ec3bcfcadbd96bc17cc539bd1508a78f86d..c44694abc0ea5b6e41e36fec86cdfaa1ff5ce181 100644 (file)
@@ -132,8 +132,7 @@ class classtype_route_node(Structure):
 
 class classtype_route(Structure):
    _pack_ = 1
-   _fields_ = [("pstr_name",c_uint32),
-               ("id_start",c_uint32),
+   _fields_ = [("id_start",c_uint32),
                ("colour",c_float*3)]
 
 class classtype_skin(Structure):
@@ -855,7 +854,6 @@ def write_model(collection_name):
          node.classtype = 9
          entdata_length += sizeof( classtype_route )
          r = classtype_route()
-         r.pstr_name = emplace_string("not-implemented")
          r.colour[0] = obj.cv_data.colour[0]
          r.colour[1] = obj.cv_data.colour[1]
          r.colour[2] = obj.cv_data.colour[2]