This commit is contained in:
TheManii 2016-04-09 13:26:46 -07:00
parent 10d4d7c148
commit 02e9b52a02

View File

@ -393,7 +393,7 @@ namespace FFXIVClassic_Lobby_Server
r = client.getActor().rotation; r = client.getActor().rotation;
#endregion #endregion
sendMessage(client, String.Format("Warping to: ZoneID: {0} X: {1}, Y: {2}, Z: {3}", zoneId, x, x, y)); sendMessage(client, String.Format("Warping to: ZoneID: {0} X: {1}, Y: {2}, Z: {3}", zoneId, x, y, z));
doWarp(client, zoneId, privatearea, x, y, z, r); doWarp(client, zoneId, privatearea, x, y, z, r);
} }
else if (split.Length == 5) else if (split.Length == 5)
@ -419,7 +419,7 @@ namespace FFXIVClassic_Lobby_Server
} }
#endregion #endregion
sendMessage(client, String.Format("Warping to: ZoneID: {0} X: {1}, Y: {2}, Z: {3}", zoneId, x, x, y)); sendMessage(client, String.Format("Warping to: ZoneID: {0} X: {1}, Y: {2}, Z: {3}", zoneId, x, y, z));
doWarp(client, zoneId, privatearea, x, y, z, r); doWarp(client, zoneId, privatearea, x, y, z, r);
} }
else if (split.Length == 6) else if (split.Length == 6)
@ -447,7 +447,7 @@ namespace FFXIVClassic_Lobby_Server
privatearea = split[2]; privatearea = split[2];
#endregion #endregion
sendMessage(client, String.Format("Warping to: ZoneID: {0} X: {1}, Y: {2}, Z: {3}", zoneId, x, x, y)); sendMessage(client, String.Format("Warping to: ZoneID: {0} X: {1}, Y: {2}, Z: {3}", zoneId, x, y, z));
doWarp(client, zoneId, privatearea, x, y, z, r); doWarp(client, zoneId, privatearea, x, y, z, r);
} }
else else