From c926295825f6e1656629753d6488e049c4e0084d Mon Sep 17 00:00:00 2001 From: Teh PeGaSuS Date: Tue, 3 Mar 2026 19:57:07 +0100 Subject: [PATCH] Fixed wrong messages placeholders --- Chanban/cmgmt.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Chanban/cmgmt.tcl b/Chanban/cmgmt.tcl index d7b25c7..c3afc44 100644 --- a/Chanban/cmgmt.tcl +++ b/Chanban/cmgmt.tcl @@ -23,7 +23,7 @@ namespace eval cmgmt { # Command to upload the file # The ban list file is piped into the command via stdin (with `cat $filename |`) # so your command must read from stdin - variable upCommand "curl -s -F file=@- https://hotpaste.0bin.xyz/" + variable upCommand "curl -s -F file=@- https://x0.at/" # Set the banmask type to use in banning the user # Available types are: @@ -529,7 +529,7 @@ namespace eval cmgmt { set banmask [lindex [split $text] 1] if {$banmask eq ""} { - putserv "PRIVMSG $chan :[format [::msgcat::mc error.syntax] $::cmgmt::trigger]addban <#chan> " + putserv "PRIVMSG $chan :[::msgcat::mc pm.error.syntax] addban <#chan> " return 0 }