utility.appinfo: fix game distributor cutoff
This commit is contained in:
parent
de812f4210
commit
86344db224
1 changed files with 1 additions and 5 deletions
|
@ -1532,11 +1532,7 @@ appinfo.callback = async function (msg, line) {
|
||||||
? `[Discord](https://discord.com/store/skus/${sku.id})`
|
? `[Discord](https://discord.com/store/skus/${sku.id})`
|
||||||
: `${sku.distributor
|
: `${sku.distributor
|
||||||
.split("_")
|
.split("_")
|
||||||
.map(
|
.map((x) => x[0].toUpperCase() + x.substring(1).toLowerCase())
|
||||||
(x) =>
|
|
||||||
x[0].substring(1).toUpperCase() +
|
|
||||||
x.substring(1).toLowerCase()
|
|
||||||
)
|
|
||||||
.join(" ")
|
.join(" ")
|
||||||
.replace(" Net", ".net")}: \`${sku.id}\``
|
.replace(" Net", ".net")}: \`${sku.id}\``
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue