From 943f475bbaf544fb52f3309a036874648a4eb292 Mon Sep 17 00:00:00 2001 From: Sketch <75850871+SketchMaster2001@users.noreply.github.com> Date: Sun, 7 Nov 2021 12:26:10 -0500 Subject: [PATCH] Do some Wii no Ma specific cas stuff --- cas.go | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/cas.go b/cas.go index cd3999f..3fa5f4b 100644 --- a/cas.go +++ b/cas.go @@ -11,31 +11,32 @@ func listItems(e *Envelope) { TitleId: titleId, Contents: ContentsMetadata{ TitleIncluded: false, - ContentIndex: 1, + ContentIndex: 0, }, Attributes: []Attributes{ { - Name: "MaxUserInodes", - Value: "10", + Name: "TitleVersion", + Value: "0", }, { - Name: "itemComment", - Value: "Does not catch on fire.", + Name: "Prices", + Value: "1", }, }, Ratings: Ratings{ - Name: "Testing", + Name: "E", Rating: 1, - Age: 13, + Age: 9, }, Prices: Prices{ ItemId: 0, Price: Price{ - Amount: 1, + Amount: 100, Currency: "POINTS", }, - Limits: LimitStruct(PR), - LicenseKind: "PERMANENT", + // Literally every Limit except for PR works + Limits: LimitStruct(TR), + LicenseKind: "RENTAL", }, }) }