Updating remove plugin message to specify plugin name

This commit is contained in:
Neko Box Coder
2025-08-09 10:58:16 +01:00
parent 21edb89693
commit 177f4d5b01

View File

@@ -675,7 +675,7 @@ func PluginCommand(out io.Writer, cmd string, args []string) {
// check if the plugin exists.
for _, p := range Plugins {
if p.Name == plugin && p.Builtin {
fmt.Fprintln(out, "Built-in plugins cannot be removed, but can be disabled via settings.")
fmt.Fprintln(out, p.Name, "is a built-in plugin which cannot be removed, but can be disabled via settings.")
continue
}
if p.Name == plugin {