~ruther/Nostale-Anonymizer

ref: 83b07faddf2472820b941834fb2033fb423fb285 Nostale-Anonymizer/src/Anonymizer/Movers/Basic/RdlstfPacketMover.cs -rw-r--r-- 810 bytes
83b07fad — František Boháček feat: add rdlstf packet mover 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
25
26
27
28
//
//  RdlstfPacketMover.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.Raids;

namespace Anonymizer.Movers.Basic;

/// <inheritdoc />
public class RdlstfPacketMover : AbstractMover<RdlstfPacket>
{
    /// <inheritdoc />
    public override RdlstfPacket Move(IAnonymizer anonymizer, RdlstfPacket packet)
        => packet with
        {
            Players = packet.Players.Select
                (
                    p => p with
                    {
                        Id = anonymizer.AnonymizeId(p.Id),
                        Name = anonymizer.AnonymizeName(p.Name)
                    }
                )
                .ToArray()
        };
}
Do not follow this link