Send new location as array instead of object
This commit is contained in:
@ -42,10 +42,7 @@ export function useGameControlsComposable(scene: Phaser.Scene, layer: Phaser.Til
|
|||||||
function emitMovement(x: number, y: number) {
|
function emitMovement(x: number, y: number) {
|
||||||
if (x === currentPosition.x && y === currentPosition.y) return
|
if (x === currentPosition.x && y === currentPosition.y) return
|
||||||
|
|
||||||
gameStore.connection?.emit(SocketEvent.MAP_CHARACTER_MOVE, {
|
gameStore.connection?.emit(SocketEvent.MAP_CHARACTER_MOVE, [x, y])
|
||||||
positionX: x,
|
|
||||||
positionY: y
|
|
||||||
})
|
|
||||||
|
|
||||||
currentPosition = { x, y }
|
currentPosition = { x, y }
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user