Tp constructor
Sets the location of an Entity to a new Location and Rotation(optional).
Implementation
Tp(this.entity, {required Location to, dynamic facing, Rotation? rot}) {
this.to = to.toString();
if (rot != null) this.to += ' $rot';
_setFacing(facing);
}