OpenNaja / cobra-tools

A suite of GUI tools for extracting and modifying OVL and OVS archives, as well as editing the associated in-house file formats. Also includes a model plugin for Blender. For downloads, guides, and FAQs visit:
https://opennaja.github.io/cobra-tools/
GNU General Public License v3.0
98 stars 26 forks source link

Applied necessary fix for StructMetaClass autogenerated functions. #297

Closed Candoran2 closed 1 year ago

Candoran2 commented 1 year ago

The existing check in the StructMetaClass for creating new functions had an issue, especially evident with the from_value generation: whenever a parent function existed (even if auto-generated), that one was used instead. StructBase gets an autogenerated from_value function, so that one was used for every child of it - meaning every struct. This PR fixes that.