From 9ab40f0f7329a8475db1ab8db3dded4475ae31ad Mon Sep 17 00:00:00 2001 From: Edo Date: Wed, 17 May 2023 13:09:42 +0100 Subject: [PATCH] maint(client_command): remove comments since enum is used --- src/module/client_command.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/module/client_command.cpp b/src/module/client_command.cpp index b8e80f9..3c9a83d 100644 --- a/src/module/client_command.cpp +++ b/src/module/client_command.cpp @@ -143,12 +143,12 @@ private: if (params.size() > 4) { - angles[game::native::YAW] = std::strtof(params.get(4), nullptr); // Yaw + angles[game::native::YAW] = std::strtof(params.get(4), nullptr); } if (params.size() == 6) { - angles[game::native::PITCH] = std::strtof(params.get(5), nullptr); // Pitch + angles[game::native::PITCH] = std::strtof(params.get(5), nullptr); } game::native::TeleportPlayer(ent, origin, angles);