From 3b80da9cbd111ce20bb8babcdea03170e613c0fd Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 30 Dec 2013 10:34:57 -0500 Subject: [PATCH] Fix loading kicker ttb data --- modules/commands/bs_kick.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(tok); + kd->ttb[i] = convertTo(tok); } catch (const ConvertException &) { }