ignore types which are abstract

This commit is contained in:
Michael Becker 2024-08-25 09:46:42 -04:00
parent d6287b07f3
commit 83b68d16fa

View File

@ -98,6 +98,9 @@ public class Plugin
System.Collections.Generic.List<Plugin> plugins = new System.Collections.Generic.List<Plugin>();
for (int i = 0; i < types.Length; i++)
{
if (types[i].IsAbstract)
continue;
try
{
/*