mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-09 22:14:39 +02:00
Found out the second weather packet value is a transition time.
This commit is contained in:
parent
b45390adb6
commit
f0ec2125ac
5 changed files with 42 additions and 36 deletions
|
@ -26,9 +26,9 @@ namespace FFXIVClassic_Map_Server.lua
|
|||
player.playerSession.queuePacket(SetMusicPacket.buildPacket(player.actorId, musicID, playMode), true, false);
|
||||
}
|
||||
|
||||
public void setWeather(uint weatherID)
|
||||
public void setWeather(ushort weatherID)
|
||||
{
|
||||
player.playerSession.queuePacket(SetWeatherPacket.buildPacket(player.actorId, weatherID, true), true, false);
|
||||
player.playerSession.queuePacket(SetWeatherPacket.buildPacket(player.actorId, weatherID, 1), true, false);
|
||||
}
|
||||
|
||||
public void getParameter(string paramName)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue