From d69f637f726aac3fa58d2353d62e2c530e4f949a Mon Sep 17 00:00:00 2001 From: Xargana Date: Sun, 30 Mar 2025 09:35:13 +0300 Subject: [PATCH] a --- discord/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/index.js b/discord/index.js index 48438f1..6f760c3 100644 --- a/discord/index.js +++ b/discord/index.js @@ -818,10 +818,10 @@ case "anime": try { await interaction.deferReply(); const target = interaction.options.getString("target"); - const maxHops = interaction.options.getInteger("hops") || 30; + const maxHops = interaction.options.getInteger("hops") || 16; const { spawn } = require('child_process'); - const tracepath = spawn('tracepath', ['-4', target]); // tracepath with numeric output + const tracepath = spawn('tracepath', ['-4', `-m ${maxHops}`, target]); let output = '';