@@ -46,8 +46,8 @@ namespace MiNET.Net
4646{
4747 public class McpeProtocolInfo
4848 {
49- public const int ProtocolVersion = 662 ;
50- public const string GameVersion = "1.20.70 " ;
49+ public const int ProtocolVersion = 671 ;
50+ public const string GameVersion = "1.20.80 " ;
5151 }
5252
5353 public interface IMcpeMessageHandler
@@ -2288,6 +2288,7 @@ public partial class McpeResourcePackStack : Packet<McpeResourcePackStack>
22882288 public string gameVersion ; // = null;
22892289 public Experiments experiments ; // = null;
22902290 public bool experimentsPreviouslyToggled ; // = null;
2291+ public bool hasEditorPacks ; // = null;
22912292
22922293 public McpeResourcePackStack ( )
22932294 {
@@ -2307,6 +2308,7 @@ protected override void EncodePacket()
23072308 Write ( gameVersion ) ;
23082309 Write ( experiments ) ;
23092310 Write ( experimentsPreviouslyToggled ) ;
2311+ Write ( hasEditorPacks ) ;
23102312
23112313 AfterEncode ( ) ;
23122314 }
@@ -2326,6 +2328,7 @@ protected override void DecodePacket()
23262328 gameVersion = ReadString ( ) ;
23272329 experiments = ReadExperiments ( ) ;
23282330 experimentsPreviouslyToggled = ReadBool ( ) ;
2331+ hasEditorPacks = ReadBool ( ) ;
23292332
23302333 AfterDecode ( ) ;
23312334 }
@@ -2343,6 +2346,7 @@ protected override void ResetPacket()
23432346 gameVersion = default ( string ) ;
23442347 experiments = default ( Experiments ) ;
23452348 experimentsPreviouslyToggled = default ( bool ) ;
2349+ hasEditorPacks = default ( bool ) ;
23462350 }
23472351
23482352 }
0 commit comments