Fix movement on other player

This commit is contained in:
2025-01-12 23:57:18 +01:00
parent 5c5040cd42
commit 63e3837441
3 changed files with 9 additions and 8 deletions

View File

@ -7,6 +7,6 @@ const (
MapHeight = 50
TileSize = 32
TileHeight = 2.0
TickRate = 2600 * time.Millisecond // Server tick rate (600ms)
TickRate = 600 * time.Millisecond // Server tick rate (600ms)
serverAddr = "localhost:6969"
)