.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))
|
if (string.IsNullOrWhiteSpace(msg))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
var ids = e.GetArg("ids").Split('-');
|
var ids = e.GetArg("ids").Split('|');
|
||||||
if (ids.Length != 2)
|
if (ids.Length != 2)
|
||||||
return;
|
return;
|
||||||
var sid = ulong.Parse(ids[0]);
|
var sid = ulong.Parse(ids[0]);
|
||||||
|
Loading…
Reference in New Issue
Block a user