~ruther/Nostale-Anonymizer

ref: d8fdeb7455a0a2431d7c704c5ac0154dd3c9be3e Nostale-Anonymizer/src/Anonymizer/Movers/Basic/CInfoPacketMover.cs -rw-r--r-- 934 bytes
d8fdeb74 — Rutherther chore: add README.md 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
//  CInfoPacketMover.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using NosSmooth.Packets.Server.Character;

namespace Anonymizer.Movers.Basic;

/// <inheritdoc />
public class CInfoPacketMover : AbstractMover<CInfoPacket>
{
    /// <inheritdoc />
    public override CInfoPacket Move(IAnonymizer anonymizer, CInfoPacket packet)
        => packet with
        {
            CharacterId = anonymizer.AnonymizeId(packet.CharacterId),
            Name = anonymizer.AnonymizeName(packet.Name),
            FamilyId = packet.FamilyId is null ? null : anonymizer.AnonymizeName(packet.FamilyId),
            FamilyName = packet.FamilyName is null ? null : anonymizer.AnonymizeName(packet.FamilyName),
            GroupId = packet.GroupId is null ? null : anonymizer.AnonymizeId(packet.GroupId.Value)
        };
}
Do not follow this link