@@ -46,7 +46,6 @@ public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out s
46
46
}
47
47
48
48
}
49
- [ CommandHandler ( typeof ( ClientCommandHandler ) ) ]
50
49
[ CommandHandler ( typeof ( RemoteAdminCommandHandler ) ) ]
51
50
public class Setbadge : ICommand , IUsageProvider
52
51
{
@@ -398,24 +397,24 @@ public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out s
398
397
return true ;
399
398
}
400
399
}
401
- [ CommandHandler ( typeof ( ClientCommandHandler ) ) ]
402
- [ CommandHandler ( typeof ( RemoteAdminCommandHandler ) ) ]
403
- public class ReloadBadge : ICommand
404
- {
405
- public string Command => "reloadbadge" ;
406
-
407
- public string [ ] Aliases => Array . Empty < string > ( ) ;
408
-
409
- public string Description => "" ;
410
-
411
- public bool Execute ( ArraySegment < string > arguments , ICommandSender sender , out string response )
412
- {
413
- if ( arguments . Count == 0 ) BadgeDatabase . Update ( ) ; // 用于临时连接至另一台MySQL服务器,调试版
414
- else BadgeDatabase . Update ( arguments . At ( 0 ) ) ;
415
- response = "Done!" ;
416
- return true ;
417
- }
418
- }
400
+ // [CommandHandler(typeof(ClientCommandHandler))]
401
+ // [CommandHandler(typeof(RemoteAdminCommandHandler))]
402
+ // public class ReloadBadge : ICommand
403
+ // {
404
+ // public string Command => "reloadbadge";
405
+
406
+ // public string[] Aliases => Array.Empty<string>();
407
+
408
+ // public string Description => "";
409
+
410
+ // public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
411
+ // {
412
+ // if (arguments.Count == 0) BadgeDatabase.Update(); // 用于临时连接至另一台MySQL服务器,调试版
413
+ // else BadgeDatabase.Update(arguments.At(0));
414
+ // response = "Done!";
415
+ // return true;
416
+ // }
417
+ // }
419
418
[ CommandHandler ( typeof ( ClientCommandHandler ) ) ]
420
419
public class Callkick : ICommand
421
420
{
0 commit comments