diff options
author | Adam <Adam@anope.org> | 2013-12-30 10:34:57 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-12-30 10:34:57 -0500 |
commit | 3b80da9cbd111ce20bb8babcdea03170e613c0fd (patch) | |
tree | 1fab26c03046d76613081ab97384cc8f944db6e5 /modules/commands/bs_kick.cpp | |
parent | c519119197a7883b788fb1c89bcab0685868d92c (diff) |
Fix loading kicker ttb data
Diffstat (limited to 'modules/commands/bs_kick.cpp')
-rw-r--r-- | modules/commands/bs_kick.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/bs_kick.cpp b/modules/commands/bs_kick.cpp index 26a5466d0..5eaa7eed9 100644 --- a/modules/commands/bs_kick.cpp +++ b/modules/commands/bs_kick.cpp @@ -104,7 +104,7 @@ struct KickerDataImpl : KickerData for (int i = 0; sep.GetToken(tok) && i < TTB_SIZE; ++i) try { - ttb[i] = convertTo<int16_t>(tok); + kd->ttb[i] = convertTo<int16_t>(tok); } catch (const ConvertException &) { } |