Lua - fix client.getavailabletools()

This commit is contained in:
adelikat 2020-05-16 15:30:04 -05:00
parent de97abf6e5
commit a0769d4bd9
1 changed files with 1 additions and 1 deletions

View File

@ -456,7 +456,7 @@ namespace BizHawk.Client.EmuHawk
}
public IEnumerable<Type> AvailableTools => Assembly
.GetAssembly(typeof(IToolForm))
.GetAssembly(typeof(ToolManager))
.GetTypes()
.Where(t => typeof(IToolForm).IsAssignableFrom(t))
.Where(t => !t.IsInterface)