fix Mount/Dismount

This commit is contained in:
Bluzume 2021-11-04 00:19:15 -04:00
parent 0ead78fa76
commit dbbde86843
3 changed files with 8 additions and 1 deletions

View file

@ -228,6 +228,7 @@ namespace HISP.Game
private static string buildCommonInfo(User user, int x, int y)
{
user.HorseWindowOpen = false;
string message = "";
message += buildPlayersHere(user, x, y);
message += buildNearbyString(x, y);
@ -2285,6 +2286,7 @@ namespace HISP.Game
public static string BuildHorseInformation(HorseInstance horse, User user)
{
bool isMyHorse = horse.Owner == user.Id;
user.HorseWindowOpen = true;
string message = "";
if (isMyHorse)
@ -2899,7 +2901,7 @@ namespace HISP.Game
{
user.MetaPriority = true;
string TileCode = specialTile.Code;
string TileArg = "";

View file

@ -87,6 +87,7 @@ namespace HISP.Player
public bool MuteLogins = false;
public string Gender;
public bool MetaPriority = false;
public bool HorseWindowOpen = false;
public bool Idle;
public int Facing;
public HorseInfo.Breed PawneerOrderBreed = null;

View file

@ -8017,6 +8017,8 @@ namespace HISP.Server
sender.SendPacket(rideHorsePacket);
UpdateUserFacingAndLocation(sender.LoggedinUser);
if (sender.LoggedinUser.HorseWindowOpen)
UpdateArea(sender);
}
public static void StopRidingHorse(GameClient sender)
{
@ -8027,6 +8029,8 @@ namespace HISP.Server
sender.SendPacket(rideHorsePacket);
UpdateUserFacingAndLocation(sender.LoggedinUser);
if (sender.LoggedinUser.HorseWindowOpen)
UpdateArea(sender);
}
public static bool ProcessMapCodeWithArg(GameClient forClient, World.SpecialTile tile)
{