From a91c9064ac2a0a4671f3c6276f55b40f3a9e118b Mon Sep 17 00:00:00 2001 From: bonkmaykr Date: Mon, 29 Jan 2024 05:01:31 -0600 Subject: [PATCH] i'm a moron --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 00e3d49..a0767d8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -793,11 +793,11 @@ void handleTeleportRequest(internalTypes::markEntry details) { std::to_string(details.position.y) + ", " + std::to_string(details.position.z) + ", " + std::to_string(details.position.yaw) + "\n"; - teleport(&roomsock, xPos, yPos, zPos, direction); // force positional update immediately xPos = details.position.x; // remember so that the idle thread doesn't rubberband us yPos = details.position.y; zPos = details.position.z; direction = details.position.yaw; + teleport(&roomsock, xPos, yPos, zPos, direction); // force positional update immediately std::cout << "info: updating goto destination\n"; realLocation = details.url;