Skip to content

Commit f51a58f

Browse files
committed
remove unnecessary log
1 parent 149419c commit f51a58f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/Features/Demo/NetworkGhostPlayer.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1170,7 +1170,6 @@ void NetworkManager::NotifyTaunt(const std::string name) {
11701170
void NetworkManager::NotifyLocator(Vector position, Vector normal) {
11711171
if (!this->isConnected) return;
11721172
addToNetDump("send-locator", Utils::ssprintf("%d;%.1f,%.1f,%.1f;%.1f,%.1f,%.1f", this->ID, position.x, position.y, position.z, normal.x, normal.y, normal.z).c_str());
1173-
console->Print("Locator: Position (%.1f, %.1f, %.1f), Normal (%.1f, %.1f, %.1f)\n", position.x, position.y, position.z, normal.x, normal.y, normal.z);
11741173
sf::Packet packet;
11751174
packet << HEADER::LOCATOR << this->ID << position << normal;
11761175
this->tcpSocket.send(packet);

0 commit comments

Comments
 (0)