Paste #129043: DenizenMetaBot Auto-Repaste Of log From bwn20112cool

Date: 2024/12/14 12:59:51 UTC-08:00
Type: Server Log

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
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234


[19:34:48] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.3+9-LTS; Eclipse Adoptium Temurin-21.0.3+9) on Linux 6.2.0-39-generic (amd64)
[19:34:48] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.1-132-ver/1.21.1@b48403b (2024-11-21T10:14:27Z) for Minecraft 1.21.1
[19:34:49] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[19:34:50] [ServerMain/ERROR]: [DirectoryProviderSource] Error loading plugin: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/citizensapi-2.0.37-SNAPSHOT.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
java.lang.RuntimeException: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/citizensapi-2.0.37-SNAPSHOT.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:86) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:52) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:17) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:15) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.Main.main(Main.java:123) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.PaperBootstrap.boot(PaperBootstrap.java:21) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.craftbukkit.Main.main(Main.java:281) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/citizensapi-2.0.37-SNAPSHOT.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    ... 10 more
[19:34:50] [ServerMain/INFO]: [PluginInitializerManager] Initialized 9 plugins
[19:34:50] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (9):
 - Citizens (2.0.37-SNAPSHOT (build 3646)), LPC (3.6.0), LuckPerms (5.4.150), MinehutPlugin (0.0.27-SNAPSHOT), Multiverse-Core (4.3.14), Skript (2.9.5), Vault (1.7.3-b131), ViaVersion (5.2.0), WorldEdit (7.3.9+6959-7adf70b)
