Skip to content

Commit 008a472

Browse files
authored
Believe me this is better.
1 parent aed9ae2 commit 008a472

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

publishInteractions.js

+12-11
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const locales = [];
7373

7474
let publishSpecialType = publishMode == "guild" ? (isClearMode ? "guildOnly" : (argv.get(2) || "guildOnly")) : "globalOnly";
7575

76-
76+
console.log(publishSpecialType)
7777

7878
if (!publishMode) {
7979
console.error(`Geçersiz paylaşım modu! Geçerli modlar: guild, global`);
@@ -112,9 +112,9 @@ const locales = [];
112112
await chillout.forEach(interactionFilePaths, (interactionFilePath) => {
113113
/** @type {import("./types/Interaction")} */
114114
let uInter = require(interactionFilePath);
115-
if(uInter?._type != "interaction") return;
116-
if (!uInter.publishType) uInter.publishType = "all";
117-
if (!(uInter.publishType == "all" || publishSpecialType == uInter.publishType)) {
115+
if (uInter?._type != "interaction") return;
116+
if (!uInter.publishType) uInter.publishType = "globalOnly";
117+
if (!((uInter.publishType == "all" && ["guildOnly", "globalOnly"].includes(publishSpecialType)) || publishSpecialType == uInter.publishType)) {
118118
console.warn(`Interaksiyon "${uInter.actionType == "ChatInput" ? `/${uInter.name.join(" ")}` : `${uInter.name[0]}`}" dönüştürülme listesine eklenmedi çünkü interaksiyon paylaşılma tipi(${uInter.publishType}) ile paylaşma modu(${publishMode}) uyumsuz!`);
119119
return;
120120
}
@@ -133,7 +133,8 @@ const locales = [];
133133
type: interactionTypes[current.actionType] ?? current.actionType,
134134
name: current.name[0],
135135
description: current.description,
136-
defaultPermission: current.defaultPermission,
136+
defaultMemberPermissions: current.defaultPermission ? null : ["Administrator"],
137+
dmPermission: !current.guildOnly,
137138
options: current.options,
138139
nameLocalizations: localeData.names(0),
139140
descriptionLocalizations: localeData.descriptions,
@@ -152,7 +153,8 @@ const locales = [];
152153
nameLocalizations: localeData.names(0),
153154
descriptionLocalizations: localeData.descriptions,
154155
description: current.description,
155-
defaultPermission: current.defaultPermission,
156+
defaultMemberPermissions: current.defaultPermission ? null : ["Administrator"],
157+
dmPermission: !current.guildOnly,
156158
options: [
157159
{
158160
type: 1,
@@ -185,7 +187,8 @@ const locales = [];
185187
all.push({
186188
type: interactionTypes[current.actionType] ?? current.actionType,
187189
name: current.name[0],
188-
defaultPermission: current.defaultPermission,
190+
defaultMemberPermissions: current.defaultPermission ? null : ["Administrator"],
191+
dmPermission: !current.guildOnly,
189192
nameLocalizations: localeData.names(0),
190193
descriptionLocalizations: localeData.descriptions,
191194
description: current.description,
@@ -250,21 +253,19 @@ const locales = [];
250253
}, []);
251254

252255
function fixOptions(inter = {}) {
253-
console.log("1",inter.type)
254256
inter.type = optionTypes[inter.type] ?? inter.type;
255-
console.log("2",inter.type)
256257
if (inter?.options) {
257258
inter.options.map(fixOptions)
258259
return inter;
259260
};
260261
return inter;
261262
}
262-
263+
263264
for (let i = 0; i < dcInters.length; i++) {
264265
dcInters[i] = fixOptions(dcInters[i]);
265266
}
266267

267-
console.log(require("util").inspect(dcInters, false, 9999, true));
268+
require("util").inspect(dcInters, false, 9999, true)
268269

269270
// return;
270271

0 commit comments

Comments
 (0)