Updated readme for 1.2.0

Fixed template error for removeMaxKeyUsage variable. It now works correctly.
This commit is contained in:
VforValens 2022-08-05 18:50:23 -04:00
parent 2256ace719
commit 3f0298785c
2 changed files with 5 additions and 3 deletions

Binary file not shown.

View File

@ -146,10 +146,12 @@ export class Items
private removeKeyUsageMax(): void
{
const keys = this.items.filter(x=>x._parent === "543be5e94bdc2df1348b4568");
for (const key in keys)
for (const item in this.items)
{
keys[key]._props.MaximumNumberOfUsage = 0;
if (this.items[item]._parent === "5c99f98d86f7745c314214b3")
{
this.items[item]._props.MaximumNumberOfUsage = 0;
}
}
}
}