Skip to content

Commit

Permalink
Change FallingGravel type to 70 and use WriteIntArray in DestroyEntit…
Browse files Browse the repository at this point in the history
…yPacke
  • Loading branch information
Nirad committed Nov 15, 2012
1 parent 21d0849 commit f41f428
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Chraft/Net/Packets/Packet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ public enum ObjectType : sbyte
ThrownSnowball = 61,
ThrownEgg = 62,
FallingSand = 70,
FallingGravel = 71,
FallingGravel = 70,
FishingFloat = 90,
}
}
Expand Down Expand Up @@ -1034,7 +1034,7 @@ public override void Write()
SetCapacity(2 + (EntitiesCount * sizeof(int)));

Writer.Write(EntitiesCount);
Writer.Write(EntitiesId);
Writer.WriteIntArray(EntitiesId);
}
}

Expand Down

0 comments on commit f41f428

Please sign in to comment.