mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Bugfixed with !test
This commit is contained in:
parent
59f1ef0594
commit
c02c09a237
@ -456,8 +456,6 @@ namespace FFXIVClassic_Lobby_Server
|
|||||||
|
|
||||||
private void doWeather(ConnectedPlayer client, string weatherID)
|
private void doWeather(ConnectedPlayer client, string weatherID)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
long weather = Convert.ToInt64(weatherID);
|
long weather = Convert.ToInt64(weatherID);
|
||||||
|
|
||||||
if (client != null)
|
if (client != null)
|
||||||
@ -568,8 +566,15 @@ namespace FFXIVClassic_Lobby_Server
|
|||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region !dev
|
#region !test
|
||||||
else if (split[0].Equals("test"))
|
else if (split[0].Equals("test"))
|
||||||
|
{
|
||||||
|
if (split.Length == 1)
|
||||||
|
{
|
||||||
|
// catch invalid commands
|
||||||
|
sendMessage(client, Resources.CPhelp);
|
||||||
|
}
|
||||||
|
else if (split.Length >= 2)
|
||||||
{
|
{
|
||||||
#region !test weather
|
#region !test weather
|
||||||
if (split[1].Equals("weather"))
|
if (split[1].Equals("weather"))
|
||||||
@ -586,6 +591,8 @@ namespace FFXIVClassic_Lobby_Server
|
|||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region !mypos
|
#region !mypos
|
||||||
|
@ -30,7 +30,7 @@ namespace FFXIVClassic_Map_Server.packets.send
|
|||||||
// 8018 - 8026 / 73554 - 73562 - NOT SUPPORTED in v1.23b
|
// 8018 - 8026 / 73554 - 73562 - NOT SUPPORTED in v1.23b
|
||||||
public const uint WEATHER_SEASONAL = 0x011F5B; // 8027 / 73563 - Snow in Black Shroud, nothing elsewhere
|
public const uint WEATHER_SEASONAL = 0x011F5B; // 8027 / 73563 - Snow in Black Shroud, nothing elsewhere
|
||||||
public const uint WEATHER_PRIMAL = 0x011F5C; // 8028 / 73564 - Howling Eye and Thornmarch Weather
|
public const uint WEATHER_PRIMAL = 0x011F5C; // 8028 / 73564 - Howling Eye and Thornmarch Weather
|
||||||
// 8029 / 73565 - Not supported
|
// 8029 / 73565 - NOT SUPPOPORTED in v1.23b
|
||||||
public const uint WEATHER_DALAMUD = 0x011F5E; // 8030 / 73566
|
public const uint WEATHER_DALAMUD = 0x011F5E; // 8030 / 73566
|
||||||
public const uint WEATHER_AURORA = 0x011F5F; // 8031 / 73567
|
public const uint WEATHER_AURORA = 0x011F5F; // 8031 / 73567
|
||||||
public const uint WEATHER_DALAMUDTHUNDER = 0x011F60; // 8032 / 73568
|
public const uint WEATHER_DALAMUDTHUNDER = 0x011F60; // 8032 / 73568
|
||||||
|
Loading…
Reference in New Issue
Block a user