Paste #131850: new

Date: 2025/03/17 06:07:33 UTC-07:00
Type: Plain Text

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065


[--rev, 1.21.4, --remapped, remapped-mojang]
Loading BuildTools version: git-BuildTools-37ddb93-189 (#189)
Java Version: Java 21
Current Path: C:\Users\david\Desktop\BT
git version 2.46.1.windows.1
java version "21.0.3" 2024-04-16 LTS
Java(TM) SE Runtime Environment (build 21.0.3+7-LTS-152)
Java HotSpot(TM) 64-Bit Server VM (build 21.0.3+7-LTS-152, mixed mode, sharing)
Attempting to build version: '1.21.4' use --rev <version> to override
Found version
{
    "name": "4457",
    "description": "Jenkins build 4457",
    "refs": {
        "BuildData": "686446e5669a9aab7d35179fd989032560f289fc",
        "Bukkit": "a3d67ef041c520a1225a6ce4bd8d777ad23886b0",
        "CraftBukkit": "f0c8dd361798cb75c9e4ad85d8f5918ff254bfe2",
        "Spigot": "73860e064edc2599604dd46c0bc5202283e57e9c"
    },
    "hashes": {
        "CraftBukkit": "4badf78680cae52cc2cf2c2384e88b0e720912e9928a822354b79e4971b0d5c9",
        "Spigot": "ae44232bc71a1809289ea8087cbe45e048252028518f7341451b95e5ea7c383f"
    },
    "toolsVersion": 181,
    "javaVersions": [65, 68]
}

Pulling updates for C:\Users\david\Desktop\BT\BuildData\.git
Successfully fetched updates!
Checked out: 686446e5669a9aab7d35179fd989032560f289fc
Pulling updates for C:\Users\david\Desktop\BT\Bukkit\.git
Successfully fetched updates!
Checked out: a3d67ef041c520a1225a6ce4bd8d777ad23886b0
Pulling updates for C:\Users\david\Desktop\BT\CraftBukkit\.git
Successfully fetched updates!
Checked out: f0c8dd361798cb75c9e4ad85d8f5918ff254bfe2
Pulling updates for C:\Users\david\Desktop\BT\Spigot\.git
Successfully fetched updates!
Checked out: 73860e064edc2599604dd46c0bc5202283e57e9c
Attempting to build Minecraft with details: VersionInfo(minecraftVersion=1.21.4, accessTransforms=bukkit-1.21.4.at, classMappings=bukkit-1.21.4-cl.csrg, memberMappings=null, packageMappings=package.srg, minecraftHash=d7bbfba1a4ae1034d6b4f32e790d357c57cbace8c9120335a268cb647015e602, classMapCommand=java -jar BuildData/bin/SpecialSource-2.jar map --auto-lvt BASIC -e BuildData/mappings/bukkit-1.21.4.exclude -i {0} -m {1} -o {2}, memberMapCommand=java -jar BuildData/bin/SpecialSource-2.jar map --auto-member TOKENS -i {0} -m {1} -o {2}, finalMapCommand=java -jar BuildData/bin/SpecialSource.jar -i {0} --access-transformer {1} -m {2} -o {3}, decompileCommand=java -jar BuildData/bin/fernflower.jar -dgs=1 -hdc=0 -asc=1 -udv=0 -rsy=1 -aoa=1 {0} {1}, serverUrl=https://piston-data.mojang.com/v1/objects/4707d00eb834b446575d89a61a11b5d548d8c001/server.jar, mappingsUrl=https://piston-data.mojang.com/v1/objects/0b1e60cc509cfb0172573ae56b436c29febbc187/server.txt, spigotVersion=1.21.4-R0.1-SNAPSHOT, toolsVersion=181)
Found good Minecraft hash (4707d00eb834b446575d89a61a11b5d548d8c001)
**** Warning, Minecraft jar hash of 17ea262a0dcdc35f285bd9ddf902cc26e8ab521911e1fe96c515a68165239e64 does not match stored hash of d7bbfba1a4ae1034d6b4f32e790d357c57cbace8c9120335a268cb647015e602
[INFO] Scanning for projects...
[INFO] 
[INFO] ------------------< org.apache.maven:standalone-pom >-------------------
[INFO] Building Maven Stub Project (No POM) 1
[INFO] --------------------------------[ pom ]---------------------------------
[INFO] 
[INFO] --- install:3.1.1:install-file (default-cli) @ standalone-pom ---
[INFO] pom.xml not found in mapped.a0531ed8.jar
[INFO] Installing C:\Users\david\Desktop\BT\work\mapped.a0531ed8.jar to C:\Users\david\.m2\repository\org\spigotmc\minecraft-server\1.21.4-R0.1-SNAPSHOT\minecraft-server-1.21.4-R0.1-SNAPSHOT.jar
[INFO] Installing C:\Users\david\AppData\Local\Temp\mvninstall1368583061739611398.pom to C:\Users\david\.m2\repository\org\spigotmc\minecraft-server\1.21.4-R0.1-SNAPSHOT\minecraft-server-1.21.4-R0.1-SNAPSHOT.pom
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  0.342 s
[INFO] Finished at: 2025-03-17T14:01:06+01:00
[INFO] ------------------------------------------------------------------------
Applying CraftBukkit Patches
Backing up NMS dir
Patching net\minecraft\advancements\AdvancementHolder.java
Patching net\minecraft\advancements\AdvancementTree.java
Patching net\minecraft\commands\arguments\ArgumentEntity.java
Patching net\minecraft\commands\arguments\blocks\ArgumentBlock.java
Patching net\minecraft\commands\arguments\selector\ArgumentParserSelector.java
Patching net\minecraft\commands\arguments\selector\EntitySelector.java
Patching net\minecraft\commands\CommandDispatcher.java
Patching net\minecraft\commands\CommandListenerWrapper.java
Patching net\minecraft\commands\ICommandListener.java
Patching net\minecraft\core\cauldron\CauldronInteraction.java
Patching net\minecraft\core\component\DataComponentPatch.java
Patching net\minecraft\core\dispenser\DispenseBehaviorBoat.java
Patching net\minecraft\core\dispenser\DispenseBehaviorItem.java
Patching net\minecraft\core\dispenser\DispenseBehaviorProjectile.java
Patching net\minecraft\core\dispenser\DispenseBehaviorShears.java
Patching net\minecraft\core\dispenser\DispenseBehaviorShulkerBox.java
Patching net\minecraft\core\dispenser\EquipmentDispenseItemBehavior.java
Patching net\minecraft\core\dispenser\IDispenseBehavior.java
Patching net\minecraft\core\dispenser\MinecartDispenseItemBehavior.java
Patching net\minecraft\CrashReport.java
Patching net\minecraft\nbt\NBTCompressedStreamTools.java
Patching net\minecraft\nbt\NBTTagByteArray.java
Patching net\minecraft\nbt\NBTTagIntArray.java
Patching net\minecraft\network\chat\ChatHexColor.java
Patching net\minecraft\network\chat\IChatBaseComponent.java
Patching net\minecraft\network\NetworkManager.java
Patching net\minecraft\network\PacketDataSerializer.java
Patching net\minecraft\network\protocol\common\custom\DiscardedPayload.java
Patching net\minecraft\network\protocol\common\ServerboundCustomPayloadPacket.java
Patching net\minecraft\network\protocol\game\ClientboundInitializeBorderPacket.java
Patching net\minecraft\network\protocol\game\ClientboundSetBorderCenterPacket.java
Patching net\minecraft\network\protocol\game\ClientboundSystemChatPacket.java
Patching net\minecraft\network\protocol\game\PacketPlayInBlockPlace.java
Patching net\minecraft\network\protocol\game\PacketPlayInUseItem.java
Patching net\minecraft\network\protocol\game\PacketPlayOutMultiBlockChange.java
Patching net\minecraft\network\protocol\handshake\PacketHandshakingInSetProtocol.java
Patching net\minecraft\network\protocol\PlayerConnectionUtils.java
Patching net\minecraft\network\syncher\DataWatcher.java
Patching net\minecraft\server\AdvancementDataPlayer.java
Patching net\minecraft\server\AdvancementDataWorld.java
Patching net\minecraft\server\bossevents\BossBattleCustom.java
Patching net\minecraft\server\commands\CommandDifficulty.java
Patching net\minecraft\server\commands\CommandEffect.java
Patching net\minecraft\server\commands\CommandGamerule.java
Patching net\minecraft\server\commands\CommandGive.java
Patching net\minecraft\server\commands\CommandList.java
Patching net\minecraft\server\commands\CommandLoot.java
Patching net\minecraft\server\commands\CommandReload.java
Patching net\minecraft\server\commands\CommandSchedule.java
Patching net\minecraft\server\commands\CommandSetWorldSpawn.java
Patching net\minecraft\server\commands\CommandSpawnpoint.java
Patching net\minecraft\server\commands\CommandSpreadPlayers.java
Patching net\minecraft\server\commands\CommandSummon.java
Patching net\minecraft\server\commands\CommandTeleport.java
Patching net\minecraft\server\commands\CommandTime.java
Patching net\minecraft\server\commands\CommandWeather.java
Patching net\minecraft\server\commands\CommandWorldBorder.java
Patching net\minecraft\server\commands\PlaceCommand.java
Patching net\minecraft\server\CustomFunctionData.java
Patching net\minecraft\server\dedicated\DedicatedServer.java
Patching net\minecraft\server\dedicated\DedicatedServerProperties.java
Patching net\minecraft\server\dedicated\DedicatedServerSettings.java
Patching net\minecraft\server\dedicated\PropertyManager.java
Patching net\minecraft\server\DispenserRegistry.java
Patching net\minecraft\server\gui\ServerGUI.java
Patching net\minecraft\server\level\ChunkMapDistance.java
Patching net\minecraft\server\level\ChunkProviderServer.java
Patching net\minecraft\server\level\EntityPlayer.java
Patching net\minecraft\server\level\EntityTrackerEntry.java
Patching net\minecraft\server\level\PlayerChunk.java
Patching net\minecraft\server\level\PlayerChunkMap.java
Patching net\minecraft\server\level\PlayerInteractManager.java
Patching net\minecraft\server\level\RegionLimitedWorldAccess.java
Patching net\minecraft\server\level\TicketType.java
Patching net\minecraft\server\level\WorldServer.java
Patching net\minecraft\server\Main.java
Patching net\minecraft\server\MinecraftServer.java
Patching net\minecraft\server\network\HandshakeListener.java
Patching net\minecraft\server\network\LegacyPingHandler.java
Patching net\minecraft\server\network\LoginListener.java
Patching net\minecraft\server\network\PacketStatusListener.java
Patching net\minecraft\server\network\PlayerConnection.java
Patching net\minecraft\server\network\ServerCommonPacketListenerImpl.java
Patching net\minecraft\server\network\ServerConfigurationPacketListenerImpl.java
Patching net\minecraft\server\network\ServerConnection.java
Patching net\minecraft\server\players\ExpirableListEntry.java
Patching net\minecraft\server\players\GameProfileBanEntry.java
Patching net\minecraft\server\players\JsonList.java
Patching net\minecraft\server\players\NameReferencingFileConverter.java
Patching net\minecraft\server\players\PlayerList.java
Patching net\minecraft\server\players\SleepStatus.java
Patching net\minecraft\server\players\UserCache.java
Patching net\minecraft\server\rcon\RemoteControlCommandListener.java
Patching net\minecraft\server\rcon\thread\RemoteControlSession.java
Patching net\minecraft\server\ScoreboardServer.java
Patching net\minecraft\server\ServerTickRateManager.java
Patching net\minecraft\stats\RecipeBookServer.java
Patching net\minecraft\stats\ServerStatisticManager.java
Patching net\minecraft\stats\StatisticManager.java
Patching net\minecraft\util\datafix\DataConverterRegistry.java
Patching net\minecraft\util\datafix\fixes\DataConverterFlatten.java
Patching net\minecraft\util\datafix\fixes\DataConverterMap.java
Patching net\minecraft\util\SpawnUtil.java
Patching net\minecraft\util\TickThrottler.java
Patching net\minecraft\util\worldupdate\WorldUpgrader.java
Patching net\minecraft\world\damagesource\DamageSource.java
Patching net\minecraft\world\damagesource\DamageSources.java
Patching net\minecraft\world\effect\HealOrHarmMobEffect.java
Patching net\minecraft\world\effect\HungerMobEffect.java
Patching net\minecraft\world\effect\InfestedMobEffect.java
Patching net\minecraft\world\effect\MobEffectUtil.java
Patching net\minecraft\world\effect\OozingMobEffect.java
Patching net\minecraft\world\effect\PoisonMobEffect.java
Patching net\minecraft\world\effect\RegenerationMobEffect.java
Patching net\minecraft\world\effect\SaturationMobEffect.java
Patching net\minecraft\world\entity\ai\attributes\GenericAttributes.java
Patching net\minecraft\world\entity\ai\behavior\BehaviorAttackTargetForget.java
Patching net\minecraft\world\entity\ai\behavior\BehaviorAttackTargetSet.java
Patching net\minecraft\world\entity\ai\behavior\BehaviorCareer.java
Patching net\minecraft\world\entity\ai\behavior\BehaviorFarm.java
Patching net\minecraft\world\entity\ai\behavior\BehaviorFindAdmirableItem.java
Patching net\minecraft\world\entity\ai\behavior\BehaviorFollowAdult.java
Patching net\minecraft\world\entity\ai\behavior\BehaviorInteractDoor.java
Patching net\minecraft\world\entity\ai\behavior\BehaviorMakeLove.java
Patching net\minecraft\world\entity\ai\behavior\BehaviorProfession.java
Patching net\minecraft\world\entity\ai\behavior\BehaviorUtil.java
Patching net\minecraft\world\entity\ai\behavior\PrepareRamNearestTarget.java
Patching net\minecraft\world\entity\ai\behavior\TryLaySpawnOnWaterNearLand.java
Patching net\minecraft\world\entity\ai\behavior\warden\Digging.java
Patching net\minecraft\world\entity\ai\goal\PathfinderGoalBreakDoor.java
Patching net\minecraft\world\entity\ai\goal\PathfinderGoalEatTile.java
Patching net\minecraft\world\entity\ai\goal\PathfinderGoalRemoveBlock.java
Patching net\minecraft\world\entity\ai\goal\PathfinderGoalSit.java
Patching net\minecraft\world\entity\ai\goal\PathfinderGoalTame.java
Patching net\minecraft\world\entity\ai\goal\PathfinderGoalTempt.java
Patching net\minecraft\world\entity\ai\goal\target\PathfinderGoalDefendVillage.java
Patching net\minecraft\world\entity\ai\goal\target\PathfinderGoalHurtByTarget.java
Patching net\minecraft\world\entity\ai\goal\target\PathfinderGoalNearestAttackableTarget.java
Patching net\minecraft\world\entity\ai\goal\target\PathfinderGoalOwnerHurtByTarget.java
Patching net\minecraft\world\entity\ai\goal\target\PathfinderGoalOwnerHurtTarget.java
Patching net\minecraft\world\entity\ai\goal\target\PathfinderGoalTarget.java
Patching net\minecraft\world\entity\ai\gossip\Reputation.java
Patching net\minecraft\world\entity\ai\sensing\TemptingSensor.java
Patching net\minecraft\world\entity\ai\village\ReputationEvent.java
Patching net\minecraft\world\entity\ai\village\VillageSiege.java
Patching net\minecraft\world\entity\ambient\EntityBat.java
Patching net\minecraft\world\entity\animal\allay\Allay.java
Patching net\minecraft\world\entity\animal\armadillo\Armadillo.java
Patching net\minecraft\world\entity\animal\axolotl\Axolotl.java
Patching net\minecraft\world\entity\animal\Bucketable.java
Patching net\minecraft\world\entity\animal\camel\Camel.java
Patching net\minecraft\world\entity\animal\EntityAnimal.java
Patching net\minecraft\world\entity\animal\EntityBee.java
Patching net\minecraft\world\entity\animal\EntityCat.java
Patching net\minecraft\world\entity\animal\EntityChicken.java
Patching net\minecraft\world\entity\animal\EntityCow.java
Patching net\minecraft\world\entity\animal\EntityDolphin.java
Patching net\minecraft\world\entity\animal\EntityFox.java
Patching net\minecraft\world\entity\animal\EntityIronGolem.java
Patching net\minecraft\world\entity\animal\EntityMushroomCow.java
Patching net\minecraft\world\entity\animal\EntityOcelot.java
Patching net\minecraft\world\entity\animal\EntityPanda.java
Patching net\minecraft\world\entity\animal\EntityParrot.java
Patching net\minecraft\world\entity\animal\EntityPerchable.java
Patching net\minecraft\world\entity\animal\EntityPig.java
Patching net\minecraft\world\entity\animal\EntityPufferFish.java
Patching net\minecraft\world\entity\animal\EntityRabbit.java
Patching net\minecraft\world\entity\animal\EntitySheep.java
Patching net\minecraft\world\entity\animal\EntitySnowman.java
Patching net\minecraft\world\entity\animal\EntityTurtle.java
Patching net\minecraft\world\entity\animal\EntityWolf.java
Patching net\minecraft\world\entity\animal\frog\ShootTongue.java
Patching net\minecraft\world\entity\animal\frog\Tadpole.java
Patching net\minecraft\world\entity\animal\goat\Goat.java
Patching net\minecraft\world\entity\animal\horse\EntityHorseAbstract.java
Patching net\minecraft\world\entity\animal\horse\EntityHorseSkeleton.java
Patching net\minecraft\world\entity\animal\horse\EntityLlama.java
Patching net\minecraft\world\entity\animal\horse\EntityLlamaTrader.java
Patching net\minecraft\world\entity\animal\horse\PathfinderGoalHorseTrap.java
Patching net\minecraft\world\entity\animal\sniffer\Sniffer.java
Patching net\minecraft\world\entity\boss\enderdragon\EntityEnderCrystal.java
Patching net\minecraft\world\entity\boss\enderdragon\EntityEnderDragon.java
Patching net\minecraft\world\entity\boss\enderdragon\phases\DragonControllerLandedFlame.java
Patching net\minecraft\world\entity\boss\enderdragon\phases\DragonControllerManager.java
Patching net\minecraft\world\entity\boss\wither\EntityWither.java
Patching net\minecraft\world\entity\ConversionType.java
Patching net\minecraft\world\entity\decoration\BlockAttachedEntity.java
Patching net\minecraft\world\entity\decoration\EntityArmorStand.java
Patching net\minecraft\world\entity\decoration\EntityItemFrame.java
Patching net\minecraft\world\entity\decoration\EntityLeash.java
Patching net\minecraft\world\entity\decoration\EntityPainting.java
Patching net\minecraft\world\entity\Entity.java
Patching net\minecraft\world\entity\EntityAgeable.java
Patching net\minecraft\world\entity\EntityAreaEffectCloud.java
Patching net\minecraft\world\entity\EntityCreature.java
Patching net\minecraft\world\entity\EntityExperienceOrb.java
Patching net\minecraft\world\entity\EntityInsentient.java
Patching net\minecraft\world\entity\EntityLightning.java
Patching net\minecraft\world\entity\EntityLiving.java
Patching net\minecraft\world\entity\EntityTameableAnimal.java
Patching net\minecraft\world\entity\EntityTypes.java
Patching net\minecraft\world\entity\IEntityAngerable.java
Patching net\minecraft\world\entity\IEntitySelector.java
Patching net\minecraft\world\entity\Interaction.java
Patching net\minecraft\world\entity\item\EntityFallingBlock.java
Patching net\minecraft\world\entity\item\EntityItem.java
Patching net\minecraft\world\entity\item\EntityTNTPrimed.java
Patching net\minecraft\world\entity\Leashable.java
Patching net\minecraft\world\entity\monster\Bogged.java
Patching net\minecraft\world\entity\monster\breeze\Breeze.java
Patching net\minecraft\world\entity\monster\creaking\Creaking.java
Patching net\minecraft\world\entity\monster\EntityCaveSpider.java
Patching net\minecraft\world\entity\monster\EntityCreeper.java
Patching net\minecraft\world\entity\monster\EntityEnderman.java
Patching net\minecraft\world\entity\monster\EntityEndermite.java
Patching net\minecraft\world\entity\monster\EntityEvoker.java
Patching net\minecraft\world\entity\monster\EntityGhast.java
Patching net\minecraft\world\entity\monster\EntityGuardian.java
Patching net\minecraft\world\entity\monster\EntityGuardianElder.java
Patching net\minecraft\world\entity\monster\EntityIllagerIllusioner.java
Patching net\minecraft\world\entity\monster\EntityIllagerWizard.java
Patching net\minecraft\world\entity\monster\EntityPhantom.java
Patching net\minecraft\world\entity\monster\EntityPigZombie.java
Patching net\minecraft\world\entity\monster\EntityPillager.java
Patching net\minecraft\world\entity\monster\EntityRavager.java
Patching net\minecraft\world\entity\monster\EntityShulker.java
Patching net\minecraft\world\entity\monster\EntitySilverfish.java
Patching net\minecraft\world\entity\monster\EntitySkeleton.java
Patching net\minecraft\world\entity\monster\EntitySkeletonAbstract.java
Patching net\minecraft\world\entity\monster\EntitySkeletonWither.java
Patching net\minecraft\world\entity\monster\EntitySlime.java
Patching net\minecraft\world\entity\monster\EntitySpider.java
Patching net\minecraft\world\entity\monster\EntityStrider.java
Patching net\minecraft\world\entity\monster\EntityVex.java
Patching net\minecraft\world\entity\monster\EntityWitch.java
Patching net\minecraft\world\entity\monster\EntityZombie.java
Patching net\minecraft\world\entity\monster\EntityZombieHusk.java
Patching net\minecraft\world\entity\monster\EntityZombieVillager.java
Patching net\minecraft\world\entity\monster\hoglin\EntityHoglin.java
Patching net\minecraft\world\entity\monster\piglin\EntityPiglin.java
Patching net\minecraft\world\entity\monster\piglin\EntityPiglinAbstract.java
Patching net\minecraft\world\entity\monster\piglin\PiglinAI.java
Patching net\minecraft\world\entity\monster\warden\Warden.java
Patching net\minecraft\world\entity\npc\EntityVillager.java
Patching net\minecraft\world\entity\npc\EntityVillagerAbstract.java
Patching net\minecraft\world\entity\npc\EntityVillagerTrader.java
Patching net\minecraft\world\entity\npc\InventoryCarrier.java
Patching net\minecraft\world\entity\npc\MobSpawnerTrader.java
Patching net\minecraft\world\entity\player\EntityHuman.java
Patching net\minecraft\world\entity\player\PlayerInventory.java
Patching net\minecraft\world\entity\projectile\EntityArrow.java
Patching net\minecraft\world\entity\projectile\EntityDragonFireball.java
Patching net\minecraft\world\entity\projectile\EntityEgg.java
Patching net\minecraft\world\entity\projectile\EntityEnderPearl.java
Patching net\minecraft\world\entity\projectile\EntityEnderSignal.java
Patching net\minecraft\world\entity\projectile\EntityEvokerFangs.java
Patching net\minecraft\world\entity\projectile\EntityFireball.java
Patching net\minecraft\world\entity\projectile\EntityFireballFireball.java
Patching net\minecraft\world\entity\projectile\EntityFireworks.java
Patching net\minecraft\world\entity\projectile\EntityFishingHook.java
Patching net\minecraft\world\entity\projectile\EntityLargeFireball.java
Patching net\minecraft\world\entity\projectile\EntityLlamaSpit.java
Patching net\minecraft\world\entity\projectile\EntityPotion.java
Patching net\minecraft\world\entity\projectile\EntityProjectile.java
Patching net\minecraft\world\entity\projectile\EntityProjectileThrowable.java
Patching net\minecraft\world\entity\projectile\EntityShulkerBullet.java
Patching net\minecraft\world\entity\projectile\EntitySmallFireball.java
Patching net\minecraft\world\entity\projectile\EntitySnowball.java
Patching net\minecraft\world\entity\projectile\EntitySpectralArrow.java
Patching net\minecraft\world\entity\projectile\EntityThrownExpBottle.java
Patching net\minecraft\world\entity\projectile\EntityThrownTrident.java
Patching net\minecraft\world\entity\projectile\EntityTippedArrow.java
Patching net\minecraft\world\entity\projectile\EntityWitherSkull.java
Patching net\minecraft\world\entity\projectile\IProjectile.java
Patching net\minecraft\world\entity\projectile\windcharge\AbstractWindCharge.java
Patching net\minecraft\world\entity\raid\EntityRaider.java
Patching net\minecraft\world\entity\raid\PersistentRaid.java
Patching net\minecraft\world\entity\raid\Raid.java
Patching net\minecraft\world\entity\SaddleStorage.java
Patching net\minecraft\world\entity\vehicle\AbstractBoat.java
Patching net\minecraft\world\entity\vehicle\AbstractChestBoat.java
Patching net\minecraft\world\entity\vehicle\EntityMinecartAbstract.java
Patching net\minecraft\world\entity\vehicle\EntityMinecartCommandBlock.java
Patching net\minecraft\world\entity\vehicle\EntityMinecartContainer.java
Patching net\minecraft\world\entity\vehicle\EntityMinecartTNT.java
Patching net\minecraft\world\entity\vehicle\NewMinecartBehavior.java
Patching net\minecraft\world\entity\vehicle\OldMinecartBehavior.java
Patching net\minecraft\world\entity\vehicle\VehicleEntity.java
Patching net\minecraft\world\food\FoodInfo.java
Patching net\minecraft\world\food\FoodMetaData.java
Patching net\minecraft\world\IInventory.java
Patching net\minecraft\world\inventory\AbstractCraftingMenu.java
Patching net\minecraft\world\inventory\Container.java
Patching net\minecraft\world\inventory\ContainerAccess.java
Patching net\minecraft\world\inventory\ContainerAnvil.java
Patching net\minecraft\world\inventory\ContainerAnvilAbstract.java
Patching net\minecraft\world\inventory\ContainerBeacon.java
Patching net\minecraft\world\inventory\ContainerBrewingStand.java
Patching net\minecraft\world\inventory\ContainerCartography.java
Patching net\minecraft\world\inventory\ContainerChest.java
Patching net\minecraft\world\inventory\ContainerDispenser.java
Patching net\minecraft\world\inventory\ContainerEnchantTable.java
Patching net\minecraft\world\inventory\ContainerFurnace.java
Patching net\minecraft\world\inventory\ContainerGrindstone.java
Patching net\minecraft\world\inventory\ContainerHopper.java
Patching net\minecraft\world\inventory\ContainerHorse.java
Patching net\minecraft\world\inventory\ContainerLectern.java
Patching net\minecraft\world\inventory\ContainerLoom.java
Patching net\minecraft\world\inventory\ContainerMerchant.java
Patching net\minecraft\world\inventory\ContainerPlayer.java
Patching net\minecraft\world\inventory\Containers.java
Patching net\minecraft\world\inventory\ContainerShulkerBox.java
Patching net\minecraft\world\inventory\ContainerSmithing.java
Patching net\minecraft\world\inventory\ContainerStonecutter.java
Patching net\minecraft\world\inventory\ContainerWorkbench.java
Patching net\minecraft\world\inventory\CrafterMenu.java
Patching net\minecraft\world\inventory\InventoryCrafting.java
Patching net\minecraft\world\inventory\InventoryCraftResult.java
Patching net\minecraft\world\inventory\InventoryEnderChest.java
Patching net\minecraft\world\inventory\InventoryMerchant.java
Patching net\minecraft\world\inventory\SlotFurnaceResult.java
Patching net\minecraft\world\inventory\TransientCraftingContainer.java
Patching net\minecraft\world\InventoryLargeChest.java
Patching net\minecraft\world\InventorySubcontainer.java
Patching net\minecraft\world\item\alchemy\PotionContents.java
Patching net\minecraft\world\item\component\Consumable.java
Patching net\minecraft\world\item\component\ConsumableListener.java
Patching net\minecraft\world\item\component\DeathProtection.java
Patching net\minecraft\world\item\component\SuspiciousStewEffects.java
Patching net\minecraft\world\item\consume_effects\ApplyStatusEffectsConsumeEffect.java
Patching net\minecraft\world\item\consume_effects\ClearAllStatusEffectsConsumeEffect.java
Patching net\minecraft\world\item\consume_effects\ConsumeEffect.java
Patching net\minecraft\world\item\consume_effects\RemoveStatusEffectsConsumeEffect.java
Patching net\minecraft\world\item\consume_effects\TeleportRandomlyConsumeEffect.java
Patching net\minecraft\world\item\crafting\CraftingManager.java
Patching net\minecraft\world\item\crafting\FurnaceRecipe.java
Patching net\minecraft\world\item\crafting\IRecipe.java
Patching net\minecraft\world\item\crafting\IRecipeComplex.java
Patching net\minecraft\world\item\crafting\RecipeBlasting.java
Patching net\minecraft\world\item\crafting\RecipeCampfire.java
Patching net\minecraft\world\item\crafting\RecipeHolder.java
Patching net\minecraft\world\item\crafting\RecipeItemStack.java
Patching net\minecraft\world\item\crafting\RecipeMap.java
Patching net\minecraft\world\item\crafting\RecipeSmoking.java
Patching net\minecraft\world\item\crafting\RecipeStonecutting.java
Patching net\minecraft\world\item\crafting\ShapedRecipes.java
Patching net\minecraft\world\item\crafting\ShapelessRecipes.java
Patching net\minecraft\world\item\crafting\SmithingTransformRecipe.java
Patching net\minecraft\world\item\crafting\SmithingTrimRecipe.java
Patching net\minecraft\world\item\crafting\TransmuteRecipe.java
Patching net\minecraft\world\item\enchantment\effects\ApplyMobEffect.java
Patching net\minecraft\world\item\enchantment\effects\ExplodeEffect.java
Patching net\minecraft\world\item\enchantment\effects\Ignite.java
Patching net\minecraft\world\item\enchantment\effects\ReplaceBlock.java
Patching net\minecraft\world\item\enchantment\effects\ReplaceDisk.java
Patching net\minecraft\world\item\enchantment\effects\SummonEntityEffect.java
Patching net\minecraft\world\item\ItemArmorStand.java
Patching net\minecraft\world\item\ItemBlock.java
Patching net\minecraft\world\item\ItemBlockWallable.java
Patching net\minecraft\world\item\ItemBoat.java
Patching net\minecraft\world\item\ItemBoneMeal.java
Patching net\minecraft\world\item\ItemBucket.java
Patching net\minecraft\world\item\ItemDebugStick.java
Patching net\minecraft\world\item\ItemDye.java
Patching net\minecraft\world\item\ItemEgg.java
Patching net\minecraft\world\item\ItemEndCrystal.java
Patching net\minecraft\world\item\ItemEnderEye.java
Patching net\minecraft\world\item\ItemEnderPearl.java
Patching net\minecraft\world\item\ItemFireball.java
Patching net\minecraft\world\item\ItemFishingRod.java
Patching net\minecraft\world\item\ItemFlintAndSteel.java
Patching net\minecraft\world\item\ItemHanging.java
Patching net\minecraft\world\item\ItemLeash.java
Patching net\minecraft\world\item\ItemMinecart.java
Patching net\minecraft\world\item\ItemMonsterEgg.java
Patching net\minecraft\world\item\ItemProjectileWeapon.java
Patching net\minecraft\world\item\ItemSign.java
Patching net\minecraft\world\item\ItemSnowball.java
Patching net\minecraft\world\item\ItemStack.java
Patching net\minecraft\world\item\ItemTrident.java
Patching net\minecraft\world\item\MaceItem.java
Patching net\minecraft\world\item\MobBucketItem.java
Patching net\minecraft\world\item\trading\IMerchant.java
Patching net\minecraft\world\item\trading\MerchantRecipe.java
Patching net\minecraft\world\level\block\AbstractCandleBlock.java
Patching net\minecraft\world\level\block\BigDripleafBlock.java
Patching net\minecraft\world\level\block\Block.java
Patching net\minecraft\world\level\block\BlockBamboo.java
Patching net\minecraft\world\level\block\BlockBambooSapling.java
Patching net\minecraft\world\level\block\BlockBed.java
Patching net\minecraft\world\level\block\BlockBeehive.java
Patching net\minecraft\world\level\block\BlockBell.java
Patching net\minecraft\world\level\block\BlockButtonAbstract.java
Patching net\minecraft\world\level\block\BlockCactus.java
Patching net\minecraft\world\level\block\BlockCake.java
Patching net\minecraft\world\level\block\BlockCampfire.java
Patching net\minecraft\world\level\block\BlockCauldron.java
Patching net\minecraft\world\level\block\BlockChest.java
Patching net\minecraft\world\level\block\BlockChorusFlower.java
Patching net\minecraft\world\level\block\BlockCocoa.java
Patching net\minecraft\world\level\block\BlockCommand.java
Patching net\minecraft\world\level\block\BlockComposter.java
Patching net\minecraft\world\level\block\BlockConcretePowder.java
Patching net\minecraft\world\level\block\BlockCoral.java
Patching net\minecraft\world\level\block\BlockCoralFan.java
Patching net\minecraft\world\level\block\BlockCoralFanWall.java
Patching net\minecraft\world\level\block\BlockCoralPlant.java
Patching net\minecraft\world\level\block\BlockCrops.java
Patching net\minecraft\world\level\block\BlockDaylightDetector.java
Patching net\minecraft\world\level\block\BlockDiodeAbstract.java
Patching net\minecraft\world\level\block\BlockDirtSnowSpreadable.java
Patching net\minecraft\world\level\block\BlockDispenser.java
Patching net\minecraft\world\level\block\BlockDoor.java
Patching net\minecraft\world\level\block\BlockDragonEgg.java
Patching net\minecraft\world\level\block\BlockDropper.java
Patching net\minecraft\world\level\block\BlockEnderPortal.java
Patching net\minecraft\world\level\block\BlockEndGateway.java
Patching net\minecraft\world\level\block\BlockFenceGate.java
Patching net\minecraft\world\level\block\BlockFire.java
Patching net\minecraft\world\level\block\BlockFireAbstract.java
Patching net\minecraft\world\level\block\BlockFlowerPot.java
Patching net\minecraft\world\level\block\BlockFluids.java
Patching net\minecraft\world\level\block\BlockFungi.java
Patching net\minecraft\world\level\block\BlockGrassPath.java
Patching net\minecraft\world\level\block\BlockGrowingTop.java
Patching net\minecraft\world\level\block\BlockIce.java
Patching net\minecraft\world\level\block\BlockLeaves.java
Patching net\minecraft\world\level\block\BlockLectern.java
Patching net\minecraft\world\level\block\BlockLever.java
Patching net\minecraft\world\level\block\BlockMagma.java
Patching net\minecraft\world\level\block\BlockMinecartDetector.java
Patching net\minecraft\world\level\block\BlockMobSpawner.java
Patching net\minecraft\world\level\block\BlockMonsterEggs.java
Patching net\minecraft\world\level\block\BlockMushroom.java
Patching net\minecraft\world\level\block\BlockNetherWart.java
Patching net\minecraft\world\level\block\BlockNote.java
Patching net\minecraft\world\level\block\BlockNylium.java
Patching net\minecraft\world\level\block\BlockObserver.java
Patching net\minecraft\world\level\block\BlockPlant.java
Patching net\minecraft\world\level\block\BlockPortal.java
Patching net\minecraft\world\level\block\BlockPoweredRail.java
Patching net\minecraft\world\level\block\BlockPressurePlateAbstract.java
Patching net\minecraft\world\level\block\BlockPressurePlateBinary.java
Patching net\minecraft\world\level\block\BlockPressurePlateWeighted.java
Patching net\minecraft\world\level\block\BlockPumpkinCarved.java
Patching net\minecraft\world\level\block\BlockRedstoneComparator.java
Patching net\minecraft\world\level\block\BlockRedstoneLamp.java
Patching net\minecraft\world\level\block\BlockRedstoneOre.java
Patching net\minecraft\world\level\block\BlockRedstoneTorch.java
Patching net\minecraft\world\level\block\BlockReed.java
Patching net\minecraft\world\level\block\BlockRespawnAnchor.java
Patching net\minecraft\world\level\block\BlockSapling.java
Patching net\minecraft\world\level\block\BlockScaffolding.java
Patching net\minecraft\world\level\block\BlockSign.java
Patching net\minecraft\world\level\block\BlockSnow.java
Patching net\minecraft\world\level\block\BlockSoil.java
Patching net\minecraft\world\level\block\BlockSponge.java
Patching net\minecraft\world\level\block\BlockStem.java
Patching net\minecraft\world\level\block\BlockSweetBerryBush.java
Patching net\minecraft\world\level\block\BlockTallPlant.java
Patching net\minecraft\world\level\block\BlockTNT.java
Patching net\minecraft\world\level\block\BlockTrapdoor.java
Patching net\minecraft\world\level\block\BlockTripwire.java
Patching net\minecraft\world\level\block\BlockTripwireHook.java
Patching net\minecraft\world\level\block\BlockTurtleEgg.java
Patching net\minecraft\world\level\block\BlockVine.java
Patching net\minecraft\world\level\block\BlockWaterLily.java
Patching net\minecraft\world\level\block\BlockWitherRose.java
Patching net\minecraft\world\level\block\BlockWitherSkull.java
Patching net\minecraft\world\level\block\BuddingAmethystBlock.java
Patching net\minecraft\world\level\block\CaveVines.java
Patching net\minecraft\world\level\block\CeilingHangingSignBlock.java
Patching net\minecraft\world\level\block\ChangeOverTimeBlock.java
Patching net\minecraft\world\level\block\CrafterBlock.java
Patching net\minecraft\world\level\block\DecoratedPotBlock.java
Patching net\minecraft\world\level\block\DropExperienceBlock.java
Patching net\minecraft\world\level\block\entity\BrushableBlockEntity.java
Patching net\minecraft\world\level\block\entity\ChiseledBookShelfBlockEntity.java
Patching net\minecraft\world\level\block\entity\ContainerOpenersCounter.java
Patching net\minecraft\world\level\block\entity\CrafterBlockEntity.java
Patching net\minecraft\world\level\block\entity\DecoratedPotBlockEntity.java
Patching net\minecraft\world\level\block\entity\SculkCatalystBlockEntity.java
Patching net\minecraft\world\level\block\entity\TileEntity.java
Patching net\minecraft\world\level\block\entity\TileEntityBanner.java
Patching net\minecraft\world\level\block\entity\TileEntityBarrel.java
Patching net\minecraft\world\level\block\entity\TileEntityBeacon.java
Patching net\minecraft\world\level\block\entity\TileEntityBeehive.java
Patching net\minecraft\world\level\block\entity\TileEntityBell.java
Patching net\minecraft\world\level\block\entity\TileEntityBrewingStand.java
Patching net\minecraft\world\level\block\entity\TileEntityCampfire.java
Patching net\minecraft\world\level\block\entity\TileEntityChest.java
Patching net\minecraft\world\level\block\entity\TileEntityCommand.java
Patching net\minecraft\world\level\block\entity\TileEntityConduit.java
Patching net\minecraft\world\level\block\entity\TileEntityContainer.java
Patching net\minecraft\world\level\block\entity\TileEntityDispenser.java
Patching net\minecraft\world\level\block\entity\TileEntityEndGateway.java
Patching net\minecraft\world\level\block\entity\TileEntityFurnace.java
Patching net\minecraft\world\level\block\entity\TileEntityHopper.java
Patching net\minecraft\world\level\block\entity\TileEntityJukeBox.java
Patching net\minecraft\world\level\block\entity\TileEntityLectern.java
Patching net\minecraft\world\level\block\entity\TileEntityShulkerBox.java
Patching net\minecraft\world\level\block\entity\TileEntitySign.java
Patching net\minecraft\world\level\block\entity\TileEntityTypes.java
Patching net\minecraft\world\level\block\entity\trialspawner\TrialSpawner.java
Patching net\minecraft\world\level\block\entity\trialspawner\TrialSpawnerData.java
Patching net\minecraft\world\level\block\entity\vault\VaultBlockEntity.java
Patching net\minecraft\world\level\block\entity\vault\VaultServerData.java
Patching net\minecraft\world\level\block\EyeblossomBlock.java
Patching net\minecraft\world\level\block\grower\WorldGenTreeProvider.java
Patching net\minecraft\world\level\block\LayeredCauldronBlock.java
Patching net\minecraft\world\level\block\LightningRodBlock.java
Patching net\minecraft\world\level\block\MultifaceSpreader.java
Patching net\minecraft\world\level\block\piston\BlockPiston.java
Patching net\minecraft\world\level\block\PointedDripstoneBlock.java
Patching net\minecraft\world\level\block\PowderSnowBlock.java
Patching net\minecraft\world\level\block\RootedDirtBlock.java
Patching net\minecraft\world\level\block\SculkBlock.java
Patching net\minecraft\world\level\block\SculkCatalystBlock.java
Patching net\minecraft\world\level\block\SculkSensorBlock.java
Patching net\minecraft\world\level\block\SculkShriekerBlock.java
Patching net\minecraft\world\level\block\SculkSpreader.java
Patching net\minecraft\world\level\block\SculkVeinBlock.java
Patching net\minecraft\world\level\block\state\BlockBase.java
Patching net\minecraft\world\level\block\WallHangingSignBlock.java
Patching net\minecraft\world\level\border\WorldBorder.java
Patching net\minecraft\world\level\chunk\Chunk.java
Patching net\minecraft\world\level\chunk\ChunkGenerator.java
Patching net\minecraft\world\level\chunk\ChunkGeneratorStructureState.java
Patching net\minecraft\world\level\chunk\ChunkSection.java
Patching net\minecraft\world\level\chunk\IChunkAccess.java
Patching net\minecraft\world\level\chunk\NibbleArray.java
Patching net\minecraft\world\level\chunk\status\ChunkStatusTasks.java
Patching net\minecraft\world\level\chunk\storage\IChunkLoader.java
Patching net\minecraft\world\level\chunk\storage\RegionFile.java
Patching net\minecraft\world\level\chunk\storage\RegionFileCache.java
Patching net\minecraft\world\level\chunk\storage\SerializableChunkData.java
Patching net\minecraft\world\level\CommandBlockListenerAbstract.java
Patching net\minecraft\world\level\dimension\end\EnderDragonBattle.java
Patching net\minecraft\world\level\dimension\end\EnumDragonRespawn.java
Patching net\minecraft\world\level\entity\EntityAccess.java
Patching net\minecraft\world\level\entity\PersistentEntitySectionManager.java
Patching net\minecraft\world\level\gameevent\GameEventDispatcher.java
Patching net\minecraft\world\level\gameevent\vibrations\VibrationSystem.java
Patching net\minecraft\world\level\GameRules.java
Patching net\minecraft\world\level\GeneratorAccess.java
Patching net\minecraft\world\level\IBlockAccess.java
Patching net\minecraft\world\level\IWorldWriter.java
Patching net\minecraft\world\level\levelgen\ChunkGeneratorAbstract.java
Patching net\minecraft\world\level\levelgen\ChunkProviderFlat.java
Patching net\minecraft\world\level\levelgen\feature\EndPlatformFeature.java
Patching net\minecraft\world\level\levelgen\MobSpawnerPatrol.java
Patching net\minecraft\world\level\levelgen\MobSpawnerPhantom.java
Patching net\minecraft\world\level\levelgen\structure\PersistentStructureLegacy.java
Patching net\minecraft\world\level\levelgen\structure\StructurePiece.java
Patching net\minecraft\world\level\levelgen\structure\structures\DesertPyramidStructure.java
Patching net\minecraft\world\level\levelgen\structure\structures\EndCityPieces.java
Patching net\minecraft\world\level\levelgen\structure\structures\IglooPieces.java
Patching net\minecraft\world\level\levelgen\structure\structures\MineshaftPieces.java
Patching net\minecraft\world\level\levelgen\structure\structures\NetherFortressPieces.java
Patching net\minecraft\world\level\levelgen\structure\structures\OceanRuinPieces.java
Patching net\minecraft\world\level\levelgen\structure\structures\ShipwreckPieces.java
Patching net\minecraft\world\level\levelgen\structure\structures\StrongholdPieces.java
Patching net\minecraft\world\level\levelgen\structure\structures\SwampHutPiece.java
Patching net\minecraft\world\level\levelgen\structure\StructureStart.java
Patching net\minecraft\world\level\levelgen\structure\templatesystem\DefinedStructure.java
Patching net\minecraft\world\level\levelgen\structure\templatesystem\DefinedStructureInfo.java
Patching net\minecraft\world\level\material\FluidTypeFlowing.java
Patching net\minecraft\world\level\material\FluidTypeLava.java
Patching net\minecraft\world\level\MobSpawnerAbstract.java
Patching net\minecraft\world\level\portal\BlockPortalShape.java
Patching net\minecraft\world\level\portal\PortalTravelAgent.java
Patching net\minecraft\world\level\portal\TeleportTransition.java
Patching net\minecraft\world\level\RayTrace.java
Patching net\minecraft\world\level\redstone\DefaultRedstoneWireEvaluator.java
Patching net\minecraft\world\level\redstone\ExperimentalRedstoneWireEvaluator.java
Patching net\minecraft\world\level\redstone\NeighborUpdater.java
Patching net\minecraft\world\level\saveddata\maps\WorldMap.java
Patching net\minecraft\world\level\ServerExplosion.java
Patching net\minecraft\world\level\SpawnerCreature.java
Patching net\minecraft\world\level\storage\Convertable.java
Patching net\minecraft\world\level\storage\loot\LootDataType.java
Patching net\minecraft\world\level\storage\loot\LootTable.java
Patching net\minecraft\world\level\storage\loot\predicates\LootItemConditionSurvivesExplosion.java
Patching net\minecraft\world\level\storage\WorldDataServer.java
Patching net\minecraft\world\level\storage\WorldNBTStorage.java
Patching net\minecraft\world\level\World.java
Patching net\minecraft\world\level\WorldAccess.java
Rebuilding Forked projects.... 
Resetting Spigot-API to Bukkit...
HEAD is now at a3d67ef0 Add support for Java 24
  Applying patches to Spigot-API...
Applying: POM Changes
Applying: Skeleton API Implementations
Applying: Spigot Timings
Applying: BungeeCord Support
Applying: Add respawn API.
Applying: Add support for fetching hidden players
Applying: Silenceable Lightning API
Applying: Add PlayerSpawnLocationEvent.
Applying: BungeeCord Chat API
Applying: Add restart API.
  Patches applied cleanly to Spigot-API
Resetting Spigot-Server to CraftBukkit...
HEAD is now at 6dc4a8cd6 CraftBukkit $ Mon Mar 17 14:01:08 CET 2025
  Applying patches to Spigot-Server...
Applying: POM Changes
Applying: Skeleton API Implementations
Applying: Spigot Configuration
Applying: Crop Growth Rates
Applying: Merge tweaks and configuration
Applying: Async Operation Catching
Applying: View Distance
Applying: Spigot Timings
Applying: Fix Mob Spawning Relative to View Distance
Applying: Item Despawn Rate
Applying: Entity Activation Range
Applying: Metrics
Applying: Entity Tracking Ranges
Applying: Hopper Customisations
Applying: Allow Disabling of Command Logging
Applying: Allow Disabling of Command TabComplete
Applying: Configurable Messages
Applying: Properly Close Inventories
Applying: Disallow Interaction With Self
Applying: Prevent Ghost Players Caused by Plugins
Applying: Implement respawn API.
Applying: Arrow Despawn Rate
Applying: Watchdog Thread.
Applying: BungeeCord Support
Applying: Allow Disabling Zombie Villager Aggression
Applying: Configurable Amount of Netty Threads
Applying: Save ticks lived to nbttag
Applying: Add Option to Nerf Mobs from Spawners
Applying: Allow statistics to be disabled/forced
Applying: Catch stalling on corrupted map data / NBT arrays.
Applying: Allow toggling of ZombiePigmen spawning in portal blocks
Applying: Highly Optimized Tick Loop
Applying: Configurable Ping Sample Size
Applying: Add Optional Tick Shuffling
Applying: Spam Filter Exclusions
Applying: Add Option to Silence CommandBlock Console
Applying: Add support for fetching hidden players
Applying: Allow vanilla commands to be the main version of a command
Applying: Implement Silenceable Lightning API
Applying: Configurable dragon death and wither spawn sounds
Applying: Display 'Spigot' in client crashes, server lists and Mojang stats
Applying: Print Stack on InternalException
Applying: Use Offline Player Data Once if Required.
Applying: Fix Player Banning
Applying: Prevent NoClassDefError crash and notify on crash
Applying: Fix race condition that could kill connections before they were initiated
Applying: Configurable UserCache cap
Applying: Implement PlayerSpawnLocationEvent.
Applying: Configurable save-on-stop-only for UserCache
Applying: Limit block placement/interaction packets
Applying: Better item validation
Applying: Further Seed Customisation
Applying: Safer JSON Loading
Applying: Add CommandLine EULA Flag
Applying: Prevent a crash involving attributes
Applying: Make "moved wrongly" limit configurable
Applying: Make "moved too quickly" limit configurable
Applying: Apply NBTReadLimiter to more things.
Applying: Allow Attribute Capping.
Applying: Plug WorldMap Memory Leak
Applying: Add Hunger Config Values
Applying: Make debug logging togglable.
Applying: Limit TNT Detonations per tick
Applying: Configurable Hanging Tick
Applying: BungeeCord Chat API
Applying: Allow Capping (Tile)Entity Tick Time.
Applying: Use Map for getPlayer(String) lookup.
Applying: Clear Packet Queue on Disconnect
Applying: Configurable Advancement Disabling
Applying: Add creative mode NBT permissions
Applying: Allow Reading Old Large Chunks
Applying: Add log-villager-deaths option
Applying: Allow Disabling Player Data Saving
Applying: Configurable Thunder Chance
Applying: Configurable Below Zero Generation
Applying: Add unload-frozen-chunks option
  Patches applied cleanly to Spigot-Server
*** Spigot patches applied!
Compiling Spigot & Spigot-API
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO] 
[INFO] Spigot-API                                                         [jar]
[INFO] Spigot-Parent                                                      [pom]
[INFO] Spigot                                                             [jar]
[INFO] 
[INFO] ----------------------< org.spigotmc:spigot-api >-----------------------
[INFO] Building Spigot-API 1.21.4-R0.1-SNAPSHOT                           [1/3]
[INFO]   from Spigot-API\pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- clean:3.2.0:clean (default-clean) @ spigot-api ---
[INFO] Deleting C:\Users\david\Desktop\BT\Spigot\Spigot-API\target
[INFO] 
[INFO] --- scriptus:0.5.0:describe (default) @ spigot-api ---
[INFO] Set property "describe" to "git-Spigot-API-a3d67ef"
[INFO] Set property "project.build.outputTimestamp" to "1741946002"
[INFO] 
[INFO] --- resources:3.3.1:resources (default-resources) @ spigot-api ---
[INFO] skip non existing resourceDirectory C:\Users\david\Desktop\BT\Spigot\Spigot-API\src\main\resources
[INFO] 
[INFO] --- compiler:3.13.0:compile (default-compile) @ spigot-api ---
[INFO] Recompiling the module because of changed source code.
[INFO] Compiling 1251 source files with javac [debug release 17] to target\classes
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-API/src/main/java/org/bukkit/Art.java: Some input files use or override a deprecated API.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-API/src/main/java/org/bukkit/Art.java: Recompile with -Xlint:deprecation for details.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-API/src/main/java/org/bukkit/entity/HumanEntity.java: Some input files use or override a deprecated API that is marked for removal.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-API/src/main/java/org/bukkit/entity/HumanEntity.java: Recompile with -Xlint:removal for details.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-API/src/main/java/org/bukkit/World.java: Some input files use unchecked or unsafe operations.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-API/src/main/java/org/bukkit/World.java: Recompile with -Xlint:unchecked for details.
[INFO] 
[INFO] --- resources:3.3.1:testResources (default-testResources) @ spigot-api ---
[INFO] skip non existing resourceDirectory C:\Users\david\Desktop\BT\Spigot\Spigot-API\src\test\resources
[INFO] 
[INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ spigot-api ---
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 59 source files with javac [debug release 17] to target\test-classes
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-API/src/test/java/org/bukkit/CoalTypeTest.java: Some input files use or override a deprecated API.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-API/src/test/java/org/bukkit/CoalTypeTest.java: Recompile with -Xlint:deprecation for details.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-API/src/test/java/org/bukkit/metadata/FixedMetadataValueTest.java: Some input files use or override a deprecated API that is marked for removal.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-API/src/test/java/org/bukkit/metadata/FixedMetadataValueTest.java: Recompile with -Xlint:removal for details.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-API/src/test/java/org/bukkit/conversations/ConversationContextTest.java: Some input files use unchecked or unsafe operations.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-API/src/test/java/org/bukkit/conversations/ConversationContextTest.java: Recompile with -Xlint:unchecked for details.
[INFO] 
[INFO] --- surefire:3.2.5:test (default-test) @ spigot-api ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- jar:3.4.1:jar (default-jar) @ spigot-api ---
[INFO] Building jar: C:\Users\david\Desktop\BT\Spigot\Spigot-API\target\spigot-api-1.21.4-R0.1-SNAPSHOT.jar
[INFO] 
[INFO] --- shade:3.5.3:shade (default) @ spigot-api ---
[INFO] Including com.google.guava:guava:jar:33.3.1-jre in the shaded jar.
[INFO] Including com.google.guava:failureaccess:jar:1.0.2 in the shaded jar.
[INFO] Including com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava in the shaded jar.
[INFO] Including com.google.code.findbugs:jsr305:jar:3.0.2 in the shaded jar.
[INFO] Including org.checkerframework:checker-qual:jar:3.43.0 in the shaded jar.
[INFO] Including com.google.errorprone:error_prone_annotations:jar:2.28.0 in the shaded jar.
[INFO] Including com.google.j2objc:j2objc-annotations:jar:3.0.0 in the shaded jar.
[INFO] Including com.google.code.gson:gson:jar:2.11.0 in the shaded jar.
[INFO] Including org.joml:joml:jar:1.10.8 in the shaded jar.
[INFO] Including net.md-5:bungeecord-chat:jar:1.20-R0.2 in the shaded jar.
[INFO] Including org.yaml:snakeyaml:jar:2.2 in the shaded jar.
[WARNING] Discovered module-info.class. Shading will break its strong encapsulation.
[WARNING] Discovered module-info.class. Shading will break its strong encapsulation.
[WARNING] error_prone_annotations-2.28.0.jar, gson-2.11.0.jar, j2objc-annotations-3.0.0.jar, snakeyaml-2.2.jar define 1 overlapping classes: 
[WARNING]   - META-INF.versions.9.module-info
[WARNING] maven-shade-plugin has detected that some files are
[WARNING] present in two or more JARs. When this happens, only one
[WARNING] single version of the file is copied to the uber jar.
[WARNING] Usually this is not harmful and you can skip these warnings,
[WARNING] otherwise try to manually exclude artifacts based on
[WARNING] mvn dependency:tree -Ddetail=true and the above output.
[WARNING] See https://maven.apache.org/plugins/maven-shade-plugin/
[INFO] Attaching shaded artifact.
[INFO] 
[INFO] --- install:3.1.1:install (default-install) @ spigot-api ---
[INFO] Installing C:\Users\david\Desktop\BT\Spigot\Spigot-API\pom.xml to C:\Users\david\.m2\repository\org\spigotmc\spigot-api\1.21.4-R0.1-SNAPSHOT\spigot-api-1.21.4-R0.1-SNAPSHOT.pom
[INFO] Installing C:\Users\david\Desktop\BT\Spigot\Spigot-API\target\spigot-api-1.21.4-R0.1-SNAPSHOT.jar to C:\Users\david\.m2\repository\org\spigotmc\spigot-api\1.21.4-R0.1-SNAPSHOT\spigot-api-1.21.4-R0.1-SNAPSHOT.jar
[INFO] Installing C:\Users\david\Desktop\BT\Spigot\Spigot-API\target\spigot-api-1.21.4-R0.1-SNAPSHOT-shaded.jar to C:\Users\david\.m2\repository\org\spigotmc\spigot-api\1.21.4-R0.1-SNAPSHOT\spigot-api-1.21.4-R0.1-SNAPSHOT-shaded.jar
[INFO] 
[INFO] ---------------------< org.spigotmc:spigot-parent >---------------------
[INFO] Building Spigot-Parent dev-SNAPSHOT                                [2/3]
[INFO]   from pom.xml
[INFO] --------------------------------[ pom ]---------------------------------
[INFO] 
[INFO] --- clean:3.2.0:clean (default-clean) @ spigot-parent ---
[INFO] 
[INFO] --- install:3.1.1:install (default-install) @ spigot-parent ---
[INFO] Installing C:\Users\david\Desktop\BT\Spigot\pom.xml to C:\Users\david\.m2\repository\org\spigotmc\spigot-parent\dev-SNAPSHOT\spigot-parent-dev-SNAPSHOT.pom
[INFO] 
[INFO] ------------------------< org.spigotmc:spigot >-------------------------
[INFO] Building Spigot 1.21.4-R0.1-SNAPSHOT                               [3/3]
[INFO]   from Spigot-Server\pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- clean:3.2.0:clean (default-clean) @ spigot ---
[INFO] Deleting C:\Users\david\Desktop\BT\Spigot\Spigot-Server\target
[INFO] 
[INFO] --- scriptus:0.5.0:describe (ex-spigot) @ spigot ---
[INFO] Set property "spigot.desc" to "4457-Spigot-73860e0"
[INFO] Set property "project.build.outputTimestamp" to "1741559708"
[INFO] 
[INFO] --- scriptus:0.5.0:describe (ex-craftbukkit) @ spigot ---
[INFO] Set property "craftbukkit.desc" to "-f0c8dd3"
[INFO] Set property "project.build.outputTimestamp" to "1741945926"
[INFO] 
[INFO] --- clean:3.2.0:clean (default) @ spigot ---
[INFO] 
[INFO] --- resources:3.3.1:resources (default-resources) @ spigot ---
[INFO] Copying 4 resources from src\main\resources to target\classes
[INFO] 
[INFO] --- compiler:3.13.0:compile (default-compile) @ spigot ---
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 1436 source files with javac [debug release 21] to target\classes
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-Server/src/main/java/net/minecraft/commands/CommandDispatcher.java: Some input files use or override a deprecated API.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-Server/src/main/java/net/minecraft/commands/CommandDispatcher.java: Recompile with -Xlint:deprecation for details.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-Server/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java: Some input files use or override a deprecated API that is marked for removal.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-Server/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java: Recompile with -Xlint:removal for details.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-Server/src/main/java/com/mojang/brigadier/tree/CommandNode.java: Some input files use unchecked or unsafe operations.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-Server/src/main/java/com/mojang/brigadier/tree/CommandNode.java: Recompile with -Xlint:unchecked for details.
[INFO] 
[INFO] --- resources:3.3.1:testResources (default-testResources) @ spigot ---
[INFO] Copying 1 resource from src\test\resources to target\test-classes
[INFO] 
[INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ spigot ---
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 120 source files with javac [debug release 21] to target\test-classes
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-Server/src/test/java/org/bukkit/ArtTest.java: Some input files use or override a deprecated API.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-Server/src/test/java/org/bukkit/ArtTest.java: Recompile with -Xlint:deprecation for details.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-Server/src/test/java/org/bukkit/craftbukkit/inventory/CompositeSerialization.java: Some input files use or override a deprecated API that is marked for removal.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-Server/src/test/java/org/bukkit/craftbukkit/inventory/CompositeSerialization.java: Recompile with -Xlint:removal for details.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-Server/src/test/java/org/bukkit/craftbukkit/inventory/ItemStackTest.java: Some input files use unchecked or unsafe operations.
[INFO] /C:/Users/david/Desktop/BT/Spigot/Spigot-Server/src/test/java/org/bukkit/craftbukkit/inventory/ItemStackTest.java: Recompile with -Xlint:unchecked for details.
[INFO] 
[INFO] --- surefire:3.2.5:test (default-test) @ spigot ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- jar:3.4.1:jar (default-jar) @ spigot ---
[INFO] Building jar: C:\Users\david\Desktop\BT\Spigot\Spigot-Server\target\spigot-1.21.4-R0.1-SNAPSHOT.jar
[INFO] 
[INFO] --- shade:3.5.3:shade (default) @ spigot ---
[INFO] Including org.spigotmc:minecraft-server:jar:1.21.4-R0.1-SNAPSHOT in the shaded jar.
[INFO] Excluding org.spigotmc:spigot-api:jar:1.21.4-R0.1-SNAPSHOT from the shaded jar.
[INFO] Excluding com.google.guava:guava:jar:33.3.1-jre from the shaded jar.
[INFO] Excluding com.google.guava:failureaccess:jar:1.0.2 from the shaded jar.
[INFO] Excluding com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava from the shaded jar.
[INFO] Excluding org.checkerframework:checker-qual:jar:3.43.0 from the shaded jar.
[INFO] Excluding com.google.errorprone:error_prone_annotations:jar:2.28.0 from the shaded jar.
[INFO] Excluding com.google.j2objc:j2objc-annotations:jar:3.0.0 from the shaded jar.
[INFO] Excluding com.google.code.gson:gson:jar:2.11.0 from the shaded jar.
[INFO] Excluding org.joml:joml:jar:1.10.8 from the shaded jar.
[INFO] Excluding net.md-5:bungeecord-chat:jar:1.20-R0.2 from the shaded jar.
[INFO] Excluding org.yaml:snakeyaml:jar:2.2 from the shaded jar.
[INFO] Excluding jline:jline:jar:2.12.1 from the shaded jar.
[INFO] Excluding org.apache.logging.log4j:log4j-iostreams:jar:2.24.1 from the shaded jar.
[INFO] Excluding org.ow2.asm:asm-commons:jar:9.7.1 from the shaded jar.
[INFO] Excluding org.ow2.asm:asm:jar:9.7.1 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-annotations:jar:2.13.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-core:jar:2.13.4 from the shaded jar.
[INFO] Excluding com.fasterxml.jackson.core:jackson-databind:jar:2.13.4.2 from the shaded jar.
[INFO] Excluding com.github.oshi:oshi-core:jar:6.6.5 from the shaded jar.
[INFO] Excluding com.github.stephenc.jcip:jcip-annotations:jar:1.0-1 from the shaded jar.
[INFO] Excluding com.microsoft.azure:msal4j:jar:1.17.2 from the shaded jar.
[INFO] Excluding com.mojang:authlib:jar:6.0.57 from the shaded jar.
[INFO] Excluding com.google.code.findbugs:jsr305:jar:3.0.2 from the shaded jar.
[INFO] Excluding com.mojang:brigadier:jar:1.3.10 from the shaded jar.
[INFO] Excluding com.mojang:datafixerupper:jar:8.0.16 from the shaded jar.
[INFO] Excluding com.mojang:jtracy:jar:1.0.29 from the shaded jar.
[INFO] Excluding com.mojang:logging:jar:1.5.10 from the shaded jar.
[INFO] Excluding com.nimbusds:content-type:jar:2.3 from the shaded jar.
[INFO] Excluding com.nimbusds:lang-tag:jar:1.7 from the shaded jar.
[INFO] Excluding com.nimbusds:nimbus-jose-jwt:jar:9.40 from the shaded jar.
[INFO] Excluding com.nimbusds:oauth2-oidc-sdk:jar:11.18 from the shaded jar.
[INFO] Excluding commons-io:commons-io:jar:2.17.0 from the shaded jar.
[INFO] Excluding io.netty:netty-buffer:jar:4.1.115.Final from the shaded jar.
[INFO] Excluding io.netty:netty-codec:jar:4.1.115.Final from the shaded jar.
[INFO] Excluding io.netty:netty-common:jar:4.1.115.Final from the shaded jar.
[INFO] Excluding io.netty:netty-handler:jar:4.1.115.Final from the shaded jar.
[INFO] Excluding io.netty:netty-resolver:jar:4.1.115.Final from the shaded jar.
[INFO] Excluding io.netty:netty-transport:jar:4.1.115.Final from the shaded jar.
[INFO] Excluding io.netty:netty-transport-classes-epoll:jar:4.1.115.Final from the shaded jar.
[INFO] Excluding io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.115.Final from the shaded jar.
[INFO] Excluding io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.115.Final from the shaded jar.
[INFO] Excluding io.netty:netty-transport-native-unix-common:jar:4.1.115.Final from the shaded jar.
[INFO] Excluding it.unimi.dsi:fastutil:jar:8.5.15 from the shaded jar.
[INFO] Excluding net.java.dev.jna:jna:jar:5.15.0 from the shaded jar.
[INFO] Excluding net.java.dev.jna:jna-platform:jar:5.15.0 from the shaded jar.
[INFO] Excluding net.minidev:accessors-smart:jar:2.5.1 from the shaded jar.
[INFO] Excluding net.minidev:json-smart:jar:2.5.1 from the shaded jar.
[INFO] Excluding net.sf.jopt-simple:jopt-simple:jar:5.0.4 from the shaded jar.
[INFO] Excluding org.apache.commons:commons-lang3:jar:3.17.0 from the shaded jar.
[INFO] Excluding org.apache.logging.log4j:log4j-api:jar:2.24.1 from the shaded jar.
[INFO] Excluding org.apache.logging.log4j:log4j-core:jar:2.24.1 from the shaded jar.
[INFO] Excluding org.apache.logging.log4j:log4j-slf4j2-impl:jar:2.24.1 from the shaded jar.
[INFO] Excluding org.lz4:lz4-java:jar:1.8.0 from the shaded jar.
[INFO] Excluding org.slf4j:slf4j-api:jar:2.0.16 from the shaded jar.
[INFO] Excluding commons-lang:commons-lang:jar:2.6 from the shaded jar.
[INFO] Excluding com.googlecode.json-simple:json-simple:jar:1.1.1 from the shaded jar.
[INFO] Excluding org.xerial:sqlite-jdbc:jar:3.47.0.0 from the shaded jar.
[INFO] Excluding com.mysql:mysql-connector-j:jar:9.1.0 from the shaded jar.
[INFO] Excluding com.google.protobuf:protobuf-java:jar:4.26.1 from the shaded jar.
[INFO] Excluding org.apache.maven:maven-resolver-provider:jar:3.9.6 from the shaded jar.
[INFO] Excluding org.apache.maven:maven-model:jar:3.9.6 from the shaded jar.
[INFO] Excluding org.apache.maven:maven-model-builder:jar:3.9.6 from the shaded jar.
[INFO] Excluding org.codehaus.plexus:plexus-interpolation:jar:1.26 from the shaded jar.
[INFO] Excluding org.apache.maven:maven-artifact:jar:3.9.6 from the shaded jar.
[INFO] Excluding org.apache.maven:maven-builder-support:jar:3.9.6 from the shaded jar.
[INFO] Excluding org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.9.0.M2 from the shaded jar.
[INFO] Excluding org.apache.maven:maven-repository-metadata:jar:3.9.6 from the shaded jar.
[INFO] Excluding org.apache.maven.resolver:maven-resolver-api:jar:1.9.18 from the shaded jar.
[INFO] Excluding org.apache.maven.resolver:maven-resolver-spi:jar:1.9.18 from the shaded jar.
[INFO] Excluding org.apache.maven.resolver:maven-resolver-util:jar:1.9.18 from the shaded jar.
[INFO] Excluding org.apache.maven.resolver:maven-resolver-impl:jar:1.9.18 from the shaded jar.
[INFO] Excluding org.apache.maven.resolver:maven-resolver-named-locks:jar:1.9.18 from the shaded jar.
[INFO] Excluding org.codehaus.plexus:plexus-utils:jar:3.5.1 from the shaded jar.
[INFO] Excluding javax.inject:javax.inject:jar:1 from the shaded jar.
[INFO] Excluding org.apache.maven.resolver:maven-resolver-connector-basic:jar:1.9.18 from the shaded jar.
[INFO] Excluding org.apache.maven.resolver:maven-resolver-transport-http:jar:1.9.18 from the shaded jar.
[INFO] Excluding org.apache.httpcomponents:httpclient:jar:4.5.14 from the shaded jar.
[INFO] Excluding org.apache.httpcomponents:httpcore:jar:4.4.16 from the shaded jar.
[INFO] Excluding commons-codec:commons-codec:jar:1.16.0 from the shaded jar.
[INFO] Excluding org.slf4j:jcl-over-slf4j:jar:1.7.36 from the shaded jar.
[INFO] Dependency-reduced POM written at: C:\Users\david\Desktop\BT\Spigot\Spigot-Server\dependency-reduced-pom.xml
[WARNING] minecraft-server-1.21.4-R0.1-SNAPSHOT.jar, spigot-1.21.4-R0.1-SNAPSHOT.jar define 1184 overlapping class and resource: 
[WARNING]   - META-INF/MANIFEST.MF
[WARNING]   - net.minecraft.CrashReport
[WARNING]   - net.minecraft.advancements.AdvancementHolder
[WARNING]   - net.minecraft.advancements.AdvancementTree
[WARNING]   - net.minecraft.advancements.AdvancementTree$a
[WARNING]   - net.minecraft.commands.CommandDispatcher
[WARNING]   - net.minecraft.commands.CommandDispatcher$1
[WARNING]   - net.minecraft.commands.CommandDispatcher$1$1
[WARNING]   - net.minecraft.commands.CommandDispatcher$ServerType
[WARNING]   - net.minecraft.commands.CommandDispatcher$b
[WARNING]   - 1174 more...
[WARNING] maven-shade-plugin has detected that some files are
[WARNING] present in two or more JARs. When this happens, only one
[WARNING] single version of the file is copied to the uber jar.
[WARNING] Usually this is not harmful and you can skip these warnings,
[WARNING] otherwise try to manually exclude artifacts based on
[WARNING] mvn dependency:tree -Ddetail=true and the above output.
[WARNING] See https://maven.apache.org/plugins/maven-shade-plugin/
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing C:\Users\david\Desktop\BT\Spigot\Spigot-Server\target\spigot-1.21.4-R0.1-SNAPSHOT.jar with C:\Users\david\Desktop\BT\Spigot\Spigot-Server\target\spigot-1.21.4-R0.1-SNAPSHOT-shaded.jar
[INFO] 
[INFO] --- specialsource:2.0.4:remap (remap-members) @ spigot ---
Downloading from minecraft-libraries: https://libraries.minecraft.net/org/spigotmc/minecraft-server/1.21.4-R0.1-SNAPSHOT/minecraft-server-1.21.4-R0.1-SNAPSHOT-maps-spigot-members.csrg
org.eclipse.aether.resolution.ArtifactResolutionException: The following artifacts could not be resolved: org.spigotmc:minecraft-server:csrg:maps-spigot-members:1.21.4-R0.1-SNAPSHOT (absent): Could not find artifact org.spigotmc:minecraft-server:csrg:maps-spigot-members:1.21.4-R0.1-SNAPSHOT in minecraft-libraries (https://libraries.minecraft.net/)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:473)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts(DefaultArtifactResolver.java:261)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact(DefaultArtifactResolver.java:243)
    at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveArtifact(DefaultRepositorySystem.java:278)
    at net.md_5.specialsource.mavenplugin.RemapMojo.resolveArtifact(RemapMojo.java:152)
    at net.md_5.specialsource.mavenplugin.RemapMojo.resolveArtifact(RemapMojo.java:145)
    at net.md_5.specialsource.mavenplugin.RemapMojo.execute(RemapMojo.java:191)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:126)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:328)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:316)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:174)
    at org.apache.maven.lifecycle.internal.MojoExecutor.access$000(MojoExecutor.java:75)
    at org.apache.maven.lifecycle.internal.MojoExecutor$1.run(MojoExecutor.java:162)
    at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute(DefaultMojosExecutionStrategy.java:39)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:159)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:105)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:73)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:53)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:118)
    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:261)
    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:173)
    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:101)
    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:906)
    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:283)
    at org.apache.maven.cli.MavenCli.main(MavenCli.java:206)
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
    at java.base/java.lang.reflect.Method.invoke(Method.java:580)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:283)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:226)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:407)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:348)
