File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -59,8 +59,8 @@ static Cards()
5959 public static Card GetFromName ( string name , Locale lang , bool collectible = true )
6060 => ( collectible ? Collectible : All ) . Values . FirstOrDefault ( x => x . GetLocName ( lang ) ? . Equals ( name , StringComparison . InvariantCultureIgnoreCase ) ?? false ) ;
6161
62- public static Card GetFromDbfId ( int dbfId , bool collectibe = true )
63- => ( collectibe ? CollectibleByDbfId : AllByDbfId ) . TryGetValue ( dbfId , out var card ) ? card : null ;
62+ public static Card GetFromDbfId ( int dbfId , bool collectible = true )
63+ => ( collectible ? CollectibleByDbfId : AllByDbfId ) . TryGetValue ( dbfId , out var card ) ? card : null ;
6464
6565 private static bool IsDeflectOBot ( Entity entity ) => entity . CardId == CardIds . NonCollectible . Neutral . DeflectOBot || entity . CardId == CardIds . NonCollectible . Neutral . DeflectOBotTavernBrawl ;
6666 }
You can’t perform that action at this time.
0 commit comments