.send is now correctly splitting on "|", not "-" (fixed .send)
This commit is contained in:
parent
9a6695cc90
commit
8a9f6f4e26
@ -738,7 +738,7 @@ namespace NadekoBot.Modules.Administration
|
||||
if (string.IsNullOrWhiteSpace(msg))
|
||||
return;
|
||||
|
||||
var ids = e.GetArg("ids").Split('-');
|
||||
var ids = e.GetArg("ids").Split('|');
|
||||
if (ids.Length != 2)
|
||||
return;
|
||||
var sid = ulong.Parse(ids[0]);
|
||||
|
Loading…
Reference in New Issue
Block a user