Fix coordinates

teleportpos command should have no spaces in the numbers
Yours puts (-322.2, 37.9, -401.0)

Can we just remove the spaces so its easier to copy n paste to use teleportpos command ?
(-322.2,37.9,-401.0)

Mayby misticos won't mind you use this code from group limits to format the coordinates
private string FormattedCoordinates(Vector3 pos) => $"{pos.x},{pos.y},{pos.z}";