get_plugin_data(plugin_name, key) now behaves as originally defined: It always returns a list of NendoPluginData. Also, the way NendoBlobs are attached to the list upon loading was fixed.
get_plugin_value(key) was added that will return the string value for the plugin_data entry corresponding to the given key. If multiple entries exist, the first one is returned.
This PR introduces 2 changes:
get_plugin_data(plugin_name, key)
now behaves as originally defined: It always returns a list ofNendoPluginData
. Also, the wayNendoBlobs
are attached to the list upon loading was fixed.get_plugin_value(key)
was added that will return the string value for theplugin_data
entry corresponding to the given key. If multiple entries exist, the first one is returned.