From 42110c57cabf6c5f55fdf61c14489c4e31cc0825 Mon Sep 17 00:00:00 2001 From: Flerp Date: Fri, 31 Oct 2025 07:40:23 -0700 Subject: [PATCH] renaming command --- src/teleport-to-node.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/teleport-to-node.cpp b/src/teleport-to-node.cpp index 990eb61..89c02f3 100644 --- a/src/teleport-to-node.cpp +++ b/src/teleport-to-node.cpp @@ -15,7 +15,7 @@ using namespace Acore::ChatCommands; static constexpr float TELEPORT_DISTANCE = 250.0f; static constexpr float Z_BUMP = 1.5f; static constexpr float MIN_RETELEPORT_DIST = 1.0f; -static constexpr uint32 RECHECK_DELAY_MS = 3000; +static constexpr uint32 RECHECK_DELAY_MS = 100; static const std::vector kVeinEntries = { 324,1610,1667,1731,1732,1733,1734,2054,2055,3763,3764,19903, @@ -129,7 +129,7 @@ public: { static ChatCommandTable commandTable = { - { "telenode", HandleTeleNode, SEC_PLAYER, Console::No }, + { "yaynode", HandleTeleNode, SEC_PLAYER, Console::No }, }; return commandTable; }