From 80c02740d0a99df96fa40e3f3d5bad4ea2e0e2ae Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 22 Sep 2013 11:25:11 -0400 Subject: Translate listformatter properly --- modules/commands/cs_akick.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/commands/cs_akick.cpp') diff --git a/modules/commands/cs_akick.cpp b/modules/commands/cs_akick.cpp index 7bfed5419..06ddc406e 100644 --- a/modules/commands/cs_akick.cpp +++ b/modules/commands/cs_akick.cpp @@ -360,7 +360,7 @@ class CommandCSAKick : public Command return; } - ListFormatter list; + ListFormatter list(source.GetAccount()); list.AddColumn("Number").AddColumn("Mask").AddColumn("Reason"); this->ProcessList(source, ci, params, list); } @@ -373,7 +373,7 @@ class CommandCSAKick : public Command return; } - ListFormatter list; + ListFormatter list(source.GetAccount()); list.AddColumn("Number").AddColumn("Mask").AddColumn("Creator").AddColumn("Created").AddColumn("Last used").AddColumn("Reason"); this->ProcessList(source, ci, params, list); } -- cgit