Merge pull request #41750 from neikeq/issue-41745

C#: Fix Godot failing to find class namespace
This commit is contained in:
Rémi Verschelde 2020-09-04 08:15:49 +02:00 committed by GitHub
commit 90601bb659
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,7 +48,7 @@ namespace GodotTools
var firstMatch = classes.FirstOrDefault(classDecl =>
classDecl.BaseCount != 0 && // If it doesn't inherit anything, it can't be a Godot.Object.
classDecl.SearchName != searchName // Filter by the name we're looking for
classDecl.SearchName == searchName // Filter by the name we're looking for
);
if (firstMatch == null)