Skip to content

Commit

Permalink
Lua - fix client.getavailabletools()
Browse files Browse the repository at this point in the history
  • Loading branch information
adelikat committed May 16, 2020
1 parent ff21932 commit 546ccda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BizHawk.Client.EmuHawk/tools/ToolManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ public IToolForm Get<T>() where T : class, IToolForm
}

public IEnumerable<Type> AvailableTools => Assembly
.GetAssembly(typeof(IToolForm))
.GetAssembly(typeof(ToolManager))
.GetTypes()
.Where(t => typeof(IToolForm).IsAssignableFrom(t))
.Where(t => !t.IsInterface)
Expand Down

0 comments on commit 546ccda

Please sign in to comment.