added support to decimal coordinate teleportation

This commit is contained in:
CloudTronX 2025-03-15 12:22:53 -07:00
parent 23c6f57bb1
commit 209bd16248

View File

@ -21,11 +21,6 @@ namespace Campofinale.Commands.Handlers
return;
}
for (int i=0; i < args.Length; i++)
{
args[i] = Uri.UnescapeDataString(args[i]).Replace(".", ",");
}
float x, y, z;
x = args[0] == "~" ? target.position.x : float.Parse(args[0]);