Skip to content

Commit

Permalink
some fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
Larsundso committed Feb 6, 2025
1 parent 8efe8b6 commit 374b8a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"register": "node ./dist/register-commands.js",
"register-dev": "pnpm build && node ./dist/register-commands-dev.js",
"run": "node --max-old-space-size=10240 --no-deprecation --no-warnings --experimental-json-modules ./dist/index.js",
"start": "pnpx prisma generate && pnpx prisma db push && pnpm run run",
"start": "pnpx prisma generate && pnpx prisma db push && pnpm register && pnpm run run",
"watch": "swc src -d dist --strip-leading-paths --copy-files --watch"
},
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const showAll: NonNullable<CT.SettingsFile<typeof name>['showAll']> = asy
});

const fields = settings.map((s) => ({
name: `${lan.fields.roleId.name}: \`${s.roleId ? `<@&${s.roleId}>` : language.t.None}\` - ${
name: `${lan.fields.roleId.name}: ${s.roleId ? `<@&${s.roleId}>` : language.t.None} - ${
lan.fields.punishment.name
}: \`${
s.punishment
Expand Down
2 changes: 1 addition & 1 deletion src/Events/RedisEvents/votePunish/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default async (payload: {
type: ComponentType.UserSelect,
custom_id: `votePunish_${payload.id}_${payload.userId}`,
placeholder: lan.placeholder,
max_values: 25,
max_values: 24,
min_values: 1,
},
],
Expand Down

0 comments on commit 374b8a2

Please sign in to comment.