Skip to content

Commit

Permalink
Dummies Aggro Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FallenDev committed Nov 29, 2023
1 parent 8d3953d commit e36110b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Chaos.Networking/Serializers/MapInfoSerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public override void Serialize(ref SpanWriter writer, MapInfoArgs args)
writer.WriteByte(args.Width);
writer.WriteByte(args.Height);
writer.WriteByte(args.Flags);
writer.WriteBytes(new byte[2]);
writer.WriteUInt16(ushort.MinValue);
writer.WriteUInt16(args.CheckSum);
writer.WriteString8(args.Name);
}
Expand Down

0 comments on commit e36110b

Please sign in to comment.