Caused by: org.eclipse.aether.transfer.ArtifactNotFoundException: Could not find artifact org.spigotmc:minecraft-server:csrg:maps-spigot-members:1.21.4-R0.1-SNAPSHOT in minecraft-libraries (https://libraries.minecraft.net/)
    at org.eclipse.aether.connector.basic.ArtifactTransportListener.transferFailed(ArtifactTransportListener.java:42)
    at org.eclipse.aether.connector.basic.BasicRepositoryConnector$TaskRunner.run(BasicRepositoryConnector.java:417)
    at org.eclipse.aether.connector.basic.BasicRepositoryConnector.get(BasicRepositoryConnector.java:260)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.performDownloads(DefaultArtifactResolver.java:537)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:449)
    ... 31 more
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] 
[INFO] Spigot-API 1.21.4-R0.1-SNAPSHOT .................... SUCCESS [ 10.182 s]
[INFO] Spigot-Parent dev-SNAPSHOT ......................... SUCCESS [  0.009 s]
[INFO] Spigot 1.21.4-R0.1-SNAPSHOT ........................ FAILURE [ 23.633 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  33.922 s
[INFO] Finished at: 2025-03-17T14:01:49+01:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal net.md-5:specialsource-maven-plugin:2.0.4:remap (remap-members) on project spigot: Error creating remapped jar: The following artifacts could not be resolved: org.spigotmc:minecraft-server:csrg:maps-spigot-members:1.21.4-R0.1-SNAPSHOT (absent): Could not find artifact org.spigotmc:minecraft-server:csrg:maps-spigot-members:1.21.4-R0.1-SNAPSHOT in minecraft-libraries (https://libraries.minecraft.net/) -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <args> -rf :spigot
Error compiling Spigot. Please check the wiki for FAQs.
If this does not resolve your issue then please pastebin the entire BuildTools.log.txt file when seeking support.
java.lang.RuntimeException: Error running command, return status !=0: [C:\Users\david\Desktop\BT\apache-maven-3.9.6/bin/mvn.cmd, -Dbt.name=4457, -P, remapped, clean, install]
    at org.spigotmc.builder.Builder.runProcess0(Builder.java:1042)
    at org.spigotmc.builder.Builder.runProcess(Builder.java:967)
    at org.spigotmc.builder.Builder.runMaven0(Builder.java:936)
    at org.spigotmc.builder.Builder.runMavenServer(Builder.java:905)
    at org.spigotmc.builder.Builder.startBuilder(Builder.java:683)
    at org.spigotmc.builder.Bootstrap.main(Bootstrap.java:60)