Skip to content

Commit 7d10773

Browse files
author
Justin
committed
Add IsNeutralDrop bool to Dota 2 Game Item
1 parent 0a176f6 commit 7d10773

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Steam.Models/DOTA2/ItemAbilitySchemaItemModel.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class ItemAbilitySchemaItemModel
99
public string Name { get; set; }
1010

1111
/// <summary>
12-
/// Valve's source files don't include localized names. Instead, the callers are responsibel for populating this value
12+
/// Valve's source files don't include localized names. Instead, the callers are responsible for populating this value
1313
/// by performing a lookup in the various language/token mapping files.
1414
/// </summary>
1515
public string LocalizedName { get; set; }
@@ -87,5 +87,7 @@ public class ItemAbilitySchemaItemModel
8787
public bool? ItemContributesToNetWorthWhenDropped { get; set; }
8888

8989
public string ItemDisassembleRule { get; set; }
90+
91+
public bool? ItemIsNeutralDrop { get; set; }
9092
}
9193
}

0 commit comments

Comments
 (0)