mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-23 13:17:45 +00:00
Fixed Bugs
This commit is contained in:
parent
fb18c1fbe4
commit
46350a0724
3 changed files with 1604 additions and 1609 deletions
|
@ -704,11 +704,6 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
QueuePacket(SetMusicPacket.BuildPacket(actorId, musicId, 1));
|
||||
}
|
||||
|
||||
public void ChangeMusicWithEffect(ushort musicId, ushort effect)
|
||||
{
|
||||
QueuePacket(SetMusicPacket.BuildPacket(actorId, musicId, effect));
|
||||
}
|
||||
|
||||
public void SendChocoboAppearance()
|
||||
{
|
||||
BroadcastPacket(SetCurrentMountChocoboPacket.BuildPacket(actorId, chocoboAppearance), true);
|
||||
|
@ -1268,17 +1263,12 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
|
||||
}
|
||||
|
||||
public void issueChocobo(byte appearanceId, string name)
|
||||
public void IssueChocobo(byte appearanceId, string nameResponse)
|
||||
{
|
||||
Database.IssuePlayerChocobo(this, appearanceId, name);
|
||||
Database.IssuePlayerChocobo(this, appearanceId, nameResponse);
|
||||
hasChocobo = true;
|
||||
chocoboAppearance = appearanceId;
|
||||
chocoboName = name;
|
||||
}
|
||||
|
||||
public void changeChocoboAppearance(int appearanceId)
|
||||
{
|
||||
|
||||
chocoboName = nameResponse;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,6 +25,11 @@ namespace FFXIVClassic_Map_Server.lua
|
|||
player.playerSession.QueuePacket(SetWeatherPacket.BuildPacket(player.actorId, weatherID, 1), true, false);
|
||||
}
|
||||
|
||||
public void IssueChocobo(int appearanceId, string name)
|
||||
{
|
||||
player.IssueChocobo((byte) appearanceId, name);
|
||||
}
|
||||
|
||||
public void GetParameter(string paramName)
|
||||
{
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue