fix player shoot
All checks were successful
Linux arm64 / Build (push) Successful in 1m22s

This commit is contained in:
2024-04-13 15:45:03 +02:00
parent 352fa5a034
commit 83451137d0

View File

@@ -70,6 +70,6 @@ void Client::SendTextChat(const std::string& msg) {
} }
void Client::Shoot() { void Client::Shoot() {
protocol::PlayerShootPacket packet; protocol::PlayerShootPacket packet({}, 0, 0);
SendPacket(&packet); SendPacket(&packet);
} }