We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30f4881 commit d047e8dCopy full SHA for d047e8d
MultiplayerExtensions/Beatmaps/PreviewBeatmapPacket.cs
@@ -48,7 +48,7 @@ public void Serialize(NetDataWriter writer)
48
writer.Put(this.songDuration);
49
50
writer.Put(this.characteristic);
51
- writer.PutVarUInt((uint)this.difficulty);
+ writer.Put((uint)this.difficulty);
52
}
53
54
public void Deserialize(NetDataReader reader)
@@ -63,7 +63,7 @@ public void Deserialize(NetDataReader reader)
63
this.songDuration = reader.GetFloat();
64
65
this.characteristic = reader.GetString();
66
- this.difficulty = (BeatmapDifficulty)reader.GetVarUInt();
+ this.difficulty = (BeatmapDifficulty)reader.GetUInt();
67
68
69
public void Release()
0 commit comments