From 7312af1becb24f1d10df8df410f683e91fd0bb5c Mon Sep 17 00:00:00 2001 From: Mm2PL Date: Mon, 30 Jan 2023 20:47:16 +0100 Subject: [PATCH] Remove lualol command --- src/controllers/commands/CommandController.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/controllers/commands/CommandController.cpp b/src/controllers/commands/CommandController.cpp index ad07ddca6..98909eb65 100644 --- a/src/controllers/commands/CommandController.cpp +++ b/src/controllers/commands/CommandController.cpp @@ -3127,13 +3127,6 @@ void CommandController::initialize(Settings &, Paths &paths) return ""; }); - this->registerCommand("lualol", [](const auto &ctx) { - getApp()->plugins->callEveryWithArgs( - "test", 1, [ctx](const auto & /*pl*/, lua_State *L) { - lua_pushstring(L, ctx.channel->getName().toStdString().c_str()); - }); - return ""; - }); } void CommandController::save()