[19:34:57] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[19:35:00] [ServerMain/INFO]: Loaded 1290 recipes
[19:35:00] [ServerMain/INFO]: Loaded 1399 advancements
[19:35:01] [Server thread/INFO]: Starting minecraft server version 1.21.1
[19:35:01] [Server thread/INFO]: Loading properties
[19:35:01] [Server thread/INFO]: This server is running Paper version 1.21.1-132-ver/1.21.1@b48403b (2024-11-21T10:14:27Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[19:35:02] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[19:35:02] [Server thread/INFO]: Server Ping Player Sample Count: 12
[19:35:02] [Server thread/INFO]: Using 4 threads for Netty based IO
[19:35:04] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend migrating to the spark profiler.
    For more information please visit: https://github.com/PaperMC/Paper/discussions/10565
[19:35:04] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and population gen parallelism of 1 threads
[19:35:04] [Server thread/INFO]: Default game type: SURVIVAL
[19:35:04] [Server thread/INFO]: Generating keypair
[19:35:04] [Server thread/INFO]: Starting Minecraft server on *:25575
[19:35:04] [Server thread/INFO]: Using epoll channel type
[19:35:04] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[19:35:04] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[19:35:06] [Server thread/WARN]: [MinehutPlugin] Found no matching version for version 1.21.1-R0.1-SNAPSHOT, using most modern.
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.pom
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/joml/joml/1.10.8/joml-1.10.8.pom
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.pom
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.pom
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.pom
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-api/4.13.1/adventure-api-4.13.1.pom
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-bom/4.13.1/adventure-bom-4.13.1.pom
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-key/4.13.1/adventure-key-4.13.1.pom
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/examination-api/1.3.0/examination-api-1.3.0.pom
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/annotations/22.0.0/annotations-22.0.0.pom
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/examination-string/1.3.0/examination-string-1.3.0.pom
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/annotations/24.0.1/annotations-24.0.1.pom
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.pom
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.pom
[19:35:06] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.pom
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.pom
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.pom
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.pom
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.pom
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.pom
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-bom/4.17.0/adventure-bom-4.17.0.pom
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.pom
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.pom
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/annotations/24.1.0/annotations-24.1.0.pom
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[19:35:07] [BasicRepositoryConnector-repo.maven.apache.org-0-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/joml/joml/1.10.8/joml-1.10.8.jar
[19:35:07] [BasicRepositoryConnector-repo.maven.apache.org-0-3/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[19:35:07] [BasicRepositoryConnector-repo.maven.apache.org-0-2/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[19:35:07] [BasicRepositoryConnector-repo.maven.apache.org-0-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[19:35:07] [BasicRepositoryConnector-repo.maven.apache.org-0-1/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[19:35:07] [BasicRepositoryConnector-repo.maven.apache.org-0-3/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[19:35:07] [BasicRepositoryConnector-repo.maven.apache.org-0-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[19:35:07] [BasicRepositoryConnector-repo.maven.apache.org-0-3/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[19:35:07] [BasicRepositoryConnector-repo.maven.apache.org-0-3/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[19:35:07] [BasicRepositoryConnector-repo.maven.apache.org-0-3/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[19:35:07] [BasicRepositoryConnector-repo.maven.apache.org-0-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[19:35:07] [BasicRepositoryConnector-repo.maven.apache.org-0-4/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[19:35:07] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[19:35:08] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.0
[19:35:08] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.0 is now loaded. Registering protocol transformers and injecting...
[19:35:09] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[19:35:09] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[19:35:09] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.150
[19:35:10] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[19:35:10] [Server thread/INFO]: [MinehutPlugin] Loading server plugin MinehutPlugin v0.0.27-SNAPSHOT
[19:35:10] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3646)
[19:35:10] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.9.5
[19:35:10] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[19:35:10] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.14
[19:35:10] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.9+6959-7adf70b
[19:35:11] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@28e2f094]
[19:35:11] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[19:35:11] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.150
[19:35:12] [Server thread/INFO]:         __    
[19:35:12] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.150
[19:35:12] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[19:35:12] [Server thread/INFO]: 
[19:35:12] [Server thread/INFO]: [LuckPerms] Loading configuration...
[19:35:12] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[19:35:13] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[19:35:13] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[19:35:13] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1943ms)
[19:35:13] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[19:35:13] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[19:35:13] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[19:35:13] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[19:35:13] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.9+6959-7adf70b
[19:35:13] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[19:35:13] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[19:35:14] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21.PaperweightAdapter as the Bukkit adapter
[19:35:16] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[19:35:16] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[19:35:16] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[19:35:16] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[19:35:16] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[19:35:16] [Server thread/INFO]: Preparing level "world"
[19:35:18] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[19:35:20] [Server thread/INFO]: Time elapsed: 2010 ms
[19:35:20] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[19:35:20] [Server thread/INFO]: Time elapsed: 415 ms
[19:35:20] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[19:35:20] [Server thread/INFO]: Time elapsed: 285 ms
[19:35:20] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.0
[19:35:21] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[19:35:21] [Server thread/INFO]: [MinehutPlugin] Enabling MinehutPlugin v0.0.27-SNAPSHOT
[19:35:22] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3646)
[19:35:22] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[19:35:23] [Server thread/ERROR]: [Citizens] Could not fetch NMS field cj: [[static final field has no write access: net.minecraft.world.entity.animal.armadillo.Armadillo.SCARE_DISTANCE_HORIZONTAL/double/putStatic, from class net.citizensnpcs.util.NMS (unnamed module @3a25d608).
[19:35:23] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.37-SNAPSHOT (build 3646) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R3/boss/CraftBossBar
    at Citizens-2.0.37-b3646 (1).jar/net.citizensnpcs.nms.v1_21_R3.util.NMSImpl.<clinit>(NMSImpl.java:2719) ~[Citizens-2.0.37-b3646 (1).jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at Citizens-2.0.37-b3646 (1).jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:171) ~[Citizens-2.0.37-b3646 (1).jar:?]
    at Citizens-2.0.37-b3646 (1).jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:176) ~[Citizens-2.0.37-b3646 (1).jar:?]
    at Citizens-2.0.37-b3646 (1).jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:322) ~[Citizens-2.0.37-b3646 (1).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R3.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[19:35:23] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.37-SNAPSHOT (build 3646)
[19:35:23] [Server thread/INFO]: [Skript] Enabling Skript v2.9.5
[19:35:24] [Thread-11/INFO]: [Skript] You're currently running the latest stable version of Skript.
[19:35:48] [Server thread/INFO]: [Skript] Loaded 233074 aliases in 24812ms
[19:35:49] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[19:35:49] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[19:35:49] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.14
[19:35:49] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.14" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[19:35:49] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[19:35:50] [Server thread/INFO]: Preparing start region for dimension minecraft:flatroom
[19:35:50] [Server thread/INFO]: Time elapsed: 239 ms
[19:35:50] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[19:35:50] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[19:35:50] [Server thread/INFO]: [Multiverse-Core] Version 4.3.14 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[19:35:51] [Server thread/INFO]: [spark] Starting background profiler...
[19:35:51] [Server thread/INFO]: Done preparing level "world" (34.601s)
[19:35:51] [Server thread/INFO]: Running delayed init tasks
[19:35:51] [Craft Scheduler Thread - 5 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[19:35:51] [Craft Scheduler Thread - 9 - Vault/INFO]: [Vault] Checking for Updates ... 
[19:35:51] [Server thread/INFO]: [Skript] Loading variables...
[19:35:51] [Craft Scheduler Thread - 9 - Vault/INFO]: [Vault] No new version available
[19:35:51] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[19:35:52] [Server thread/INFO]: [Skript] Line 4: (Test.sk)
[19:35:52] [Server thread/INFO]:     Can't compare a location with 'within cuboid from {-49, -62, -67} to {49, -47, 102}'
[19:35:52] [Server thread/INFO]:     Line: if location of loop-entity is within cuboid from {-49, -62, -67} to {49, -47, 102}:
[19:35:52] [Server thread/INFO]:  
[19:35:52] [Server thread/INFO]: [Skript] Loaded 2 scripts with a total of 2 structures in 0.37 seconds
[19:35:52] [Server thread/INFO]: [Skript] Finished loading.
[19:35:52] [Server thread/INFO]: Done (65.396s)! For help, type "help"
[19:35:52] [Server thread/INFO]: Timings Reset
[19:35:52] [User Authenticator #0/INFO]: UUID of player .The_SodaTaxi is 00000000-0000-0000-0009-01fc288eb5e2
[19:35:53] [Server thread/INFO]: .The_SodaTaxi joined the game
[19:35:54] [Server thread/INFO]: .The_SodaTaxi[/248.255.201.108:54766] logged in with entity id 109 at ([flatroom]-27.342377, -58.8, -53.075592)
[19:36:03] [Async Chat Thread - #0/INFO]: [Not Secure] Owner .The_SodaTaxi: Hi
[19:36:13] [User Authenticator #0/INFO]: UUID of player Mrvmax1000_Yt is c2a775fc-b918-4156-9203-60ff05f4b7b0
[19:36:15] [Server thread/INFO]: Mrvmax1000_Yt joined the game
[19:36:15] [Server thread/INFO]: Mrvmax1000_Yt[/194.42.101.75:47584] logged in with entity id 146 at ([world]7.5, 69.0, -9.5)
[19:36:24] [Async Chat Thread - #1/INFO]: [Not Secure] Owner .The_SodaTaxi: Hey
[19:36:31] [Async Chat Thread - #1/INFO]: [NEW] Mrvmax1000_Yt: hey
[19:36:33] [Server thread/INFO]: [@: Set Mrvmax1000_Yt's game mode to Creative Mode]
[19:36:40] [Async Chat Thread - #1/INFO]: [NEW] Mrvmax1000_Yt: can u op me?
[19:36:42] [Server thread/INFO]: .The_SodaTaxi issued server command: /op Mrvmax1000_Yt
[19:36:42] [Server thread/INFO]: [.The_SodaTaxi: Made Mrvmax1000_Yt a server operator]
[19:36:47] [Async Chat Thread - #1/INFO]: [NEW] Mrvmax1000_Yt: ty
[19:36:58] [Async Chat Thread - #1/INFO]: [NEW] Mrvmax1000_Yt: kk
[19:37:03] [Async Chat Thread - #1/INFO]: [NEW] Mrvmax1000_Yt: what do u want
[19:37:05] [Async Chat Thread - #1/INFO]: [Not Secure] Owner .The_SodaTaxi: We Need School and others
[19:37:10] [Async Chat Thread - #0/INFO]: [NEW] Mrvmax1000_Yt: kk
[19:37:17] [Async Chat Thread - #0/INFO]: [NEW] Mrvmax1000_Yt: school first
[19:37:18] [Async Chat Thread - #0/INFO]: [Not Secure] Owner .The_SodaTaxi: Idk like a city
[19:37:38] [Async Chat Thread - #0/INFO]: [Not Secure] Owner .The_SodaTaxi: I can spawn npc students
[19:37:49] [Async Chat Thread - #0/INFO]: [NEW] Mrvmax1000_Yt: cool
[19:37:51] [Server thread/INFO]: .The_SodaTaxi issued server command: /npc create police
[19:37:51] [Server thread/ERROR]: Command exception: /npc create police
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.37-SNAPSHOT (build 3646) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:91) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:443) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:350) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:332) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performSignedChatCommand(ServerGamePacketListenerImpl.java:2279) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleSignedChatCommand$12(ServerGamePacketListenerImpl.java:2233) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1535) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1512) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1505) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1464) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1471) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1316) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[19:38:03] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /setblock ~ ~ ~ minecraft:furnace
[19:38:03] [Server thread/INFO]: [Mrvmax1000_Yt: Changed the block at 12, -61, 12]
[19:38:12] [Async Chat Thread - #0/INFO]: [Not Secure] Owner .The_SodaTaxi: oh crap npc plugin broken
[19:38:25] [Server thread/INFO]: .The_SodaTaxi issued server command: /npc create
[19:38:25] [Server thread/ERROR]: Command exception: /npc create
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.37-SNAPSHOT (build 3646) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:91) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:443) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:350) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:332) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performSignedChatCommand(ServerGamePacketListenerImpl.java:2279) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleSignedChatCommand$12(ServerGamePacketListenerImpl.java:2233) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1535) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1512) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1505) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1464) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1471) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1316) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[19:38:31] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode c
[19:38:40] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative
[19:38:40] [Server thread/INFO]: [.The_SodaTaxi: Set own game mode to Creative Mode]
[19:39:11] [Async Chat Thread - #0/INFO]: [Not Secure] Owner .The_SodaTaxi: Oh Well
[19:39:17] [Async Chat Thread - #0/INFO]: [Not Secure] Owner .The_SodaTaxi: BrB
[19:39:20] [Async Chat Thread - #0/INFO]: [NEW] Mrvmax1000_Yt: k
[19:39:51] [Async Chat Thread - #0/INFO]: [Not Secure] Owner .The_SodaTaxi: I gotta setup a rank rq
[19:39:54] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp
[19:39:57] [Async Chat Thread - #0/INFO]: [NEW] Mrvmax1000_Yt: kk
[19:40:01] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp help
[19:40:30] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp creategroup criminal
[19:40:30] [luckperms-command-executor/INFO]: [LP] LOG > (.The_SodaTaxi) [G] (criminal)
[19:40:30] [luckperms-command-executor/INFO]: [LP] LOG > create
[19:40:35] [Async Chat Thread - #0/INFO]: [NEW] Mrvmax1000_Yt: ok
[19:40:40] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp editor
[19:42:03] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode survival .The_SodaTaxi
[19:42:03] [Server thread/INFO]: [Mrvmax1000_Yt: Set .The_SodaTaxi's game mode to Survival Mode]
[19:42:09] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /tp .The_SodaTaxi @s
[19:42:09] [Server thread/INFO]: [Mrvmax1000_Yt: Teleported .The_SodaTaxi to Mrvmax1000_Yt]
[19:42:09] [Server thread/WARN]: .The_SodaTaxi moved too quickly! 50.025959517254634,2.0,80.11240475087119
[19:42:09] [Server thread/WARN]: .The_SodaTaxi moved too quickly! 50.025959517254634,2.0,80.11240475087119
[19:42:09] [Server thread/WARN]: .The_SodaTaxi moved too quickly! 50.025959517254634,2.0,80.11240475087119
[19:42:09] [Server thread/WARN]: .The_SodaTaxi moved too quickly! 50.025959517254634,2.0,80.11240475087119
[19:42:09] [Server thread/WARN]: .The_SodaTaxi moved too quickly! 50.025959517254634,2.0,80.11240475087119
[19:42:09] [Server thread/WARN]: .The_SodaTaxi moved too quickly! 50.025959517254634,2.0,80.11240475087119
[19:42:09] [Server thread/WARN]: .The_SodaTaxi moved too quickly! 50.025959517254634,2.0,80.11240475087119
[19:42:09] [Server thread/WARN]: .The_SodaTaxi moved too quickly! 50.025959517254634,2.0,80.11240475087119
[19:42:09] [Server thread/WARN]: .The_SodaTaxi moved too quickly! 50.025959517254634,2.0,80.11240475087119
[19:42:15] [Async Chat Thread - #3/INFO]: [NEW] Mrvmax1000_Yt: what do u think
[19:42:39] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /thru
[19:42:44] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /thru
[19:44:42] [Async Chat Thread - #5/INFO]: [Not Secure] Owner .The_SodaTaxi: Im afk
[19:44:48] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /give @s minecraft:netherite_sword
[19:44:48] [Server thread/INFO]: [Mrvmax1000_Yt: Gave 1 [Netherite Sword] to Mrvmax1000_Yt]
[19:44:53] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp applyedits fsFxC0Vmw
[19:45:00] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp applyedits fsFxCOVmw
[19:45:13] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp applyedits fsXxCOVmw
[19:45:18] [Async Chat Thread - #5/INFO]: [Not Secure] Owner .The_SodaTaxi: Stop
[19:45:21] [Async Chat Thread - #6/INFO]: [NEW] Mrvmax1000_Yt: k
[19:45:23] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode c
[19:45:31] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative
[19:45:31] [Server thread/INFO]: [.The_SodaTaxi: Set own game mode to Creative Mode]
[19:45:41] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp applyedits fsFXCOVmw
[19:45:42] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /summon minecraft:fireball
[19:45:42] [Server thread/INFO]: [Mrvmax1000_Yt: Summoned new Fireball]
[19:45:50] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp applyedits fsFxCOVmw
[19:45:52] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /summon minecraft:fireball
[19:45:52] [Server thread/INFO]: [Mrvmax1000_Yt: Summoned new Fireball]
[19:45:57] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp applyedits fsFxC0Vmw
[19:46:03] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /summon minecraft:fireball
[19:46:03] [Server thread/INFO]: [Mrvmax1000_Yt: Summoned new Fireball]
[19:46:06] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp help
[19:46:16] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /superpickaxe
[19:46:20] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /summon minecraft:ghast
[19:46:20] [Server thread/INFO]: [Mrvmax1000_Yt: Summoned new Ghast]
[19:46:29] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp search prefix
[19:46:59] [Async Chat Thread - #7/INFO]: [Not Secure] Owner .The_SodaTaxi: Hmm Looks Good We Need A school though
[19:47:06] [Async Chat Thread - #7/INFO]: [NEW] Mrvmax1000_Yt: im building a bus
[19:47:12] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /time set day
[19:47:12] [Server thread/INFO]: [Mrvmax1000_Yt: Set the time to 1000]
[19:47:25] [Async Chat Thread - #7/INFO]: [Not Secure] Owner .The_SodaTaxi: Ima set up a rank
[19:47:28] [Async Chat Thread - #7/INFO]: [NEW] Mrvmax1000_Yt: k
[19:47:29] [Async Chat Thread - #7/INFO]: [Not Secure] Owner .The_SodaTaxi: BrB
[19:47:37] [Async Chat Thread - #7/INFO]: [Not Secure] Owner .The_SodaTaxi: Dont Kill Me
[19:49:03] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp applyedits dYUj7Qb1vT
[19:49:04] [luckperms-command-executor/INFO]: [LP] LOG > (.The_SodaTaxi) [G] (criminal)
[19:49:04] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add prefix.0.&eCriminal true
[19:49:10] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /give @s minecraft:globe_banner_pattern
[19:49:10] [Server thread/INFO]: [Mrvmax1000_Yt: Gave 1 [Banner Pattern] to Mrvmax1000_Yt]
[19:49:54] [Async Chat Thread - #9/INFO]: [NEW] Mrvmax1000_Yt: yo whenever im giving myself resin it becomes stone
[19:50:02] [Server thread/WARN]: [LuckPerms] Error parsing selector '@p[r=2]' for org.bukkit.craftbukkit.command.CraftBlockCommandSender@164ad584 executing [user, @p[r=2], parent, set, criminal]
java.lang.IllegalArgumentException: Could not parse selector: @p[r=2]
    at org.bukkit.craftbukkit.CraftServer.selectEntities(CraftServer.java:2932) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at me.lucko.luckperms.bukkit.BukkitCommandExecutor.resolveSelectors(BukkitCommandExecutor.java:140) ~[?:?]
    at me.lucko.luckperms.bukkit.BukkitCommandExecutor.onCommand(BukkitCommandExecutor.java:81) ~[?:?]
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:91) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:443) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:350) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performPrefixedCommand(Commands.java:327) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.dispatchServerCommand(Commands.java:316) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.level.BaseCommandBlock.performCommand(BaseCommandBlock.java:139) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.level.block.CommandBlock.execute(CommandBlock.java:132) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.level.block.CommandBlock.tick(CommandBlock.java:119) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.tick(BlockBehaviour.java:1222) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.level.ServerLevel.tickBlock(ServerLevel.java:1192) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.ticks.LevelTicks.runCollectedTicks(LevelTicks.java:192) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.ticks.LevelTicks.tick(LevelTicks.java:89) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:673) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1804) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1596) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1302) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: com.mojang.brigadier.exceptions.CommandSyntaxException: Unknown option 'r' at position 3: @p[<--[HERE]
[19:50:02] [Server thread/WARN]: [LuckPerms] Error parsing selector '@p[r=2]' for org.bukkit.craftbukkit.command.CraftBlockCommandSender@619d897c executing [user, @p[r=2], parent, set, criminal]
java.lang.IllegalArgumentException: Could not parse selector: @p[r=2]
    at org.bukkit.craftbukkit.CraftServer.selectEntities(CraftServer.java:2932) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at me.lucko.luckperms.bukkit.BukkitCommandExecutor.resolveSelectors(BukkitCommandExecutor.java:140) ~[?:?]
    at me.lucko.luckperms.bukkit.BukkitCommandExecutor.onCommand(BukkitCommandExecutor.java:81) ~[?:?]
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:91) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:443) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:350) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performPrefixedCommand(Commands.java:327) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.dispatchServerCommand(Commands.java:316) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.level.BaseCommandBlock.performCommand(BaseCommandBlock.java:139) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.level.block.CommandBlock.execute(CommandBlock.java:132) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.level.block.CommandBlock.tick(CommandBlock.java:119) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.tick(BlockBehaviour.java:1222) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.level.ServerLevel.tickBlock(ServerLevel.java:1192) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.ticks.LevelTicks.runCollectedTicks(LevelTicks.java:192) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.ticks.LevelTicks.tick(LevelTicks.java:89) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:673) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1804) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1596) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1302) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: com.mojang.brigadier.exceptions.CommandSyntaxException: Unknown option 'r' at position 3: @p[<--[HERE]
[19:50:02] [Server thread/WARN]: [LuckPerms] Player '00000000-0000-0000-0000-000000000000' is spamming LuckPerms commands. Ignoring further inputs.
[19:50:06] [Async Chat Thread - #9/INFO]: [Not Secure] Owner .The_SodaTaxi: Hi
[19:50:13] [Server thread/WARN]: [LuckPerms] Error parsing selector '@p[r=3]' for org.bukkit.craftbukkit.command.CraftBlockCommandSender@347d3f38 executing [user, @p[r=3], parent, set, criminal]
java.lang.IllegalArgumentException: Could not parse selector: @p[r=3]
    at org.bukkit.craftbukkit.CraftServer.selectEntities(CraftServer.java:2932) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at me.lucko.luckperms.bukkit.BukkitCommandExecutor.resolveSelectors(BukkitCommandExecutor.java:140) ~[?:?]
    at me.lucko.luckperms.bukkit.BukkitCommandExecutor.onCommand(BukkitCommandExecutor.java:81) ~[?:?]
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:91) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:443) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:350) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performPrefixedCommand(Commands.java:327) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.dispatchServerCommand(Commands.java:316) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.level.BaseCommandBlock.performCommand(BaseCommandBlock.java:139) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.level.block.CommandBlock.execute(CommandBlock.java:132) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.level.block.CommandBlock.tick(CommandBlock.java:119) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.tick(BlockBehaviour.java:1222) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.level.ServerLevel.tickBlock(ServerLevel.java:1192) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.ticks.LevelTicks.runCollectedTicks(LevelTicks.java:192) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.world.ticks.LevelTicks.tick(LevelTicks.java:89) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:673) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1804) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1596) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1302) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: com.mojang.brigadier.exceptions.CommandSyntaxException: Unknown option 'r' at position 3: @p[<--[HERE]
[19:50:19] [Async Chat Thread - #9/INFO]: [Not Secure] Owner .The_SodaTaxi: Test
[19:50:24] [Async Chat Thread - #9/INFO]: [Not Secure] Owner .The_SodaTaxi: Hmm
[19:50:40] [Async Chat Thread - #9/INFO]: [Not Secure] Criminal.The_SodaTaxi: Test
[19:50:52] [Async Chat Thread - #9/INFO]: [Not Secure] Criminal.The_SodaTaxi: IT WORKS ISH
[19:51:19] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode survival
[19:51:19] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Survival Mode]
[19:51:22] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode spectator
[19:51:22] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Spectator Mode]
[19:51:32] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[19:51:32] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[19:51:36] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode spectator
[19:51:36] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Spectator Mode]
[19:51:42] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[19:51:42] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[19:51:48] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /give @s minecraft:torch
[19:51:48] [Server thread/INFO]: [Mrvmax1000_Yt: Gave 1 [Torch] to Mrvmax1000_Yt]
[19:51:59] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode spectator
[19:51:59] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Spectator Mode]
[19:52:14] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /setblock ~ ~ ~ light
[19:52:14] [Server thread/INFO]: [Mrvmax1000_Yt: Changed the block at 10, -59, 26]
[19:52:19] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[19:52:19] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[19:52:29] [Server thread/INFO]: [@: Set .The_SodaTaxi's game mode to Adventure Mode]
[19:52:30] [Server thread/WARN]: [LuckPerms] Player '00000000-0000-0000-0000-000000000000' is spamming LuckPerms commands. Ignoring further inputs.
[19:52:38] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /setblock ~ ~ ~ light
[19:52:38] [Server thread/INFO]: [Mrvmax1000_Yt: Changed the block at 11, -59, 26]
[19:52:44] [Async Chat Thread - #11/INFO]: [Not Secure] Criminal.The_SodaTaxi: It works perfect
[19:53:09] [Async Chat Thread - #12/INFO]: [Not Secure] Criminal.The_SodaTaxi: Lemme Fix A typo rq
[19:53:11] [Async Chat Thread - #12/INFO]: [NEW] Mrvmax1000_Yt: ok
[19:53:15] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /thru
[19:53:47] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /enchant @s minecraft:sharpness 5
[19:53:47] [Server thread/INFO]: [Mrvmax1000_Yt: Applied enchantment Sharpness V to Mrvmax1000_Yt's item]
[19:53:47] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp editor
[19:54:22] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /kill @e[type=minecraft:bat]
[19:54:22] [Server thread/INFO]: [Mrvmax1000_Yt: Killed 11 entities]
[19:55:06] [Server thread/INFO]: [@: Set Mrvmax1000_Yt's game mode to Adventure Mode]
[19:55:15] [Async Chat Thread - #13/INFO]: [Not Secure] Criminal.The_SodaTaxi: Hey
[19:55:17] [Async Chat Thread - #13/INFO]: CriminalMrvmax1000_Yt: thorns?
[19:55:21] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode c
[19:55:30] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative
[19:55:30] [Server thread/INFO]: [.The_SodaTaxi: Set own game mode to Creative Mode]
[19:55:33] [Server thread/INFO]: [@: Set .The_SodaTaxi's game mode to Adventure Mode]
[19:55:37] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode c
[19:55:41] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative
[19:55:41] [Server thread/INFO]: [.The_SodaTaxi: Set own game mode to Creative Mode]
[19:55:42] [Async Chat Thread - #13/INFO]: CriminalMrvmax1000_Yt: im in adventure?
[19:55:49] [Async Chat Thread - #13/INFO]: [Not Secure] Criminal.The_SodaTaxi: Great
[19:56:01] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode survival
[19:56:01] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Survival Mode]
[19:56:05] [Async Chat Thread - #14/INFO]: [Not Secure] Criminal.The_SodaTaxi: I really need to fix
[19:56:14] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode survival @a
[19:56:14] [Server thread/INFO]: [Mrvmax1000_Yt: Set .The_SodaTaxi's game mode to Survival Mode]
[19:56:14] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp applyedits zNdYkUQSdG
[19:56:17] [luckperms-command-executor/INFO]: [LP] LOG > (.The_SodaTaxi) [G] (criminal)
[19:56:17] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add prefix.0.&eCriminal  true
[19:56:17] [luckperms-command-executor/INFO]: [LP] LOG > (.The_SodaTaxi) [G] (criminal)
[19:56:17] [luckperms-command-executor/INFO]: [LP] LOG > webeditor remove prefix.0.&eCriminal true
[19:56:20] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative
[19:56:20] [Server thread/INFO]: [.The_SodaTaxi: Set own game mode to Creative Mode]
[19:56:25] [Async Chat Thread - #14/INFO]: [Not Secure] Criminal .The_SodaTaxi: There
[19:56:31] [Async Chat Thread - #14/INFO]: Criminal Mrvmax1000_Yt: brb
[19:56:33] [Async Chat Thread - #13/INFO]: [Not Secure] Criminal .The_SodaTaxi: RANK FIXED
[19:56:52] [Async Chat Thread - #13/INFO]: [Not Secure] Police .The_SodaTaxi: POLICE FREEZE
[19:57:39] [Async Chat Thread - #14/INFO]: [Not Secure] Police .The_SodaTaxi: Police
[19:57:45] [Async Chat Thread - #14/INFO]: Criminal Mrvmax1000_Yt: wow
[19:57:57] [Async Chat Thread - #14/INFO]: [Not Secure] Police .The_SodaTaxi: your a criminal?
[19:58:06] [Async Chat Thread - #13/INFO]: Criminal Mrvmax1000_Yt: uh huh
[19:58:19] [Async Chat Thread - #13/INFO]: Criminal Mrvmax1000_Yt: brb
[19:58:40] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp user Mrvmax1000 parent remove criminal
[19:58:50] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp user Mrvmax1000_yt parent remove criminal
[19:58:50] [luckperms-command-executor/INFO]: [LP] LOG > (.The_SodaTaxi) [U] (mrvmax1000_yt)
[19:58:50] [luckperms-command-executor/INFO]: [LP] LOG > parent remove criminal
[19:58:59] [Server thread/INFO]: .The_SodaTaxi issued server command: /time set day
[19:58:59] [Server thread/INFO]: [.The_SodaTaxi: Set the time to 1000]
[19:59:21] [Server thread/INFO]: Mrvmax1000_Yt lost connection: Disconnected
[19:59:21] [Server thread/INFO]: Mrvmax1000_Yt left the game
[20:00:04] [User Authenticator #1/INFO]: UUID of player Mrvmax1000_Yt is c2a775fc-b918-4156-9203-60ff05f4b7b0
[20:00:05] [Server thread/INFO]: Mrvmax1000_Yt joined the game
[20:00:05] [Server thread/INFO]: Mrvmax1000_Yt[/175.220.3.164:48326] logged in with entity id 368 at ([flatroom]-32.18442769658942, -61.0, -51.051173609835814)
[20:00:17] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /give @p player_head[profile={name:"police"}] 1
[20:00:17] [Server thread/INFO]: [Mrvmax1000_Yt: Gave 1 [police's Head] to Mrvmax1000_Yt]
[20:00:28] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /give @p player_head[profile={name:"notch"}] 1
[20:00:28] [Server thread/INFO]: [Mrvmax1000_Yt: Gave 1 [notch's Head] to Mrvmax1000_Yt]
[20:00:45] [Async Chat Thread - #15/INFO]: [Not Secure] Police .The_SodaTaxi: A wolf?
[20:00:51] [Async Chat Thread - #16/INFO]: [NEW] Mrvmax1000_Yt: notch
[20:01:00] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[20:01:00] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[20:01:13] [Async Chat Thread - #16/INFO]: [Not Secure] Police .The_SodaTaxi: School Rember
[20:01:13] [Server thread/INFO]: [@: Set Mrvmax1000_Yt's game mode to Adventure Mode]
[20:01:20] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[20:01:20] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[20:01:26] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /thru
[20:01:26] [Server thread/INFO]: [@: Set Mrvmax1000_Yt's game mode to Adventure Mode]
[20:01:31] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[20:01:31] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[20:02:00] [Async Chat Thread - #16/INFO]: [Not Secure] Police .The_SodaTaxi: I didnt build this btw
[20:02:06] [Async Chat Thread - #16/INFO]: Criminal Mrvmax1000_Yt: who did then
[20:02:21] [Async Chat Thread - #16/INFO]: [Not Secure] Police .The_SodaTaxi: Worldedit
[20:02:29] [Async Chat Thread - #16/INFO]: Criminal Mrvmax1000_Yt: oh
[20:02:39] [Async Chat Thread - #16/INFO]: [Not Secure] Police .The_SodaTaxi: A schematic
[20:02:44] [Server thread/INFO]: Mrvmax1000_Yt has made the advancement [Cover Me with Diamonds]
[20:03:08] [Async Chat Thread - #16/INFO]: [Not Secure] Police .The_SodaTaxi: Im also making it apply a skin for the rank
[20:03:25] [Server thread/INFO]: Mrvmax1000_Yt has made the advancement [Diamonds!]
[20:03:48] [Server thread/INFO]: Mrvmax1000_Yt has made the advancement [Crafting a New Look]
[20:03:50] [Async Chat Thread - #16/INFO]: [Not Secure] Police .The_SodaTaxi: I need a computer head
[20:03:58] [Server thread/INFO]: .The_SodaTaxi issued server command: /vers
[20:03:59] [Async Chat Thread - #16/INFO]: Criminal Mrvmax1000_Yt: ok
[20:04:01] [Server thread/INFO]: .The_SodaTaxi issued server command: /version
[20:04:56] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode survival
[20:04:56] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Survival Mode]
[20:05:15] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[20:05:15] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[20:06:46] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /enchant @s minecraft:protection 5
[20:06:54] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /enchant @s minecraft:protection 4
[20:06:54] [Server thread/INFO]: [Mrvmax1000_Yt: Applied enchantment Protection IV to Mrvmax1000_Yt's item]
[20:06:56] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /enchant @s minecraft:protection 4
[20:06:56] [Server thread/INFO]: [Mrvmax1000_Yt: Applied enchantment Protection IV to Mrvmax1000_Yt's item]
[20:06:59] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /enchant @s minecraft:protection 4
[20:06:59] [Server thread/INFO]: [Mrvmax1000_Yt: Applied enchantment Protection IV to Mrvmax1000_Yt's item]
[20:07:01] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /enchant @s minecraft:protection 4
[20:07:01] [Server thread/INFO]: [Mrvmax1000_Yt: Applied enchantment Protection IV to Mrvmax1000_Yt's item]
[20:07:02] [Async Chat Thread - #17/INFO]: [Not Secure] Police .The_SodaTaxi: BrB
[20:07:03] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /enchant @s minecraft:protection 4
[20:07:03] [Server thread/INFO]: [Mrvmax1000_Yt: Applied enchantment Protection IV to Mrvmax1000_Yt's item]
[20:07:25] [Server thread/INFO]: Mrvmax1000_Yt lost connection: Timed out
[20:07:25] [Server thread/INFO]: Mrvmax1000_Yt left the game
[20:08:20] [User Authenticator #2/INFO]: UUID of player Mrvmax1000_Yt is c2a775fc-b918-4156-9203-60ff05f4b7b0
[20:08:21] [Server thread/INFO]: Mrvmax1000_Yt joined the game
[20:08:21] [Server thread/INFO]: Mrvmax1000_Yt[/175.220.3.164:37184] logged in with entity id 380 at ([flatroom]-32.85785503014849, -55.0, -48.337924801456275)
[20:08:34] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[20:08:34] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[20:10:02] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /enchant @s minecraft:protection 4
[20:10:02] [Server thread/INFO]: [Mrvmax1000_Yt: Applied enchantment Protection IV to Mrvmax1000_Yt's item]
[20:10:03] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /enchant @s minecraft:protection 4
[20:10:07] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /enchant @s minecraft:protection 4
[20:10:07] [Server thread/INFO]: [Mrvmax1000_Yt: Applied enchantment Protection IV to Mrvmax1000_Yt's item]
[20:10:10] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /enchant @s minecraft:protection 4
[20:10:10] [Server thread/INFO]: [Mrvmax1000_Yt: Applied enchantment Protection IV to Mrvmax1000_Yt's item]
[20:10:12] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /enchant @s minecraft:protection 4
[20:10:12] [Server thread/INFO]: [Mrvmax1000_Yt: Applied enchantment Protection IV to Mrvmax1000_Yt's item]
[20:10:40] [Server thread/INFO]: .The_SodaTaxi issued server command: /lp user Mrvmax1000_yt parent remove criminal
[20:10:40] [luckperms-command-executor/INFO]: [LP] LOG > (.The_SodaTaxi) [U] (mrvmax1000_yt)
[20:10:40] [luckperms-command-executor/INFO]: [LP] LOG > parent remove criminal
[20:10:42] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /thru
[20:10:53] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /thru
[20:10:54] [Async Chat Thread - #20/INFO]: [Not Secure] Police .The_SodaTaxi: MY BIRD
[20:11:00] [Async Chat Thread - #20/INFO]: [NEW] Mrvmax1000_Yt: sry
[20:12:01] [Async Chat Thread - #22/INFO]: [NEW] Mrvmax1000_Yt: brb
[20:12:14] [Server thread/INFO]: [@: Set .The_SodaTaxi's game mode to Adventure Mode]
[20:12:16] [Server thread/WARN]: [LuckPerms] Player '00000000-0000-0000-0000-000000000000' is spamming LuckPerms commands. Ignoring further inputs.
[20:12:46] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative
[20:12:46] [Server thread/INFO]: [.The_SodaTaxi: Set own game mode to Creative Mode]
[20:13:27] [Server thread/INFO]: [@: Set .The_SodaTaxi's game mode to Adventure Mode]
[20:13:27] [Server thread/WARN]: [LuckPerms] Player '00000000-0000-0000-0000-000000000000' is spamming LuckPerms commands. Ignoring further inputs.
[20:13:53] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative
[20:13:53] [Server thread/INFO]: [.The_SodaTaxi: Set own game mode to Creative Mode]
[20:14:16] [Server thread/INFO]: [@: Set .The_SodaTaxi's game mode to Survival Mode]
[20:14:25] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative
[20:14:25] [Server thread/INFO]: [.The_SodaTaxi: Set own game mode to Creative Mode]
[20:14:28] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /tp @s .The_SodaTaxi
[20:14:28] [Server thread/INFO]: [Mrvmax1000_Yt: Teleported Mrvmax1000_Yt to .The_SodaTaxi]
[20:14:44] [Async Chat Thread - #24/INFO]: [Not Secure] Police .The_SodaTaxi: Hi
[20:14:51] [Server thread/INFO]: .The_SodaTaxi issued server command: /time set day
[20:14:51] [Server thread/INFO]: [.The_SodaTaxi: Set the time to 1000]
[20:14:52] [Server thread/INFO]: [@: Set Mrvmax1000_Yt's game mode to Adventure Mode]
[20:15:13] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /time set night
[20:15:13] [Server thread/INFO]: [Mrvmax1000_Yt: Set the time to 13000]
[20:15:15] [Server thread/INFO]: Mrvmax1000_Yt has made the advancement [Sweet Dreams]
[20:15:26] [Async Chat Thread - #24/INFO]: Criminal Mrvmax1000_Yt: sleep
[20:15:27] [Server thread/INFO]: .The_SodaTaxi issued server command: /tp Mrvmax1000_Yt
[20:15:27] [Server thread/INFO]: [.The_SodaTaxi: Teleported .The_SodaTaxi to Mrvmax1000_Yt]
[20:15:42] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /kick .The_SodaTaxi
[20:15:42] [Server thread/INFO]: .The_SodaTaxi lost connection: Kicked by an operator
[20:15:42] [Server thread/INFO]: .The_SodaTaxi left the game
[20:15:42] [Server thread/INFO]: [Mrvmax1000_Yt: Kicked .The_SodaTaxi: Kicked by an operator]
[20:15:53] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[20:15:53] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[20:15:55] [Server thread/INFO]: [@: Set Mrvmax1000_Yt's game mode to Adventure Mode]
[20:16:00] [User Authenticator #3/INFO]: UUID of player .The_SodaTaxi is 00000000-0000-0000-0009-01fc288eb5e2
[20:16:00] [Server thread/INFO]: .The_SodaTaxi joined the game
[20:16:00] [Server thread/INFO]: .The_SodaTaxi[/248.255.201.108:48196] logged in with entity id 397 at ([flatroom]-36.5, -61.0, -59.5)
[20:16:01] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[20:16:01] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[20:16:05] [Async Chat Thread - #24/INFO]: Criminal Mrvmax1000_Yt: i was testing
[20:16:08] [Server thread/INFO]: [@: Set Mrvmax1000_Yt's game mode to Adventure Mode]
[20:16:08] [Server thread/WARN]: [LuckPerms] Player '00000000-0000-0000-0000-000000000000' is spamming LuckPerms commands. Ignoring further inputs.
[20:16:12] [Async Chat Thread - #25/INFO]: [Not Secure] Police .The_SodaTaxi: Right
[20:16:16] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative
[20:16:16] [Server thread/INFO]: [.The_SodaTaxi: Set own game mode to Creative Mode]
[20:16:24] [Server thread/INFO]: Mrvmax1000_Yt was slain by .The_SodaTaxi using [Ban Hammer]
[20:16:35] [Async Chat Thread - #24/INFO]: Criminal Mrvmax1000_Yt: what was that
[20:16:40] [Server thread/INFO]: [@: Set .The_SodaTaxi's game mode to Adventure Mode]
[20:16:40] [Server thread/WARN]: [LuckPerms] Player '00000000-0000-0000-0000-000000000000' is spamming LuckPerms commands. Ignoring further inputs.
[20:16:59] [Server thread/INFO]: .The_SodaTaxi was slain by Mrvmax1000_Yt
[20:17:02] [Server thread/INFO]: Mrvmax1000_Yt has made the advancement [Ice Bucket Challenge]
[20:17:12] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative
[20:17:12] [Server thread/INFO]: [.The_SodaTaxi: Set own game mode to Creative Mode]
[20:17:13] [Server thread/INFO]: [@: Set .The_SodaTaxi's game mode to Adventure Mode]
[20:17:20] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative
[20:17:20] [Server thread/INFO]: [.The_SodaTaxi: Set own game mode to Creative Mode]
[20:17:27] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[20:17:27] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[20:17:30] [Server thread/INFO]: [@: Set Mrvmax1000_Yt's game mode to Adventure Mode]
[20:18:05] [Async Chat Thread - #27/INFO]: [Not Secure] Criminal .The_SodaTaxi: Litter Bug
[20:18:28] [Async Chat Thread - #27/INFO]: [Not Secure] Criminal .The_SodaTaxi: Bop
[20:18:55] [Async Chat Thread - #26/INFO]: [Not Secure] Criminal .The_SodaTaxi: Sorry
[20:19:03] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative @a
[20:19:03] [Server thread/INFO]: [.The_SodaTaxi: Set Mrvmax1000_Yt's game mode to Creative Mode]
[20:19:04] [Async Chat Thread - #26/INFO]: Criminal Mrvmax1000_Yt: huh
[20:19:14] [Async Chat Thread - #26/INFO]: [Not Secure] Criminal .The_SodaTaxi: I hit u
[20:19:34] [Async Chat Thread - #26/INFO]: [Not Secure] Criminal .The_SodaTaxi: On Acident
[20:19:55] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /give @p minecraft:leather_helmet[enchantments={levels:{'protection':255,'thorns':255},show_in_tooltip:true}]
[20:19:55] [Server thread/INFO]: [Mrvmax1000_Yt: Gave 1 [Leather Cap] to Mrvmax1000_Yt]
[20:20:15] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode survival @a
[20:20:15] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Survival Mode]
[20:20:15] [Server thread/INFO]: [Mrvmax1000_Yt: Set .The_SodaTaxi's game mode to Survival Mode]
[20:20:26] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /tp .The_SodaTaxi @s
[20:20:26] [Server thread/INFO]: [Mrvmax1000_Yt: Teleported .The_SodaTaxi to Mrvmax1000_Yt]
[20:20:26] [Server thread/WARN]: .The_SodaTaxi moved too quickly! 11.338727148136613,0.0,9.891580838274926
[20:20:26] [Server thread/WARN]: .The_SodaTaxi moved too quickly! -11.338727148136613,0.0,-9.891580838274926
[20:20:30] [Async Chat Thread - #26/INFO]: Criminal Mrvmax1000_Yt: punch me
[20:20:39] [Async Chat Thread - #26/INFO]: Criminal Mrvmax1000_Yt: in creative
[20:20:39] [Async Chat Thread - #27/INFO]: [Not Secure] Criminal .The_SodaTaxi: STOP CHANGING MY GAMEMODE
[20:20:47] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative @a
[20:20:47] [Server thread/INFO]: [.The_SodaTaxi: Set Mrvmax1000_Yt's game mode to Creative Mode]
[20:20:47] [Server thread/INFO]: [.The_SodaTaxi: Set own game mode to Creative Mode]
[20:21:11] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /thru
[20:21:11] [Server thread/INFO]: [@: Set Mrvmax1000_Yt's game mode to Adventure Mode]
[20:21:27] [Server thread/INFO]: .The_SodaTaxi issued server command: /tp Mrvmax1000_Yt
[20:21:27] [Server thread/INFO]: [.The_SodaTaxi: Teleported .The_SodaTaxi to Mrvmax1000_Yt]
[20:21:39] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative @a
[20:21:39] [Server thread/INFO]: [.The_SodaTaxi: Set Mrvmax1000_Yt's game mode to Creative Mode]
[20:21:52] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /damage .The_SodaTaxi 15
[20:21:59] [Async Chat Thread - #28/INFO]: [Not Secure] Criminal .The_SodaTaxi: We Still Need A School
[20:22:04] [Async Chat Thread - #28/INFO]: Criminal Mrvmax1000_Yt: ok
[20:22:08] [Server thread/INFO]: .The_SodaTaxi issued server command: /time set day
[20:22:08] [Server thread/INFO]: [.The_SodaTaxi: Set the time to 1000]
[20:22:15] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /time set day
[20:22:15] [Server thread/INFO]: [Mrvmax1000_Yt: Set the time to 1000]
[20:22:18] [Server thread/INFO]: .The_SodaTaxi issued server command: /weather clear
[20:22:18] [Server thread/INFO]: [.The_SodaTaxi: Set the weather to clear]
[20:22:20] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /weather clear
[20:22:20] [Server thread/INFO]: [Mrvmax1000_Yt: Set the weather to clear]
[20:22:32] [Async Chat Thread - #28/INFO]: Criminal Mrvmax1000_Yt: use world edit
[20:22:43] [Async Chat Thread - #28/INFO]: [Not Secure] Criminal .The_SodaTaxi: Its off
[20:22:47] [Async Chat Thread - #28/INFO]: Criminal Mrvmax1000_Yt: why
[20:22:56] [Async Chat Thread - #28/INFO]: [Not Secure] Criminal .The_SodaTaxi: Also IDK HOW 2
[20:23:13] [Server thread/INFO]: .The_SodaTaxi issued server command: //selwand
[20:23:40] [Server thread/INFO]: Mrvmax1000_Yt has made the advancement [Acquire Hardware]
[20:23:44] [Server thread/INFO]: .The_SodaTaxi issued server command: //set bedrock
[20:24:03] [Server thread/INFO]: .The_SodaTaxi issued server command: //set bedrock
[20:24:19] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /setblock ~ ~ ~ minecraft:bedrock
[20:24:19] [Server thread/INFO]: [Mrvmax1000_Yt: Changed the block at -40, 65, 35]
[20:24:29] [Server thread/INFO]: .The_SodaTaxi issued server command: //set bedrock
[20:24:50] [Server thread/INFO]: .The_SodaTaxi issued server command: //set bedrock
[20:24:58] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /give @s minecraft:oak_sign
[20:24:58] [Server thread/INFO]: [Mrvmax1000_Yt: Gave 1 [Oak Sign] to Mrvmax1000_Yt]
[20:25:22] [Async Chat Thread - #30/INFO]: [Not Secure] Criminal .The_SodaTaxi: I coudnt find a school anyway
[20:25:25] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /give @s minecraft:glow_ink_sac
[20:25:25] [Server thread/INFO]: [Mrvmax1000_Yt: Gave 1 [Glow Ink Sac] to Mrvmax1000_Yt]
[20:25:26] [Server thread/INFO]: Mrvmax1000_Yt has made the advancement [Glow and Behold!]
[20:25:31] [Async Chat Thread - #30/INFO]: Criminal Mrvmax1000_Yt: ok
[20:25:36] [Server thread/INFO]: .The_SodaTaxi issued server command: /tp Mrvmax1000_Yt
[20:25:36] [Server thread/INFO]: [.The_SodaTaxi: Teleported .The_SodaTaxi to Mrvmax1000_Yt]
[20:25:36] [Server thread/WARN]: .The_SodaTaxi moved too quickly! -52.917449469456336,-8.775032921255317,-79.44454158181206
[20:25:36] [Server thread/WARN]: .The_SodaTaxi moved too quickly! -52.917449469456336,-8.775032921255317,-79.44454158181206
[20:25:36] [Server thread/WARN]: .The_SodaTaxi moved too quickly! -52.917449469456336,-8.775032921255317,-79.44454158181206
[20:25:36] [Server thread/WARN]: .The_SodaTaxi moved too quickly! -52.917449469456336,-8.775032921255317,-79.44454158181206
[20:25:36] [Server thread/WARN]: .The_SodaTaxi moved too quickly! -52.917449469456336,-8.775032921255317,-79.44454158181206
[20:25:36] [Server thread/WARN]: .The_SodaTaxi moved too quickly! -52.917449469456336,-8.775032921255317,-79.44454158181206
[20:25:36] [Server thread/WARN]: .The_SodaTaxi moved too quickly! -52.917449469456336,-8.775032921255317,-79.44454158181206
[20:25:36] [Server thread/WARN]: .The_SodaTaxi moved too quickly! -52.917449469456336,-8.775032921255317,-79.44454158181206
[20:25:36] [Server thread/WARN]: .The_SodaTaxi moved too quickly! -52.917449469456336,-8.775032921255317,-79.44454158181206
[20:26:17] [Async Chat Thread - #30/INFO]: [Not Secure] Criminal .The_SodaTaxi: BrB
[20:26:35] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /give @p minecraft:diamond_helmet[enchantments={levels:{'protection':255,'thorns':255},show_in_tooltip:true}]
[20:26:35] [Server thread/INFO]: [Mrvmax1000_Yt: Gave 1 [Diamond Helmet] to Mrvmax1000_Yt]
[20:26:42] [Server thread/INFO]: [@: Set Mrvmax1000_Yt's game mode to Adventure Mode]
[20:26:47] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /thru
[20:26:51] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[20:26:51] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[20:27:35] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /give @s minecraft:redstone_lamp
[20:27:35] [Server thread/INFO]: [Mrvmax1000_Yt: Gave 1 [Redstone Lamp] to Mrvmax1000_Yt]
[20:27:49] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /give @s minecraft:lantern
[20:27:49] [Server thread/INFO]: [Mrvmax1000_Yt: Gave 1 [Lantern] to Mrvmax1000_Yt]
[20:27:58] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /give @s minecraft:soul_lantern
[20:27:58] [Server thread/INFO]: [Mrvmax1000_Yt: Gave 1 [Soul Lantern] to Mrvmax1000_Yt]
[20:30:31] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /summon minecraft:wolf
[20:30:31] [Server thread/INFO]: [Mrvmax1000_Yt: Summoned new Wolf]
[20:31:20] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /summon wolf ashen
[20:31:58] [Async Chat Thread - #32/INFO]: [Not Secure] Criminal .The_SodaTaxi: BrB
[20:32:28] [Server thread/INFO]: [@: Set Mrvmax1000_Yt's game mode to Survival Mode]
[20:32:32] [Async Chat Thread - #33/INFO]: Police Mrvmax1000_Yt: yea
[20:33:04] [Server thread/INFO]: Mrvmax1000_Yt lost connection: Timed out
[20:33:04] [Server thread/INFO]: Mrvmax1000_Yt left the game
[20:33:27] [User Authenticator #4/INFO]: UUID of player Mrvmax1000_Yt is c2a775fc-b918-4156-9203-60ff05f4b7b0
[20:33:28] [Server thread/INFO]: Mrvmax1000_Yt joined the game
[20:33:28] [Server thread/INFO]: Mrvmax1000_Yt[/175.220.3.164:38798] logged in with entity id 508 at ([flatroom]-28.632216708390978, -60.0, -51.60232016438663)
[20:34:22] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[20:34:22] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[20:34:41] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamerule mobGriefing false
[20:34:41] [Server thread/INFO]: [Mrvmax1000_Yt: Gamerule mobGriefing is now set to: false]
[20:35:36] [Async Chat Thread - #34/INFO]: Police Mrvmax1000_Yt: how do u summon a npc
[20:35:46] [Server thread/INFO]: Expected whitespace to end one argument, but found trailing data
...r": "red"}{"text": "Server is reloading, rejoin if kicked."}<--[HERE]
[20:36:02] [Server thread/INFO]: [Not Secure] [Server] YOU CAN'T CITIZENS IS BROKEN
[20:36:08] [Async Chat Thread - #34/INFO]: Police Mrvmax1000_Yt: oh
[20:36:23] [Async Chat Thread - #35/INFO]: Police Mrvmax1000_Yt: can u summon a villager with no ai in the seat?
[20:36:38] [Server thread/INFO]: [@: Set Mrvmax1000_Yt's game mode to Survival Mode]
[20:36:40] [Async Chat Thread - #35/INFO]: [Not Secure] Criminal .The_SodaTaxi: idk how
[20:36:50] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[20:36:50] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[20:36:53] [Async Chat Thread - #34/INFO]: Police Mrvmax1000_Yt: lemme see
[20:37:34] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /summon villager ~ ~ ~ {NoAI:1}
[20:37:34] [Server thread/INFO]: [Mrvmax1000_Yt: Summoned new Villager]
[20:37:41] [Server thread/INFO]: Villager Villager['Villager'/520, uuid='b019bb03-5080-4c1c-864e-f649e5e941e0', l='ServerLevel[flatroom]', x=-28.61, y=-61.00, z=-52.30, cpos=[-2, -4], tl=139, v=true] died, message: 'Villager was slain by Mrvmax1000_Yt'
[20:37:46] [Server thread/INFO]: .The_SodaTaxi issued server command: /reload
[20:37:46] [Server thread/INFO]: .The_SodaTaxi: Are you sure you wish to reload your server? Doing so may cause bugs and memory leaks. It is recommended to restart instead of using /reload. To confirm, please type /reload confirm
[20:37:50] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /summon villager ~ ~ ~ {NoAI:1}
[20:37:50] [Server thread/INFO]: [Mrvmax1000_Yt: Summoned new Villager]
[20:37:54] [Server thread/INFO]: .The_SodaTaxi issued server command: /reload confirm
[20:37:54] [Server thread/INFO]: .The_SodaTaxi: Please note that this command is not supported and may cause issues when using some plugins.
[20:37:54] [Server thread/INFO]: .The_SodaTaxi: If you encounter any issues please use the /stop command to restart your server.
[20:37:54] [Server thread/INFO]: Server Ping Player Sample Count: 12
[20:37:54] [Server thread/INFO]: Using 4 threads for Netty based IO
[20:37:55] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v7.3.9+6959-7adf70b
[20:37:55] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[20:37:55] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.14
[20:37:55] [Server thread/INFO]: [LPC] Disabling LPC v3.6.0
[20:37:55] [Server thread/INFO]: [Skript] Disabling Skript v2.9.5
[20:37:55] [Server thread/INFO]: [MinehutPlugin] Disabling MinehutPlugin v0.0.27-SNAPSHOT
[20:37:55] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[20:37:55] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.150
[20:37:55] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[20:37:55] [Server thread/INFO]: [LuckPerms] Closing storage...
[20:37:55] [Server thread/INFO]: [LuckPerms] Goodbye!
[20:37:55] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v5.2.0
[20:37:55] [Server thread/INFO]: [ViaVersion] ViaVersion is disabling. If this is a reload and you experience issues, please reboot instead.
[20:37:55] [Server thread/INFO]: [ViaVersion] ViaVersion has been disabled; uninjected the platform and shut down the scheduler.
[20:37:56] [Server thread/INFO]: Loaded 1290 recipes
[20:37:56] [Server thread/INFO]: Loaded 1399 advancements
[20:37:57] [Server thread/INFO]: [PluginInitializerManager] Initializing plugins...
[20:37:57] [Paper Async Command Builder Thread Pool - 19/ERROR]: Caught previously unhandled exception :
[20:37:57] [Paper Async Command Builder Thread Pool - 19/ERROR]: Paper Async Command Builder Thread Pool - 19
java.util.ConcurrentModificationException: null
    at java.base/java.util.LinkedHashMap$LinkedHashIterator.nextNode(LinkedHashMap.java:1023) ~[?:?]
    at java.base/java.util.LinkedHashMap$LinkedValueIterator.next(LinkedHashMap.java:1052) ~[?:?]
    at net.minecraft.commands.Commands.fillUsableCommands(Commands.java:531) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.sendAsync(Commands.java:496) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.lambda$sendCommands$6(Commands.java:475) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:37:57] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/SkinsRestorer.jar'...
[20:37:57] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/citizensapi-2.0.37-SNAPSHOT-sources.jar'...
[20:37:57] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/Citizens-2.0.37-b3649.jar'...
[20:37:58] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/citizensapi-2.0.37-SNAPSHOT-sources.jar' in 777ms.
[20:38:01] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Citizens-2.0.37-b3649.jar' in 4314ms.
[20:38:02] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/SkinsRestorer.jar' in 4552ms.
[20:38:02] [Server thread/ERROR]: [DirectoryProviderSource] Error loading plugin: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/citizensapi-2.0.37-SNAPSHOT-sources.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
java.lang.RuntimeException: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/citizensapi-2.0.37-SNAPSHOT-sources.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:86) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:52) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:17) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:15) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.PluginInitializerManager.reload(PluginInitializerManager.java:154) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.craftbukkit.CraftServer.reload(CraftServer.java:1131) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.Bukkit.reload(Bukkit.java:1038) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.defaults.ReloadCommand.execute(ReloadCommand.java:59) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:91) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:443) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:350) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:332) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performSignedChatCommand(ServerGamePacketListenerImpl.java:2279) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleSignedChatCommand$12(ServerGamePacketListenerImpl.java:2233) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1535) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1512) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1505) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1464) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1471) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1316) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/citizensapi-2.0.37-SNAPSHOT-sources.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    ... 36 more
[20:38:02] [Server thread/ERROR]: [DirectoryProviderSource] Error loading plugin: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/citizensapi-2.0.37-SNAPSHOT.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
java.lang.RuntimeException: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/citizensapi-2.0.37-SNAPSHOT.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:86) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:52) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:17) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:15) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.PluginInitializerManager.reload(PluginInitializerManager.java:154) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.craftbukkit.CraftServer.reload(CraftServer.java:1131) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.Bukkit.reload(Bukkit.java:1038) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.defaults.ReloadCommand.execute(ReloadCommand.java:59) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:91) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:443) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:350) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:332) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performSignedChatCommand(ServerGamePacketListenerImpl.java:2279) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleSignedChatCommand$12(ServerGamePacketListenerImpl.java:2233) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1535) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1512) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1505) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1464) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1471) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1316) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/citizensapi-2.0.37-SNAPSHOT.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    ... 36 more
[20:38:02] [Server thread/INFO]: [PluginInitializerManager] Initialized 10 plugins
[20:38:02] [Server thread/INFO]: [PluginInitializerManager] Bukkit plugins (10):
 - Citizens (2.0.37-SNAPSHOT (build 3649)), LPC (3.6.0), LuckPerms (5.4.150), MinehutPlugin (0.0.27-SNAPSHOT), Multiverse-Core (4.3.14), SkinsRestorer (15.5.0), Skript (2.9.5), Vault (1.7.3-b131), ViaVersion (5.2.0), WorldEdit (7.3.9+6959-7adf70b)
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[20:38:02] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[20:38:02] [Server thread/WARN]: [MinehutPlugin] Found no matching version for version 1.21.1-R0.1-SNAPSHOT, using most modern.
[20:38:02] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.0
[20:38:02] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.0 is now loaded. Registering protocol transformers and injecting...
[20:38:02] [Server thread/ERROR]: [ViaVersion] ViaVersion is already loaded, this should work fine. If you get any console errors, try rebooting.
[20:38:03] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[20:38:03] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[20:38:04] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.150
[20:38:04] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[20:38:04] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3649)
[20:38:04] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.5.0
[20:38:04] [Server thread/INFO]: [MinehutPlugin] Loading server plugin MinehutPlugin v0.0.27-SNAPSHOT
[20:38:04] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.9.5
[20:38:04] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[20:38:04] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.14
[20:38:04] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.9+6959-7adf70b
[20:38:05] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@3157d51d]
[20:38:05] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[20:38:05] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.150
[20:38:06] [Server thread/INFO]:         __    
[20:38:06] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.150
[20:38:06] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[20:38:06] [Server thread/INFO]: 
[20:38:06] [Server thread/INFO]: [LuckPerms] Loading configuration...
[20:38:06] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[20:38:07] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[20:38:07] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[20:38:07] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1666ms)
[20:38:07] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[20:38:07] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[20:38:07] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[20:38:07] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[20:38:07] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.5.0
[20:38:08] [Async Chat Thread - #36/INFO]: [Not Secure] <.The_SodaTaxi> Lag Soon
[20:38:08] [Server thread/WARN]: [SkinsRestorer] You must agree to the rules at 'commands.perSkinPermissionsConsent' in the config to use per skin permissions.
[20:38:08] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
[20:38:08] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
[20:38:08] [Server thread/INFO]: [SkinsRestorer] You have to do all configuration at config file
[20:38:08] [Server thread/INFO]: [SkinsRestorer] inside your BungeeCord/Velocity server.
[20:38:08] [Server thread/INFO]: [SkinsRestorer] (<proxy>/plugins/SkinsRestorer/)
[20:38:08] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
[20:38:08] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.1.
[20:38:08] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.9+6959-7adf70b
[20:38:08] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[20:38:08] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[20:38:08] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     +==================+
[20:38:08] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[20:38:08] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |------------------|
[20:38:08] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |    Proxy Mode    |
[20:38:08] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     +==================+
[20:38:08] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[20:38:08] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     Version: 15.5.0
[20:38:08] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     Commit: ad418e4
[20:38:08] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     This is the latest version!
[20:38:08] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[20:38:08] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
[20:38:08] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
[20:38:09] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[20:38:09] [Server thread/WARN]: [WorldEdit] Server reload detected. This may cause various issues with WorldEdit and dependent plugins.
[20:38:09] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21.PaperweightAdapter as the Bukkit adapter
[20:38:11] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.0
[20:38:11] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[20:38:11] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3649)
[20:38:11] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[20:38:11] [Server thread/ERROR]: [Citizens] Could not fetch NMS field cj: [[static final field has no write access: net.minecraft.world.entity.animal.armadillo.Armadillo.SCARE_DISTANCE_HORIZONTAL/double/putStatic, from class net.citizensnpcs.util.NMS (unnamed module @33457fdd).
[20:38:11] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.37-SNAPSHOT (build 3649) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R3/boss/CraftBossBar
    at Citizens-2.0.37-b3649.jar/net.citizensnpcs.nms.v1_21_R3.util.NMSImpl.<clinit>(NMSImpl.java:2719) ~[Citizens-2.0.37-b3649.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at Citizens-2.0.37-b3649.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:171) ~[Citizens-2.0.37-b3649.jar:?]
    at Citizens-2.0.37-b3649.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:176) ~[Citizens-2.0.37-b3649.jar:?]
    at Citizens-2.0.37-b3649.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:322) ~[Citizens-2.0.37-b3649.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.craftbukkit.CraftServer.reload(CraftServer.java:1134) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.Bukkit.reload(Bukkit.java:1038) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.defaults.ReloadCommand.execute(ReloadCommand.java:59) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:91) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:443) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:350) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:332) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performSignedChatCommand(ServerGamePacketListenerImpl.java:2279) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleSignedChatCommand$12(ServerGamePacketListenerImpl.java:2233) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1535) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1512) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1505) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1464) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1471) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1316) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R3.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 45 more
[20:38:11] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.37-SNAPSHOT (build 3649)
[20:38:11] [Server thread/INFO]: [MinehutPlugin] Enabling MinehutPlugin v0.0.27-SNAPSHOT
[20:38:12] [Server thread/INFO]: [Skript] Enabling Skript v2.9.5
[20:38:13] [Thread-26/INFO]: [Skript] You're currently running the latest stable version of Skript.
[20:38:35] [Server thread/INFO]: [Skript] Loaded 233074 aliases in 21931ms
[20:38:36] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[20:38:36] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[20:38:36] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.14
[20:38:36] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.14" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[20:38:36] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[20:38:37] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[20:38:37] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[20:38:37] [Server thread/INFO]: [Multiverse-Core] Version 4.3.14 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[20:38:38] [Server thread/INFO]: .The_SodaTaxi: Reload complete.
[20:38:38] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 43289ms or 865 ticks behind
[20:38:38] [Server thread/INFO]: Timings Reset
[20:38:38] [Craft Scheduler Thread - 27 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[20:38:38] [Server thread/INFO]: [Skript] Loading variables...
[20:38:38] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[20:38:38] [Paper Async Command Builder Thread Pool - 20/ERROR]: Caught previously unhandled exception :
[20:38:38] [Paper Async Command Builder Thread Pool - 20/ERROR]: Paper Async Command Builder Thread Pool - 20
java.util.ConcurrentModificationException: null
    at java.base/java.util.LinkedHashMap$LinkedHashIterator.nextNode(LinkedHashMap.java:1023) ~[?:?]
    at java.base/java.util.LinkedHashMap$LinkedValueIterator.next(LinkedHashMap.java:1052) ~[?:?]
    at net.minecraft.commands.Commands.fillUsableCommands(Commands.java:531) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.sendAsync(Commands.java:496) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.lambda$sendCommands$6(Commands.java:475) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:38:38] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - 1.21.1-132-b48403b (MC: 1.21.1) ---
[20:38:38] [Paper Watchdog Thread/ERROR]: The server has not responded for 26 seconds! Creating thread dump
[20:38:38] [Paper Watchdog Thread/ERROR]: ------------------------------
[20:38:38] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[20:38:38] [Paper Watchdog Thread/ERROR]: ------------------------------
[20:38:38] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[20:38:38] [Paper Watchdog Thread/ERROR]:     PID: 38 | Suspended: false | Native: false | State: RUNNABLE
[20:38:38] [Paper Watchdog Thread/ERROR]:     Stack:
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.classes.data.SkriptClasses$5.parse(SkriptClasses.java:267)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.classes.data.SkriptClasses$5.parse(SkriptClasses.java:263)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.registrations.Classes.parseSimple(Classes.java:481)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:588)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:781)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.TypePatternElement.match(TypePatternElement.java:162)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:65)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.OptionalPatternElement.match(OptionalPatternElement.java:46)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:65)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:65)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.ChoicePatternElement.match(ChoicePatternElement.java:63)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.GroupPatternElement.match(GroupPatternElement.java:47)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:65)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.TypePatternElement.match(TypePatternElement.java:157)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:65)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.PatternElement.matchNext(PatternElement.java:54)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.LiteralPatternElement.match(LiteralPatternElement.java:65)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.ChoicePatternElement.match(ChoicePatternElement.java:63)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.GroupPatternElement.match(GroupPatternElement.java:47)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.patterns.SkriptPattern.match(SkriptPattern.java:63)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1331)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:232)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:179)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.Condition.parse(Condition.java:76)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:209)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.Section.init(Section.java:67)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:259)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:179)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:179)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.Section$$Lambda/0x00007f21a2688c98.get(Unknown Source)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:212)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.Section.parse(Section.java:178)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:987)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.Section.loadCode(Section.java:93)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.Section.loadOptionalCode(Section.java:167)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.sections.SecLoop.init(SecLoop.java:124)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.Section.init(Section.java:67)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:259)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:179)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:179)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.Section$$Lambda/0x00007f21a2688c98.get(Unknown Source)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:212)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.lang.Section.parse(Section.java:178)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:987)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.command.ScriptCommand.<init>(ScriptCommand.java:219)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.structures.StructCommand.load(StructCommand.java:306)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$8(ScriptLoader.java:570)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.ScriptLoader$$Lambda/0x00007f21a26851b0.test(Unknown Source)
[20:38:38] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.ArrayList.removeIf(ArrayList.java:1755)
[20:38:38] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.ArrayList.removeIf(ArrayList.java:1743)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$10(ScriptLoader.java:561)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.ScriptLoader$$Lambda/0x00007f21a2684458.apply(Unknown Source)
[20:38:38] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.CompletableFuture.uniApplyNow(CompletableFuture.java:684)
[20:38:38] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.CompletableFuture.uniApplyStage(CompletableFuture.java:662)
[20:38:38] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.CompletableFuture.thenApply(CompletableFuture.java:2200)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:513)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:459)
[20:38:38] [Paper Watchdog Thread/ERROR]:         Skript-2.9.5.jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[20:38:38] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[20:38:38] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[20:38:38] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1724)
[20:38:38] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[20:38:38] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1596)
[20:38:38] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1302)
[20:38:38] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[20:38:38] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f21a0c4ce58.run(Unknown Source)
[20:38:38] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[20:38:38] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[20:38:38] [Paper Watchdog Thread/ERROR]: ------------------------------
[20:38:38] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[20:38:38] [Paper Watchdog Thread/ERROR]: ------------------------------
[20:38:38] [Server thread/INFO]: [Skript] Line 4: (Test.sk)
[20:38:38] [Server thread/INFO]:     Can't compare a location with 'within cuboid from {-49, -62, -67} to {49, -47, 102}'
[20:38:38] [Server thread/INFO]:     Line: if location of loop-entity is within cuboid from {-49, -62, -67} to {49, -47, 102}:
[20:38:38] [Server thread/INFO]:  
[20:38:38] [Paper Async Command Builder Thread Pool - 21/ERROR]: Caught previously unhandled exception :
[20:38:38] [Paper Async Command Builder Thread Pool - 21/ERROR]: Paper Async Command Builder Thread Pool - 21
java.util.ConcurrentModificationException: null
    at java.base/java.util.LinkedHashMap$LinkedHashIterator.nextNode(LinkedHashMap.java:1023) ~[?:?]
    at java.base/java.util.LinkedHashMap$LinkedValueIterator.next(LinkedHashMap.java:1052) ~[?:?]
    at net.minecraft.commands.Commands.fillUsableCommands(Commands.java:531) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.sendAsync(Commands.java:496) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.lambda$sendCommands$6(Commands.java:475) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:38:38] [Server thread/INFO]: [Skript] Loaded 2 scripts with a total of 2 structures in 0.46 seconds
[20:38:38] [Server thread/INFO]: [Skript] Finished loading.
[20:38:39] [Server thread/INFO]: Mrvmax1000_Yt lost connection: Disconnected
[20:38:39] [Server thread/INFO]: Mrvmax1000_Yt left the game
[20:38:39] [Craft Scheduler Thread - 26 - Vault/INFO]: [Vault] Checking for Updates ... 
[20:38:39] [Craft Scheduler Thread - 26 - Vault/INFO]: [Vault] No new version available
[20:38:39] [Server thread/INFO]: [Not Secure] [Server] R we good
[20:38:43] [User Authenticator #5/INFO]: UUID of player Mrvmax1000_Yt is c2a775fc-b918-4156-9203-60ff05f4b7b0
[20:38:43] [Async Chat Thread - #37/INFO]: [Not Secure] Criminal .The_SodaTaxi: Okay
[20:38:43] [Server thread/INFO]: Mrvmax1000_Yt joined the game
[20:38:43] [Server thread/INFO]: Mrvmax1000_Yt[/194.42.101.75:56454] logged in with entity id 523 at ([flatroom]-28.328624313719267, -61.0, -49.501044385810644)
[20:38:49] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /gamemode creative
[20:38:49] [Server thread/INFO]: [Mrvmax1000_Yt: Set own game mode to Creative Mode]
[20:38:56] [Server thread/INFO]: .The_SodaTaxi issued server command: /gamemode creative @a
[20:38:56] [Server thread/INFO]: [.The_SodaTaxi: Set own game mode to Creative Mode]
[20:39:02] [Server thread/INFO]: .The_SodaTaxi issued server command: /npc create
[20:39:02] [Server thread/ERROR]: Command exception: /npc create
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.37-SNAPSHOT (build 3649) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:91) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:443) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:350) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.commands.Commands.performCommand(Commands.java:332) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performSignedChatCommand(ServerGamePacketListenerImpl.java:2279) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleSignedChatCommand$12(ServerGamePacketListenerImpl.java:2233) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1535) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1512) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1505) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1464) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1471) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1316) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:39:23] [Async Chat Thread - #36/INFO]: [Not Secure] Criminal .The_SodaTaxi: idk why citizens dont work
[20:39:38] [Server thread/INFO]: .The_SodaTaxi issued server command: /pl
[20:39:59] [Server thread/INFO]: .The_SodaTaxi issued server command: /restore
[20:40:31] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /give @p minecraft:netherite_chestplate[enchantments={levels:{'protection':255,'thorns':255},show_in_tooltip:true}]
[20:40:31] [Server thread/INFO]: [Mrvmax1000_Yt: Gave 1 [Netherite Chestplate] to Mrvmax1000_Yt]
[20:41:20] [Server thread/INFO]: Villager Villager['Villager'/522, uuid='5b7eca41-7eeb-4ce9-b216-997599b5f45a', l='ServerLevel[flatroom]', x=-28.53, y=-61.00, z=-52.49, cpos=[-2, -4], tl=3329, v=true] died, message: 'Villager was slain by Mrvmax1000_Yt'
[20:41:25] [Async Chat Thread - #38/INFO]: [Not Secure] Criminal .The_SodaTaxi: Ima contact support
[20:41:30] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /summon villager ~ ~ ~ {NoAI:1, Health:999999}
[20:41:30] [Server thread/INFO]: [Mrvmax1000_Yt: Summoned new Villager]
[20:41:36] [Server thread/INFO]: Villager Villager['Villager'/541, uuid='32d53017-fdec-44bd-a793-bc135339e5c2', l='ServerLevel[flatroom]', x=-28.88, y=-61.00, z=-52.30, cpos=[-2, -4], tl=135, v=true] died, message: 'Villager was slain by Mrvmax1000_Yt'
[20:41:52] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /summon villager ~ ~ ~ {NoAI:1, Health:999999999999999999}
[20:41:52] [Server thread/INFO]: [Mrvmax1000_Yt: Summoned new Villager]
[20:41:55] [Server thread/INFO]: Villager Villager['Villager'/542, uuid='7893ee73-0484-4d26-a4e3-5015c09facee', l='ServerLevel[flatroom]', x=-28.51, y=-61.00, z=-52.43, cpos=[-2, -4], tl=71, v=true] died, message: 'Villager was slain by Mrvmax1000_Yt'
[20:42:23] [Server thread/INFO]: Mrvmax1000_Yt issued server command: /summon villager ~ ~ ~ {NoAI:1, Health:99999999999999999999999999999}
[20:42:23] [Server thread/INFO]: [Mrvmax1000_Yt: Summoned new Villager]
[20:42:37] [Server thread/INFO]: Villager Villager['Villager'/543, uuid='f75e2423-8dca-4e7f-9b22-3dc3126364db', l='ServerLevel[flatroom]', x=-28.45, y=-61.00, z=-52.31, cpos=[-2, -4], tl=272, v=true] died, message: 'Villager was slain by Mrvmax1000_Yt'