~ruther/NosSmooth

728719748a5661a393bbf5d6ca55f44eb48a0c1d — NotKappa 2 years ago e8774a7
Rename IsPartner to PartnerMask
M Core/NosSmooth.Game/PacketHandlers/Map/InResponder.cs => Core/NosSmooth.Game/PacketHandlers/Map/InResponder.cs +1 -1
@@ 201,7 201,7 @@ public class InResponder : IPacketResponder<InPacket>
            Level = monsterInfo?.Level ?? null,
            IsSitting = nonPlayerSubPacket.IsSitting,
            OwnerId = nonPlayerSubPacket.OwnerId,
            IsPartner = nonPlayerSubPacket.IsPartner
            IsPartner = nonPlayerSubPacket.PartnerMask == 1
        };
    }


M Packets/NosSmooth.Packets/Server/Maps/InNonPlayerSubPacket.cs => Packets/NosSmooth.Packets/Server/Maps/InNonPlayerSubPacket.cs +2 -2
@@ 25,7 25,7 @@ namespace NosSmooth.Packets.Server.Maps;
/// <param name="IsSitting">Whether the entity is sitting.</param>
/// <param name="MorphVNum">The id of the morph (for special cards an such).</param>
/// <param name="Name">The name of the entity, if any.</param>
/// <param name="IsPartner">Whether the entity is a partner.</param>
/// <param name="PartnerMask">Whether the entity is a partner.</param>
/// <param name="Unknown2">Unknown.</param>
/// <param name="Unknown3">Unknown.</param>
/// <param name="Skill1">The first skill VNum of the entity.</param>


@@ 62,7 62,7 @@ public record InNonPlayerSubPacket
    [PacketIndex(9)]
    NameString? Name,
    [PacketIndex(10)]
    bool? IsPartner,
    sbyte PartnerMask,
    [PacketIndex(11)]
    string? Unknown2,
    [PacketIndex(12)]

Do not follow this link