From 7c87855d589b6201962a26e4b9ee221f5700c0d7 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Wed, 16 Apr 2025 23:05:29 +0500 Subject: fix: ids in twitch_get_users --- bot/src/commands/lua.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bot/src/commands/lua.cpp') diff --git a/bot/src/commands/lua.cpp b/bot/src/commands/lua.cpp index aa32b04..396a5a2 100644 --- a/bot/src/commands/lua.cpp +++ b/bot/src/commands/lua.cpp @@ -665,8 +665,8 @@ namespace bot::command::lua { } } else if (name == "ids") { for (auto &[_, x] : t) { - if (x.is()) { - ids.push_back(x.as()); + if (x.is()) { + ids.push_back(x.as()); } } } else { -- cgit v1.2.3