mcbe-leveldb 1.5.7 → 1.6.0-jsonly

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/nbtSchemas.js CHANGED
@@ -420,6 +420,174 @@ export var NBTSchemas;
420
420
  },
421
421
  },
422
422
  },
423
+ ChunkLoadedRequest: {
424
+ id: "ChunkLoadedRequest",
425
+ title: "The ChunkLoadedRequest schema.",
426
+ description: "UNDOCUMENTED.",
427
+ type: "compound",
428
+ properties: {
429
+ ActionType: {
430
+ type: "byte",
431
+ description: "UNDOCUMENTED.",
432
+ examples: [{ type: "byte", value: 2 }],
433
+ },
434
+ AllowNonTickingChunks: {
435
+ type: "byte",
436
+ description: "UNDOCUMENTED.",
437
+ enumDescriptions: ["false", "true"],
438
+ enum: [
439
+ { type: "byte", value: 0 },
440
+ { type: "byte", value: 1 },
441
+ ],
442
+ },
443
+ AnimatePlacement: {
444
+ type: "byte",
445
+ description: "UNDOCUMENTED.",
446
+ enumDescriptions: ["false", "true"],
447
+ enum: [
448
+ { type: "byte", value: 0 },
449
+ { type: "byte", value: 1 },
450
+ ],
451
+ },
452
+ AnimationMode: {
453
+ type: "byte",
454
+ description: "UNDOCUMENTED.",
455
+ examples: [{ type: "byte", value: 0 }],
456
+ },
457
+ AnimationSeconds: {
458
+ type: "float",
459
+ description: "UNDOCUMENTED.",
460
+ },
461
+ AreaType: {
462
+ type: "byte",
463
+ description: "UNDOCUMENTED.",
464
+ examples: [{ type: "byte", value: 0 }],
465
+ },
466
+ BlocksPlaced: {
467
+ type: "int",
468
+ description: "UNDOCUMENTED.",
469
+ examples: [{ type: "int", value: 0 }],
470
+ },
471
+ ChunkRequestListType: {
472
+ type: "byte",
473
+ description: "UNDOCUMENTED.",
474
+ examples: [{ type: "byte", value: 1 }],
475
+ },
476
+ IncludeBlocks: {
477
+ type: "byte",
478
+ description: "UNDOCUMENTED.",
479
+ enumDescriptions: ["false", "true"],
480
+ enum: [
481
+ { type: "byte", value: 0 },
482
+ { type: "byte", value: 1 },
483
+ ],
484
+ },
485
+ IncludeEntities: {
486
+ type: "byte",
487
+ description: "UNDOCUMENTED.",
488
+ enumDescriptions: ["false", "true"],
489
+ enum: [
490
+ { type: "byte", value: 0 },
491
+ { type: "byte", value: 1 },
492
+ ],
493
+ },
494
+ Integrity: {
495
+ type: "float",
496
+ description: "UNDOCUMENTED.",
497
+ examples: [{ type: "float", value: 100 }],
498
+ },
499
+ IntegritySeed: {
500
+ type: "int",
501
+ description: "UNDOCUMENTED.",
502
+ examples: [{ type: "int", value: 0 }],
503
+ },
504
+ MaxX: {
505
+ type: "int",
506
+ description: "UNDOCUMENTED.",
507
+ examples: [{ type: "int", value: -1 }],
508
+ },
509
+ MaxZ: {
510
+ type: "int",
511
+ description: "UNDOCUMENTED.",
512
+ examples: [{ type: "int", value: -1 }],
513
+ },
514
+ MinX: {
515
+ type: "int",
516
+ description: "UNDOCUMENTED.",
517
+ examples: [{ type: "int", value: -2 }],
518
+ },
519
+ MinZ: {
520
+ type: "int",
521
+ description: "UNDOCUMENTED.",
522
+ examples: [{ type: "int", value: -2 }],
523
+ },
524
+ Mirror: {
525
+ type: "byte",
526
+ description: "UNDOCUMENTED.",
527
+ examples: [{ type: "byte", value: 0 }],
528
+ },
529
+ Name: {
530
+ type: "string",
531
+ description: "UNDOCUMENTED.",
532
+ examples: [{ type: "string", value: "mystructure:Tree1" }],
533
+ },
534
+ OffsetX: {
535
+ type: "int",
536
+ description: "UNDOCUMENTED.",
537
+ examples: [{ type: "int", value: 0 }],
538
+ },
539
+ OffsetY: {
540
+ type: "int",
541
+ description: "UNDOCUMENTED.",
542
+ examples: [{ type: "int", value: 0 }],
543
+ },
544
+ OffsetZ: {
545
+ type: "int",
546
+ description: "UNDOCUMENTED.",
547
+ examples: [{ type: "int", value: 0 }],
548
+ },
549
+ PosX: {
550
+ type: "int",
551
+ description: "UNDOCUMENTED.",
552
+ examples: [{ type: "int", value: -20 }],
553
+ },
554
+ PosY: {
555
+ type: "int",
556
+ description: "UNDOCUMENTED.",
557
+ examples: [{ type: "int", value: -1 }],
558
+ },
559
+ PosZ: {
560
+ type: "int",
561
+ description: "UNDOCUMENTED.",
562
+ examples: [{ type: "int", value: -22 }],
563
+ },
564
+ Rotation: {
565
+ type: "byte",
566
+ description: "UNDOCUMENTED.",
567
+ examples: [{ type: "byte", value: 0 }],
568
+ },
569
+ SizeX: {
570
+ type: "int",
571
+ description: "UNDOCUMENTED.",
572
+ examples: [{ type: "int", value: 8 }],
573
+ },
574
+ SizeY: {
575
+ type: "int",
576
+ description: "UNDOCUMENTED.",
577
+ examples: [{ type: "int", value: 100 }],
578
+ },
579
+ SizeZ: {
580
+ type: "int",
581
+ description: "UNDOCUMENTED.",
582
+ examples: [{ type: "int", value: 7 }],
583
+ },
584
+ TickQueued: {
585
+ type: "long",
586
+ description: "UNDOCUMENTED.",
587
+ examples: [{ type: "long", value: [0, 0] }],
588
+ },
589
+ },
590
+ },
423
591
  Data3D: {
424
592
  id: "Data3D",
425
593
  title: "The Data3D schema.",
@@ -533,7 +701,7 @@ export var NBTSchemas;
533
701
  attackmobs: {
534
702
  type: "byte",
535
703
  description: "1 or 0 (true/false) - true if the player can attack mobs.",
536
- enumDescriptions: ["true", "false"],
704
+ enumDescriptions: ["false", "true"],
537
705
  enum: [
538
706
  { type: "byte", value: 0 },
539
707
  { type: "byte", value: 1 },
@@ -542,7 +710,7 @@ export var NBTSchemas;
542
710
  attackplayers: {
543
711
  type: "byte",
544
712
  description: "1 or 0 (true/false) - true if the player can attack other players.",
545
- enumDescriptions: ["true", "false"],
713
+ enumDescriptions: ["false", "true"],
546
714
  enum: [
547
715
  { type: "byte", value: 0 },
548
716
  { type: "byte", value: 1 },
@@ -551,7 +719,7 @@ export var NBTSchemas;
551
719
  build: {
552
720
  type: "byte",
553
721
  description: "1 or 0 (true/false) - true if the player can place blocks.",
554
- enumDescriptions: ["true", "false"],
722
+ enumDescriptions: ["false", "true"],
555
723
  enum: [
556
724
  { type: "byte", value: 0 },
557
725
  { type: "byte", value: 1 },
@@ -560,7 +728,7 @@ export var NBTSchemas;
560
728
  doorsandswitches: {
561
729
  type: "byte",
562
730
  description: "1 or 0 (true/false) - true if the player is able to interact with redstone components.",
563
- enumDescriptions: ["true", "false"],
731
+ enumDescriptions: ["false", "true"],
564
732
  enum: [
565
733
  { type: "byte", value: 0 },
566
734
  { type: "byte", value: 1 },
@@ -569,7 +737,7 @@ export var NBTSchemas;
569
737
  flying: {
570
738
  type: "byte",
571
739
  description: "1 or 0 (true/false) - true if the player is currently flying.",
572
- enumDescriptions: ["true", "false"],
740
+ enumDescriptions: ["false", "true"],
573
741
  enum: [
574
742
  { type: "byte", value: 0 },
575
743
  { type: "byte", value: 1 },
@@ -586,7 +754,7 @@ export var NBTSchemas;
586
754
  instabuild: {
587
755
  type: "byte",
588
756
  description: "1 or 0 (true/false) - true if the player can instantly destroy blocks.",
589
- enumDescriptions: ["true", "false"],
757
+ enumDescriptions: ["false", "true"],
590
758
  enum: [
591
759
  { type: "byte", value: 0 },
592
760
  { type: "byte", value: 1 },
@@ -595,7 +763,7 @@ export var NBTSchemas;
595
763
  invulnerable: {
596
764
  type: "byte",
597
765
  description: "1 or 0 (true/false) - true if the player is immune to all damage and harmful effects.",
598
- enumDescriptions: ["true", "false"],
766
+ enumDescriptions: ["false", "true"],
599
767
  enum: [
600
768
  { type: "byte", value: 0 },
601
769
  { type: "byte", value: 1 },
@@ -604,7 +772,7 @@ export var NBTSchemas;
604
772
  lightning: {
605
773
  type: "byte",
606
774
  description: "1 or 0 (true/false) - true if the player was struck by lightning.",
607
- enumDescriptions: ["true", "false"],
775
+ enumDescriptions: ["false", "true"],
608
776
  enum: [
609
777
  { type: "byte", value: 0 },
610
778
  { type: "byte", value: 1 },
@@ -613,7 +781,7 @@ export var NBTSchemas;
613
781
  mayfly: {
614
782
  type: "byte",
615
783
  description: "1 or 0 (true/false) - true if the player can fly.",
616
- enumDescriptions: ["true", "false"],
784
+ enumDescriptions: ["false", "true"],
617
785
  enum: [
618
786
  { type: "byte", value: 0 },
619
787
  { type: "byte", value: 1 },
@@ -622,7 +790,7 @@ export var NBTSchemas;
622
790
  mine: {
623
791
  type: "byte",
624
792
  description: "1 or 0 (true/false) - true if the player can destroy blocks.",
625
- enumDescriptions: ["true", "false"],
793
+ enumDescriptions: ["false", "true"],
626
794
  enum: [
627
795
  { type: "byte", value: 0 },
628
796
  { type: "byte", value: 1 },
@@ -631,7 +799,7 @@ export var NBTSchemas;
631
799
  mute: {
632
800
  type: "byte",
633
801
  description: "1 or 0 (true/false) - true if the player messages cannot be seen by other players.",
634
- enumDescriptions: ["true", "false"],
802
+ enumDescriptions: ["false", "true"],
635
803
  enum: [
636
804
  { type: "byte", value: 0 },
637
805
  { type: "byte", value: 1 },
@@ -640,7 +808,7 @@ export var NBTSchemas;
640
808
  noclip: {
641
809
  type: "byte",
642
810
  description: "1 or 0 (true/false) - true if the player can phase through blocks.",
643
- enumDescriptions: ["true", "false"],
811
+ enumDescriptions: ["false", "true"],
644
812
  enum: [
645
813
  { type: "byte", value: 0 },
646
814
  { type: "byte", value: 1 },
@@ -649,7 +817,7 @@ export var NBTSchemas;
649
817
  op: {
650
818
  type: "byte",
651
819
  description: "1 or 0 (true/false) - true if the player has operator commands.",
652
- enumDescriptions: ["true", "false"],
820
+ enumDescriptions: ["false", "true"],
653
821
  enum: [
654
822
  { type: "byte", value: 0 },
655
823
  { type: "byte", value: 1 },
@@ -658,7 +826,7 @@ export var NBTSchemas;
658
826
  opencontainers: {
659
827
  type: "byte",
660
828
  description: "1 or 0 (true/false) - true if the player is able to open containers.",
661
- enumDescriptions: ["true", "false"],
829
+ enumDescriptions: ["false", "true"],
662
830
  enum: [
663
831
  { type: "byte", value: 0 },
664
832
  { type: "byte", value: 1 },
@@ -683,7 +851,7 @@ export var NBTSchemas;
683
851
  teleport: {
684
852
  type: "byte",
685
853
  description: "1 or 0 (true/false) - true if the player is allowed to teleport.",
686
- enumDescriptions: ["true", "false"],
854
+ enumDescriptions: ["false", "true"],
687
855
  enum: [
688
856
  { type: "byte", value: 0 },
689
857
  { type: "byte", value: 1 },
@@ -700,7 +868,7 @@ export var NBTSchemas;
700
868
  worldbuilder: {
701
869
  type: "byte",
702
870
  description: "1 or 0 (true/false) - true if the player is a world builder.",
703
- enumDescriptions: ["true", "false"],
871
+ enumDescriptions: ["false", "true"],
704
872
  enum: [
705
873
  { type: "byte", value: 0 },
706
874
  { type: "byte", value: 1 },
@@ -712,7 +880,7 @@ export var NBTSchemas;
712
880
  allowdestructiveobjects: {
713
881
  type: "byte",
714
882
  description: "The `allowdestructiveobjects` [game rule](game rule).",
715
- enumDescriptions: ["true", "false"],
883
+ enumDescriptions: ["false", "true"],
716
884
  enum: [
717
885
  { type: "byte", value: 0 },
718
886
  { type: "byte", value: 1 },
@@ -721,7 +889,7 @@ export var NBTSchemas;
721
889
  allowmobs: {
722
890
  type: "byte",
723
891
  description: "The `allowmobs` [game rule](game rule).",
724
- enumDescriptions: ["true", "false"],
892
+ enumDescriptions: ["false", "true"],
725
893
  enum: [
726
894
  { type: "byte", value: 0 },
727
895
  { type: "byte", value: 1 },
@@ -742,7 +910,7 @@ export var NBTSchemas;
742
910
  bonusChestEnabled: {
743
911
  type: "byte",
744
912
  description: "1 or 0 (true/false) - true if the bonus chest is enabled.",
745
- enumDescriptions: ["true", "false"],
913
+ enumDescriptions: ["false", "true"],
746
914
  enum: [
747
915
  { type: "byte", value: 0 },
748
916
  { type: "byte", value: 1 },
@@ -751,7 +919,7 @@ export var NBTSchemas;
751
919
  bonusChestSpawned: {
752
920
  type: "byte",
753
921
  description: "1 or 0 (true/false) - true if the bonus chest has been placed in the world. Turning this to false spawns another bonus chest near the spawn coordinates.",
754
- enumDescriptions: ["true", "false"],
922
+ enumDescriptions: ["false", "true"],
755
923
  enum: [
756
924
  { type: "byte", value: 0 },
757
925
  { type: "byte", value: 1 },
@@ -760,7 +928,7 @@ export var NBTSchemas;
760
928
  codebuilder: {
761
929
  type: "byte",
762
930
  description: "UNDOCUMENTED.",
763
- enumDescriptions: ["true", "false"],
931
+ enumDescriptions: ["false", "true"],
764
932
  enum: [
765
933
  { type: "byte", value: 0 },
766
934
  { type: "byte", value: 1 },
@@ -769,7 +937,7 @@ export var NBTSchemas;
769
937
  commandblockoutput: {
770
938
  type: "byte",
771
939
  description: "The `commandblockoutput` [game rule](game rule).",
772
- enumDescriptions: ["true", "false"],
940
+ enumDescriptions: ["false", "true"],
773
941
  enum: [
774
942
  { type: "byte", value: 0 },
775
943
  { type: "byte", value: 1 },
@@ -778,7 +946,7 @@ export var NBTSchemas;
778
946
  CenterMapsToOrigin: {
779
947
  type: "byte",
780
948
  description: "1 or 0 (true/false) - true if the maps should be on a grid or centered to exactly where they are created. Default to 0.",
781
- enumDescriptions: ["true", "false"],
949
+ enumDescriptions: ["false", "true"],
782
950
  enum: [
783
951
  { type: "byte", value: 0 },
784
952
  { type: "byte", value: 1 },
@@ -787,7 +955,7 @@ export var NBTSchemas;
787
955
  commandblocksenabled: {
788
956
  type: "byte",
789
957
  description: "The `commandblocksenabled` [game rule](game rule).",
790
- enumDescriptions: ["true", "false"],
958
+ enumDescriptions: ["false", "true"],
791
959
  enum: [
792
960
  { type: "byte", value: 0 },
793
961
  { type: "byte", value: 1 },
@@ -796,7 +964,7 @@ export var NBTSchemas;
796
964
  commandsEnabled: {
797
965
  type: "byte",
798
966
  description: "1 or 0 (true/false) - true if cheats are on.",
799
- enumDescriptions: ["true", "false"],
967
+ enumDescriptions: ["false", "true"],
800
968
  enum: [
801
969
  { type: "byte", value: 0 },
802
970
  { type: "byte", value: 1 },
@@ -805,7 +973,7 @@ export var NBTSchemas;
805
973
  ConfirmedPlatformLockedContent: {
806
974
  type: "byte",
807
975
  description: "1 or 0 (true/false) - tells if the world has Platform-Specific texture packs or content. Used to prevent cross play in specific worlds, that use assets allowed only on specific consoles.",
808
- enumDescriptions: ["true", "false"],
976
+ enumDescriptions: ["false", "true"],
809
977
  enum: [
810
978
  { type: "byte", value: 0 },
811
979
  { type: "byte", value: 1 },
@@ -839,7 +1007,7 @@ export var NBTSchemas;
839
1007
  dodaylightcycle: {
840
1008
  type: "byte",
841
1009
  description: "The `dodaylightcycle` [game rule](game rule).",
842
- enumDescriptions: ["true", "false"],
1010
+ enumDescriptions: ["false", "true"],
843
1011
  enum: [
844
1012
  { type: "byte", value: 0 },
845
1013
  { type: "byte", value: 1 },
@@ -848,7 +1016,7 @@ export var NBTSchemas;
848
1016
  doentitiydrops: {
849
1017
  type: "byte",
850
1018
  description: "The `doentitiydrops` [game rule](game rule).",
851
- enumDescriptions: ["true", "false"],
1019
+ enumDescriptions: ["false", "true"],
852
1020
  enum: [
853
1021
  { type: "byte", value: 0 },
854
1022
  { type: "byte", value: 1 },
@@ -857,7 +1025,7 @@ export var NBTSchemas;
857
1025
  dofiretick: {
858
1026
  type: "byte",
859
1027
  description: "The `dofiretick` [game rule](game rule).",
860
- enumDescriptions: ["true", "false"],
1028
+ enumDescriptions: ["false", "true"],
861
1029
  enum: [
862
1030
  { type: "byte", value: 0 },
863
1031
  { type: "byte", value: 1 },
@@ -866,7 +1034,7 @@ export var NBTSchemas;
866
1034
  doimmediaterespawn: {
867
1035
  type: "byte",
868
1036
  description: "The `doimmediaterespawn` [game rule](game rule).",
869
- enumDescriptions: ["true", "false"],
1037
+ enumDescriptions: ["false", "true"],
870
1038
  enum: [
871
1039
  { type: "byte", value: 0 },
872
1040
  { type: "byte", value: 1 },
@@ -875,7 +1043,7 @@ export var NBTSchemas;
875
1043
  doinsomnia: {
876
1044
  type: "byte",
877
1045
  description: "The `doinsomnia` [game rule](game rule).",
878
- enumDescriptions: ["true", "false"],
1046
+ enumDescriptions: ["false", "true"],
879
1047
  enum: [
880
1048
  { type: "byte", value: 0 },
881
1049
  { type: "byte", value: 1 },
@@ -884,7 +1052,7 @@ export var NBTSchemas;
884
1052
  dolimitedcrafting: {
885
1053
  type: "byte",
886
1054
  description: "The `dolimitedcrafting` [game rule](game rule).",
887
- enumDescriptions: ["true", "false"],
1055
+ enumDescriptions: ["false", "true"],
888
1056
  enum: [
889
1057
  { type: "byte", value: 0 },
890
1058
  { type: "byte", value: 1 },
@@ -893,7 +1061,7 @@ export var NBTSchemas;
893
1061
  domobloot: {
894
1062
  type: "byte",
895
1063
  description: "The `domobloot` [game rule](game rule).",
896
- enumDescriptions: ["true", "false"],
1064
+ enumDescriptions: ["false", "true"],
897
1065
  enum: [
898
1066
  { type: "byte", value: 0 },
899
1067
  { type: "byte", value: 1 },
@@ -902,7 +1070,7 @@ export var NBTSchemas;
902
1070
  domobspawning: {
903
1071
  type: "byte",
904
1072
  description: "The `domobspawning` [game rule](game rule).",
905
- enumDescriptions: ["true", "false"],
1073
+ enumDescriptions: ["false", "true"],
906
1074
  enum: [
907
1075
  { type: "byte", value: 0 },
908
1076
  { type: "byte", value: 1 },
@@ -911,7 +1079,7 @@ export var NBTSchemas;
911
1079
  dotiledrops: {
912
1080
  type: "byte",
913
1081
  description: "The `dotiledrops` [game rule](game rule).",
914
- enumDescriptions: ["true", "false"],
1082
+ enumDescriptions: ["false", "true"],
915
1083
  enum: [
916
1084
  { type: "byte", value: 0 },
917
1085
  { type: "byte", value: 1 },
@@ -920,7 +1088,7 @@ export var NBTSchemas;
920
1088
  doweathercycle: {
921
1089
  type: "byte",
922
1090
  description: "The `doweathercycle` [game rule](game rule).",
923
- enumDescriptions: ["true", "false"],
1091
+ enumDescriptions: ["false", "true"],
924
1092
  enum: [
925
1093
  { type: "byte", value: 0 },
926
1094
  { type: "byte", value: 1 },
@@ -929,7 +1097,7 @@ export var NBTSchemas;
929
1097
  drowningdamage: {
930
1098
  type: "byte",
931
1099
  description: "The `drowningdamage` [game rule](game rule).",
932
- enumDescriptions: ["true", "false"],
1100
+ enumDescriptions: ["false", "true"],
933
1101
  enum: [
934
1102
  { type: "byte", value: 0 },
935
1103
  { type: "byte", value: 1 },
@@ -938,7 +1106,7 @@ export var NBTSchemas;
938
1106
  educationFeaturesEnabled: {
939
1107
  type: "byte",
940
1108
  description: "UNDOCUMENTED.",
941
- enumDescriptions: ["true", "false"],
1109
+ enumDescriptions: ["false", "true"],
942
1110
  enum: [
943
1111
  { type: "byte", value: 0 },
944
1112
  { type: "byte", value: 1 },
@@ -947,7 +1115,7 @@ export var NBTSchemas;
947
1115
  editorWorldType: {
948
1116
  type: "byte",
949
1117
  description: "Marks a world as a [bedrock editor](Bedrock Editor) world (worlds with this set to 1 only show up when in editor mode).",
950
- enumDescriptions: ["true", "false"],
1118
+ enumDescriptions: ["false", "true"],
951
1119
  enum: [
952
1120
  { type: "byte", value: 0 },
953
1121
  { type: "byte", value: 1 },
@@ -968,7 +1136,7 @@ export var NBTSchemas;
968
1136
  type: "byte",
969
1137
  value: 0,
970
1138
  },
971
- enumDescriptions: ["true", "false"],
1139
+ enumDescriptions: ["false", "true"],
972
1140
  enum: [
973
1141
  { type: "byte", value: 0 },
974
1142
  { type: "byte", value: 1 },
@@ -994,7 +1162,7 @@ export var NBTSchemas;
994
1162
  experiments_ever_used: {
995
1163
  type: "byte",
996
1164
  description: "1 or 0 (true/false) - true if the world is locked on [experimental gameplay](experimental gameplay).",
997
- enumDescriptions: ["true", "false"],
1165
+ enumDescriptions: ["false", "true"],
998
1166
  enum: [
999
1167
  { type: "byte", value: 0 },
1000
1168
  { type: "byte", value: 1 },
@@ -1003,7 +1171,7 @@ export var NBTSchemas;
1003
1171
  saved_with_toggled_experiments: {
1004
1172
  type: "byte",
1005
1173
  description: "1 or 0 (true/false) - true if the world has been saved with experiments on before.",
1006
- enumDescriptions: ["true", "false"],
1174
+ enumDescriptions: ["false", "true"],
1007
1175
  enum: [
1008
1176
  { type: "byte", value: 0 },
1009
1177
  { type: "byte", value: 1 },
@@ -1012,7 +1180,7 @@ export var NBTSchemas;
1012
1180
  gametest: {
1013
1181
  type: "byte",
1014
1182
  description: "1 or 0 (true/false) - true if the beta APIs experimental toggle is enabled.",
1015
- enumDescriptions: ["true", "false"],
1183
+ enumDescriptions: ["false", "true"],
1016
1184
  enum: [
1017
1185
  { type: "byte", value: 0 },
1018
1186
  { type: "byte", value: 1 },
@@ -1021,7 +1189,7 @@ export var NBTSchemas;
1021
1189
  camera_aim_assist: {
1022
1190
  type: "byte",
1023
1191
  description: "1 or 0 (true/false) - true if the camera aim assist experimental toggle is enabled.",
1024
- enumDescriptions: ["true", "false"],
1192
+ enumDescriptions: ["false", "true"],
1025
1193
  enum: [
1026
1194
  { type: "byte", value: 0 },
1027
1195
  { type: "byte", value: 1 },
@@ -1030,7 +1198,7 @@ export var NBTSchemas;
1030
1198
  data_driven_biomes: {
1031
1199
  type: "byte",
1032
1200
  description: "1 or 0 (true/false) - true if the data driven biomes experimental toggle is enabled.",
1033
- enumDescriptions: ["true", "false"],
1201
+ enumDescriptions: ["false", "true"],
1034
1202
  enum: [
1035
1203
  { type: "byte", value: 0 },
1036
1204
  { type: "byte", value: 1 },
@@ -1039,7 +1207,7 @@ export var NBTSchemas;
1039
1207
  experimental_creator_cameras: {
1040
1208
  type: "byte",
1041
1209
  description: "1 or 0 (true/false) - true if the experimental creator cameras experimental toggle is enabled.",
1042
- enumDescriptions: ["true", "false"],
1210
+ enumDescriptions: ["false", "true"],
1043
1211
  enum: [
1044
1212
  { type: "byte", value: 0 },
1045
1213
  { type: "byte", value: 1 },
@@ -1048,7 +1216,7 @@ export var NBTSchemas;
1048
1216
  jigsaw_structures: {
1049
1217
  type: "byte",
1050
1218
  description: "1 or 0 (true/false) - true if the jigsaw structures experimental toggle is enabled.",
1051
- enumDescriptions: ["true", "false"],
1219
+ enumDescriptions: ["false", "true"],
1052
1220
  enum: [
1053
1221
  { type: "byte", value: 0 },
1054
1222
  { type: "byte", value: 1 },
@@ -1057,7 +1225,7 @@ export var NBTSchemas;
1057
1225
  locator_bar: {
1058
1226
  type: "byte",
1059
1227
  description: "1 or 0 (true/false) - true if the locator bar experimental toggle is enabled.",
1060
- enumDescriptions: ["true", "false"],
1228
+ enumDescriptions: ["false", "true"],
1061
1229
  enum: [
1062
1230
  { type: "byte", value: 0 },
1063
1231
  { type: "byte", value: 1 },
@@ -1066,7 +1234,7 @@ export var NBTSchemas;
1066
1234
  upcoming_creator_features: {
1067
1235
  type: "byte",
1068
1236
  description: "1 or 0 (true/false) - true if the upcoming creator features experimental toggle is enabled.",
1069
- enumDescriptions: ["true", "false"],
1237
+ enumDescriptions: ["false", "true"],
1070
1238
  enum: [
1071
1239
  { type: "byte", value: 0 },
1072
1240
  { type: "byte", value: 1 },
@@ -1075,7 +1243,7 @@ export var NBTSchemas;
1075
1243
  y_2025_drop_1: {
1076
1244
  type: "byte",
1077
1245
  description: "1 or 0 (true/false) - true if the y_2025_drop_1 experimental toggle is enabled.",
1078
- enumDescriptions: ["true", "false"],
1246
+ enumDescriptions: ["false", "true"],
1079
1247
  enum: [
1080
1248
  { type: "byte", value: 0 },
1081
1249
  { type: "byte", value: 1 },
@@ -1084,7 +1252,7 @@ export var NBTSchemas;
1084
1252
  y_2025_drop_2: {
1085
1253
  type: "byte",
1086
1254
  description: "1 or 0 (true/false) - true if the y_2025_drop_2 experimental toggle is enabled.",
1087
- enumDescriptions: ["true", "false"],
1255
+ enumDescriptions: ["false", "true"],
1088
1256
  enum: [
1089
1257
  { type: "byte", value: 0 },
1090
1258
  { type: "byte", value: 1 },
@@ -1093,7 +1261,7 @@ export var NBTSchemas;
1093
1261
  y_2025_drop_3: {
1094
1262
  type: "byte",
1095
1263
  description: "1 or 0 (true/false) - true if the y_2025_drop_3 experimental toggle is enabled.",
1096
- enumDescriptions: ["true", "false"],
1264
+ enumDescriptions: ["false", "true"],
1097
1265
  enum: [
1098
1266
  { type: "byte", value: 0 },
1099
1267
  { type: "byte", value: 1 },
@@ -1102,7 +1270,7 @@ export var NBTSchemas;
1102
1270
  },
1103
1271
  additionalProperties: {
1104
1272
  type: "byte",
1105
- enumDescriptions: ["true", "false"],
1273
+ enumDescriptions: ["false", "true"],
1106
1274
  enum: [
1107
1275
  { type: "byte", value: 0 },
1108
1276
  { type: "byte", value: 1 },
@@ -1112,7 +1280,7 @@ export var NBTSchemas;
1112
1280
  falldamage: {
1113
1281
  type: "byte",
1114
1282
  description: "The `falldamage` [game rule](game rule).",
1115
- enumDescriptions: ["true", "false"],
1283
+ enumDescriptions: ["false", "true"],
1116
1284
  enum: [
1117
1285
  { type: "byte", value: 0 },
1118
1286
  { type: "byte", value: 1 },
@@ -1121,7 +1289,7 @@ export var NBTSchemas;
1121
1289
  firedamage: {
1122
1290
  type: "byte",
1123
1291
  description: "The `firedamage` [game rule](game rule).",
1124
- enumDescriptions: ["true", "false"],
1292
+ enumDescriptions: ["false", "true"],
1125
1293
  enum: [
1126
1294
  { type: "byte", value: 0 },
1127
1295
  { type: "byte", value: 1 },
@@ -1138,7 +1306,7 @@ export var NBTSchemas;
1138
1306
  freezedamage: {
1139
1307
  type: "byte",
1140
1308
  description: "The `freezedamage` [game rule](game rule).",
1141
- enumDescriptions: ["true", "false"],
1309
+ enumDescriptions: ["false", "true"],
1142
1310
  enum: [
1143
1311
  { type: "byte", value: 0 },
1144
1312
  { type: "byte", value: 1 },
@@ -1147,7 +1315,7 @@ export var NBTSchemas;
1147
1315
  functioncommandlimit: {
1148
1316
  type: "int",
1149
1317
  description: "The `functioncommandlimit` [game rule](game rule).",
1150
- enumDescriptions: ["true", "false"],
1318
+ enumDescriptions: ["false", "true"],
1151
1319
  enum: [
1152
1320
  { type: "byte", value: 0 },
1153
1321
  { type: "byte", value: 1 },
@@ -1156,7 +1324,7 @@ export var NBTSchemas;
1156
1324
  globalmute: {
1157
1325
  type: "byte",
1158
1326
  description: "The `globalmute` [game rule](game rule).",
1159
- enumDescriptions: ["true", "false"],
1327
+ enumDescriptions: ["false", "true"],
1160
1328
  enum: [
1161
1329
  { type: "byte", value: 0 },
1162
1330
  { type: "byte", value: 1 },
@@ -1165,7 +1333,7 @@ export var NBTSchemas;
1165
1333
  ForceGameType: {
1166
1334
  type: "byte",
1167
1335
  description: "1 or 0 (true/false) - true if force the player into the game mode defined in `GameType`.",
1168
- enumDescriptions: ["true", "false"],
1336
+ enumDescriptions: ["false", "true"],
1169
1337
  enum: [
1170
1338
  { type: "byte", value: 0 },
1171
1339
  { type: "byte", value: 1 },
@@ -1226,7 +1394,7 @@ export var NBTSchemas;
1226
1394
  hasBeenLoadedInCreative: {
1227
1395
  type: "byte",
1228
1396
  description: "Whether the world has achievements locked. Set to 1 if the default game mode is set to Creative, if [cheats](Commands#Cheats) have been enabled, or if a [behavior pack](add-on) has been equipped.",
1229
- enumDescriptions: ["true", "false"],
1397
+ enumDescriptions: ["false", "true"],
1230
1398
  enum: [
1231
1399
  { type: "byte", value: 0 },
1232
1400
  { type: "byte", value: 1 },
@@ -1235,7 +1403,7 @@ export var NBTSchemas;
1235
1403
  hasLockedBehaviorPack: {
1236
1404
  type: "byte",
1237
1405
  description: "UNDOCUMENTED.",
1238
- enumDescriptions: ["true", "false"],
1406
+ enumDescriptions: ["false", "true"],
1239
1407
  enum: [
1240
1408
  { type: "byte", value: 0 },
1241
1409
  { type: "byte", value: 1 },
@@ -1244,7 +1412,7 @@ export var NBTSchemas;
1244
1412
  hasLockedResourcePack: {
1245
1413
  type: "byte",
1246
1414
  description: "UNDOCUMENTED.",
1247
- enumDescriptions: ["true", "false"],
1415
+ enumDescriptions: ["false", "true"],
1248
1416
  enum: [
1249
1417
  { type: "byte", value: 0 },
1250
1418
  { type: "byte", value: 1 },
@@ -1253,7 +1421,7 @@ export var NBTSchemas;
1253
1421
  HasUncompleteWorldFileOnDisk: {
1254
1422
  type: "byte",
1255
1423
  description: "UNDOCUMENTED.",
1256
- enumDescriptions: ["true", "false"],
1424
+ enumDescriptions: ["false", "true"],
1257
1425
  enum: [
1258
1426
  { type: "byte", value: 0 },
1259
1427
  { type: "byte", value: 1 },
@@ -1262,7 +1430,7 @@ export var NBTSchemas;
1262
1430
  immutableWorld: {
1263
1431
  type: "byte",
1264
1432
  description: "Is read-only.",
1265
- enumDescriptions: ["true", "false"],
1433
+ enumDescriptions: ["false", "true"],
1266
1434
  enum: [
1267
1435
  { type: "byte", value: 0 },
1268
1436
  { type: "byte", value: 1 },
@@ -1275,7 +1443,7 @@ export var NBTSchemas;
1275
1443
  isCreatedInEditor: {
1276
1444
  type: "byte",
1277
1445
  description: "1 or 0 (true/false) - true if it was created from the [bedrock editor](Bedrock Editor).",
1278
- enumDescriptions: ["true", "false"],
1446
+ enumDescriptions: ["false", "true"],
1279
1447
  enum: [
1280
1448
  { type: "byte", value: 0 },
1281
1449
  { type: "byte", value: 1 },
@@ -1284,7 +1452,7 @@ export var NBTSchemas;
1284
1452
  isExportedFromEditor: {
1285
1453
  type: "byte",
1286
1454
  description: "1 or 0 (true/false) - true if exported from the [bedrock editor](Bedrock Editor).",
1287
- enumDescriptions: ["true", "false"],
1455
+ enumDescriptions: ["false", "true"],
1288
1456
  enum: [
1289
1457
  { type: "byte", value: 0 },
1290
1458
  { type: "byte", value: 1 },
@@ -1293,7 +1461,7 @@ export var NBTSchemas;
1293
1461
  isFromLockedTemplate: {
1294
1462
  type: "byte",
1295
1463
  description: "1 or 0 (true/false) - true if the world is created from a world template where the world options were intended not to be modified.",
1296
- enumDescriptions: ["true", "false"],
1464
+ enumDescriptions: ["false", "true"],
1297
1465
  enum: [
1298
1466
  { type: "byte", value: 0 },
1299
1467
  { type: "byte", value: 1 },
@@ -1302,7 +1470,7 @@ export var NBTSchemas;
1302
1470
  isFromWorldTemplate: {
1303
1471
  type: "byte",
1304
1472
  description: "1 or 0 (true/false) - true if the world is created from a world template.",
1305
- enumDescriptions: ["true", "false"],
1473
+ enumDescriptions: ["false", "true"],
1306
1474
  enum: [
1307
1475
  { type: "byte", value: 0 },
1308
1476
  { type: "byte", value: 1 },
@@ -1311,7 +1479,7 @@ export var NBTSchemas;
1311
1479
  IsHardcore: {
1312
1480
  type: "byte",
1313
1481
  description: "1 or 0 (true/false) - true if the world is in [Hardcore](Hardcore) mode.",
1314
- enumDescriptions: ["true", "false"],
1482
+ enumDescriptions: ["false", "true"],
1315
1483
  enum: [
1316
1484
  { type: "byte", value: 0 },
1317
1485
  { type: "byte", value: 1 },
@@ -1320,7 +1488,7 @@ export var NBTSchemas;
1320
1488
  IsSingleUseWorld: {
1321
1489
  type: "byte",
1322
1490
  description: "1 or 0 (true/false) - (unused) may cause world to not save, or delete after use. Seems to default back to false when a world is loaded.",
1323
- enumDescriptions: ["true", "false"],
1491
+ enumDescriptions: ["false", "true"],
1324
1492
  enum: [
1325
1493
  { type: "byte", value: 0 },
1326
1494
  { type: "byte", value: 1 },
@@ -1329,7 +1497,7 @@ export var NBTSchemas;
1329
1497
  isWorldTemplateOptionLocked: {
1330
1498
  type: "byte",
1331
1499
  description: "1 or 0 (true/false) - true if the world options cannot be modified until the user accepts that they are changing the map.",
1332
- enumDescriptions: ["true", "false"],
1500
+ enumDescriptions: ["false", "true"],
1333
1501
  enum: [
1334
1502
  { type: "byte", value: 0 },
1335
1503
  { type: "byte", value: 1 },
@@ -1338,7 +1506,7 @@ export var NBTSchemas;
1338
1506
  keepinventory: {
1339
1507
  type: "byte",
1340
1508
  description: "The `keepinventory` [game rule](game rule).",
1341
- enumDescriptions: ["true", "false"],
1509
+ enumDescriptions: ["false", "true"],
1342
1510
  enum: [
1343
1511
  { type: "byte", value: 0 },
1344
1512
  { type: "byte", value: 1 },
@@ -1347,7 +1515,7 @@ export var NBTSchemas;
1347
1515
  LANBroadcast: {
1348
1516
  type: "byte",
1349
1517
  description: 'Whether the world has been opened with the "Visible to LAN players" world setting enabled.',
1350
- enumDescriptions: ["true", "false"],
1518
+ enumDescriptions: ["false", "true"],
1351
1519
  enum: [
1352
1520
  { type: "byte", value: 0 },
1353
1521
  { type: "byte", value: 1 },
@@ -1356,7 +1524,7 @@ export var NBTSchemas;
1356
1524
  LANBroadcastIntent: {
1357
1525
  type: "byte",
1358
1526
  description: 'Whether the "Visible to LAN players" world toggle is enabled.',
1359
- enumDescriptions: ["true", "false"],
1527
+ enumDescriptions: ["false", "true"],
1360
1528
  enum: [
1361
1529
  { type: "byte", value: 0 },
1362
1530
  { type: "byte", value: 1 },
@@ -1385,7 +1553,7 @@ export var NBTSchemas;
1385
1553
  {
1386
1554
  title: "Preview",
1387
1555
  type: "int",
1388
- enumDescriptions: ["true", "false"],
1556
+ enumDescriptions: ["false", "true"],
1389
1557
  enum: [
1390
1558
  { type: "int", value: 0 },
1391
1559
  { type: "int", value: 1 },
@@ -1453,7 +1621,7 @@ export var NBTSchemas;
1453
1621
  locatorbar: {
1454
1622
  type: "byte",
1455
1623
  description: "The `locatorbar` [game rule](game rule).",
1456
- enumDescriptions: ["true", "false"],
1624
+ enumDescriptions: ["false", "true"],
1457
1625
  enum: [
1458
1626
  { type: "byte", value: 0 },
1459
1627
  { type: "byte", value: 1 },
@@ -1486,7 +1654,7 @@ export var NBTSchemas;
1486
1654
  {
1487
1655
  title: "Preview",
1488
1656
  type: "int",
1489
- enumDescriptions: ["true", "false"],
1657
+ enumDescriptions: ["false", "true"],
1490
1658
  enum: [
1491
1659
  { type: "int", value: 0 },
1492
1660
  { type: "int", value: 1 },
@@ -1497,7 +1665,7 @@ export var NBTSchemas;
1497
1665
  mobgriefing: {
1498
1666
  type: "byte",
1499
1667
  description: "UNDOCUMENTED.",
1500
- enumDescriptions: ["true", "false"],
1668
+ enumDescriptions: ["false", "true"],
1501
1669
  enum: [
1502
1670
  { type: "byte", value: 0 },
1503
1671
  { type: "byte", value: 1 },
@@ -1506,7 +1674,7 @@ export var NBTSchemas;
1506
1674
  MultiplayerGame: {
1507
1675
  type: "byte",
1508
1676
  description: 'Whether the world has been opened with the "Multiplayer Game" world setting enabled.',
1509
- enumDescriptions: ["true", "false"],
1677
+ enumDescriptions: ["false", "true"],
1510
1678
  enum: [
1511
1679
  { type: "byte", value: 0 },
1512
1680
  { type: "byte", value: 1 },
@@ -1515,7 +1683,7 @@ export var NBTSchemas;
1515
1683
  MultiplayerGameIntent: {
1516
1684
  type: "byte",
1517
1685
  description: 'Whether the "Multiplayer Game" world toggle is enabled.',
1518
- enumDescriptions: ["true", "false"],
1686
+ enumDescriptions: ["false", "true"],
1519
1687
  enum: [
1520
1688
  { type: "byte", value: 0 },
1521
1689
  { type: "byte", value: 1 },
@@ -1524,7 +1692,7 @@ export var NBTSchemas;
1524
1692
  naturalregeneration: {
1525
1693
  type: "byte",
1526
1694
  description: "The `naturalregeneration` [game rule](game rule).",
1527
- enumDescriptions: ["true", "false"],
1695
+ enumDescriptions: ["false", "true"],
1528
1696
  enum: [
1529
1697
  { type: "byte", value: 0 },
1530
1698
  { type: "byte", value: 1 },
@@ -1561,7 +1729,7 @@ export var NBTSchemas;
1561
1729
  pvp: {
1562
1730
  type: "byte",
1563
1731
  description: "The `pvp` [game rule](game rule).",
1564
- enumDescriptions: ["true", "false"],
1732
+ enumDescriptions: ["false", "true"],
1565
1733
  enum: [
1566
1734
  { type: "byte", value: 0 },
1567
1735
  { type: "byte", value: 1 },
@@ -1590,7 +1758,7 @@ export var NBTSchemas;
1590
1758
  recipesunlock: {
1591
1759
  type: "byte",
1592
1760
  description: "The `recipesunlock` [game rule](game rule).",
1593
- enumDescriptions: ["true", "false"],
1761
+ enumDescriptions: ["false", "true"],
1594
1762
  enum: [
1595
1763
  { type: "byte", value: 0 },
1596
1764
  { type: "byte", value: 1 },
@@ -1599,7 +1767,7 @@ export var NBTSchemas;
1599
1767
  requiresCopiedPackRemovalCheck: {
1600
1768
  type: "byte",
1601
1769
  description: "UNDOCUMENTED.",
1602
- enumDescriptions: ["true", "false"],
1770
+ enumDescriptions: ["false", "true"],
1603
1771
  enum: [
1604
1772
  { type: "byte", value: 0 },
1605
1773
  { type: "byte", value: 1 },
@@ -1608,7 +1776,7 @@ export var NBTSchemas;
1608
1776
  respawnblocksexplode: {
1609
1777
  type: "byte",
1610
1778
  description: "The `respawnblocksexplode` [game rule](game rule).",
1611
- enumDescriptions: ["true", "false"],
1779
+ enumDescriptions: ["false", "true"],
1612
1780
  enum: [
1613
1781
  { type: "byte", value: 0 },
1614
1782
  { type: "byte", value: 1 },
@@ -1617,7 +1785,7 @@ export var NBTSchemas;
1617
1785
  sendcommandfeedback: {
1618
1786
  type: "byte",
1619
1787
  description: "The `sendcommandfeedback` [game rule](game rule).",
1620
- enumDescriptions: ["true", "false"],
1788
+ enumDescriptions: ["false", "true"],
1621
1789
  enum: [
1622
1790
  { type: "byte", value: 0 },
1623
1791
  { type: "byte", value: 1 },
@@ -1634,7 +1802,7 @@ export var NBTSchemas;
1634
1802
  showbordereffect: {
1635
1803
  type: "byte",
1636
1804
  description: "The `showbordereffect` [game rule](game rule).",
1637
- enumDescriptions: ["true", "false"],
1805
+ enumDescriptions: ["false", "true"],
1638
1806
  enum: [
1639
1807
  { type: "byte", value: 0 },
1640
1808
  { type: "byte", value: 1 },
@@ -1643,7 +1811,7 @@ export var NBTSchemas;
1643
1811
  showcoordinates: {
1644
1812
  type: "byte",
1645
1813
  description: "The `showcoordinates` [game rule](game rule).",
1646
- enumDescriptions: ["true", "false"],
1814
+ enumDescriptions: ["false", "true"],
1647
1815
  enum: [
1648
1816
  { type: "byte", value: 0 },
1649
1817
  { type: "byte", value: 1 },
@@ -1652,7 +1820,7 @@ export var NBTSchemas;
1652
1820
  showdaysplayed: {
1653
1821
  type: "byte",
1654
1822
  description: "The `showdaysplayed` [game rule](game rule).",
1655
- enumDescriptions: ["true", "false"],
1823
+ enumDescriptions: ["false", "true"],
1656
1824
  enum: [
1657
1825
  { type: "byte", value: 0 },
1658
1826
  { type: "byte", value: 1 },
@@ -1661,7 +1829,7 @@ export var NBTSchemas;
1661
1829
  showdeathmessages: {
1662
1830
  type: "byte",
1663
1831
  description: "The `showdeathmessages` [game rule](game rule).",
1664
- enumDescriptions: ["true", "false"],
1832
+ enumDescriptions: ["false", "true"],
1665
1833
  enum: [
1666
1834
  { type: "byte", value: 0 },
1667
1835
  { type: "byte", value: 1 },
@@ -1670,7 +1838,7 @@ export var NBTSchemas;
1670
1838
  showtags: {
1671
1839
  type: "byte",
1672
1840
  description: "The `showtags` [game rule](game rule).",
1673
- enumDescriptions: ["true", "false"],
1841
+ enumDescriptions: ["false", "true"],
1674
1842
  enum: [
1675
1843
  { type: "byte", value: 0 },
1676
1844
  { type: "byte", value: 1 },
@@ -1679,7 +1847,7 @@ export var NBTSchemas;
1679
1847
  spawnMobs: {
1680
1848
  type: "byte",
1681
1849
  description: "1 or 0 (true/false) - true if mobs can spawn.",
1682
- enumDescriptions: ["true", "false"],
1850
+ enumDescriptions: ["false", "true"],
1683
1851
  enum: [
1684
1852
  { type: "byte", value: 0 },
1685
1853
  { type: "byte", value: 1 },
@@ -1688,7 +1856,7 @@ export var NBTSchemas;
1688
1856
  spawnradius: {
1689
1857
  type: "int",
1690
1858
  description: "The `spawnradius` [game rule](game rule).",
1691
- enumDescriptions: ["true", "false"],
1859
+ enumDescriptions: ["false", "true"],
1692
1860
  enum: [
1693
1861
  { type: "byte", value: 0 },
1694
1862
  { type: "byte", value: 1 },
@@ -1697,7 +1865,7 @@ export var NBTSchemas;
1697
1865
  SpawnV1Villagers: {
1698
1866
  type: "byte",
1699
1867
  description: "Spawn pre-1.10.0 villagers.",
1700
- enumDescriptions: ["true", "false"],
1868
+ enumDescriptions: ["false", "true"],
1701
1869
  enum: [
1702
1870
  { type: "byte", value: 0 },
1703
1871
  { type: "byte", value: 1 },
@@ -1730,7 +1898,7 @@ export var NBTSchemas;
1730
1898
  startWithMapEnabled: {
1731
1899
  type: "byte",
1732
1900
  description: "1 or 0 (true/false) - true if new players spawn with a locator map.",
1733
- enumDescriptions: ["true", "false"],
1901
+ enumDescriptions: ["false", "true"],
1734
1902
  enum: [
1735
1903
  { type: "byte", value: 0 },
1736
1904
  { type: "byte", value: 1 },
@@ -1747,7 +1915,7 @@ export var NBTSchemas;
1747
1915
  texturePacksRequired: {
1748
1916
  type: "byte",
1749
1917
  description: "1 or 0 (true/false) - true if the user must download the texture packs applied to the world to join.",
1750
- enumDescriptions: ["true", "false"],
1918
+ enumDescriptions: ["false", "true"],
1751
1919
  enum: [
1752
1920
  { type: "byte", value: 0 },
1753
1921
  { type: "byte", value: 1 },
@@ -1764,7 +1932,7 @@ export var NBTSchemas;
1764
1932
  tntexplodes: {
1765
1933
  type: "byte",
1766
1934
  description: "The `tntexplodes` [game rule](game rule).",
1767
- enumDescriptions: ["true", "false"],
1935
+ enumDescriptions: ["false", "true"],
1768
1936
  enum: [
1769
1937
  { type: "byte", value: 0 },
1770
1938
  { type: "byte", value: 1 },
@@ -1773,7 +1941,7 @@ export var NBTSchemas;
1773
1941
  useMsaGamertagsOnly: {
1774
1942
  type: "byte",
1775
1943
  description: "Whether the world is restricted to Microsoft Accounts only (players must be signed in).",
1776
- enumDescriptions: ["true", "false"],
1944
+ enumDescriptions: ["false", "true"],
1777
1945
  enum: [
1778
1946
  { type: "byte", value: 0 },
1779
1947
  { type: "byte", value: 1 },