Skip to content

Commit

Permalink
Fix useExtraData
Browse files Browse the repository at this point in the history
  • Loading branch information
DDShadowRU committed Oct 13, 2020
1 parent d37ba5b commit 321bde6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion raw/backpack-api/BackpackRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class BackpackRegistry {
}

prototype.title = prototype.title ?? "Backpack";
prototype.kind = prototype.kind ?? BackpackKind.META;
prototype.kind = prototype.useExtraData ? BackpackKind.EXTRA : (prototype.kind ?? BackpackKind.META);
prototype.slots = prototype.slots ?? 10;
prototype.inRow = prototype.inRow ?? prototype.slots;
prototype.slotsCenter = prototype.slotsCenter ?? true;
Expand Down

0 comments on commit 321bde6

Please sign in to comment.