Paste #118921: Unnamed Server Log Paste

Date: 2023/12/25 10:13:41 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
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304


[19:07:57] [ServerMain/ERROR]: [DirectoryProviderSource] Error loading plugin: Directory 'plugins/citizensapi-2.0.33-SNAPSHOT (2).jar' failed to load!
java.lang.RuntimeException: Directory 'plugins/citizensapi-2.0.33-SNAPSHOT (2).jar' failed to load!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:59) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.lambda$registerProviders$1(DirectoryProviderSource.java:34) ~[paper-1.20.2.jar:git-Paper-245]
    at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183) ~[?:?]
    at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?]
    at java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1845) ~[?:?]
    at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]
    at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]
    at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:32) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:14) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:14) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:100) ~[paper-1.20.2.jar:git-Paper-245]
    at net.minecraft.server.Main.main(Main.java:134) ~[paper-1.20.2.jar:git-Paper-245]
    at org.bukkit.craftbukkit.Main.main(Main.java:324) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: org.bukkit.plugin.InvalidPluginException: java.lang.IllegalArgumentException: plugins/citizensapi-2.0.33-SNAPSHOT (2).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.checkUpdate(FileProviderSource.java:95) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:49) ~[paper-1.20.2.jar:git-Paper-245]
    ... 20 more
Caused by: java.lang.IllegalArgumentException: plugins/citizensapi-2.0.33-SNAPSHOT (2).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.getPluginName(FileProviderSource.java:104) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.checkUpdate(FileProviderSource.java:76) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:49) ~[paper-1.20.2.jar:git-Paper-245]
    ... 20 more
[19:07:57] [ServerMain/ERROR]: [DirectoryProviderSource] Error loading plugin: Directory 'plugins/citizensapi-2.0.33-SNAPSHOT (3).jar' failed to load!
java.lang.RuntimeException: Directory 'plugins/citizensapi-2.0.33-SNAPSHOT (3).jar' failed to load!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:59) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.lambda$registerProviders$1(DirectoryProviderSource.java:34) ~[paper-1.20.2.jar:git-Paper-245]
    at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183) ~[?:?]
    at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?]
    at java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1845) ~[?:?]
    at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]
    at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]
    at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:32) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:14) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:14) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:100) ~[paper-1.20.2.jar:git-Paper-245]
    at net.minecraft.server.Main.main(Main.java:134) ~[paper-1.20.2.jar:git-Paper-245]
    at org.bukkit.craftbukkit.Main.main(Main.java:324) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: org.bukkit.plugin.InvalidPluginException: java.lang.IllegalArgumentException: plugins/citizensapi-2.0.33-SNAPSHOT (3).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.checkUpdate(FileProviderSource.java:95) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:49) ~[paper-1.20.2.jar:git-Paper-245]
    ... 20 more
Caused by: java.lang.IllegalArgumentException: plugins/citizensapi-2.0.33-SNAPSHOT (3).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.getPluginName(FileProviderSource.java:104) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.checkUpdate(FileProviderSource.java:76) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:49) ~[paper-1.20.2.jar:git-Paper-245]
    ... 20 more
[19:08:01] [ServerMain/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[19:08:04] [ServerMain/INFO]: Loaded 7 recipes
[19:08:04] [Server thread/INFO]: Starting minecraft server version 1.20.2
[19:08:04] [Server thread/INFO]: Loading properties
[19:08:04] [Server thread/INFO]: This server is running Paper version git-Paper-245 (MC: 1.20.2) (Implementing API version 1.20.2-R0.1-SNAPSHOT) (Git: 90fe0d5)
[19:08:05] [Server thread/INFO]: Server Ping Player Sample Count: 12
[19:08:05] [Server thread/INFO]: Using 4 threads for Netty based IO
[19:08:05] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[19:08:05] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 12 worker threads, and gen parallelism of 12 threads
[19:08:05] [Server thread/INFO]: Default game type: SURVIVAL
[19:08:05] [Server thread/INFO]: Generating keypair
[19:08:05] [Server thread/INFO]: Starting Minecraft server on 45.132.91.221:25565
[19:08:05] [Server thread/INFO]: Using epoll channel type
[19:08:05] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[19:08:05] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[19:08:06] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'ViaVersion' for files 'plugins/ViaVersion-4.9.2.jar' and 'plugins/ViaVersion-4.9.2 (1).jar' in 'plugins'
[19:08:06] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'ProtocolLib' for files 'plugins/ProtocolLib (4).jar' and 'plugins/ProtocolLib (5).jar' in 'plugins'
[19:08:06] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'ProtocolLib' for files 'plugins/ProtocolLib (6).jar' and 'plugins/ProtocolLib (4).jar' in 'plugins'
[19:08:06] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'ChestShop' for files 'plugins/ChestShop (4).jar' and 'plugins/ChestShop-3.5.9 (5).jar' in 'plugins'
[19:08:06] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'BuycraftX' for files 'plugins/BuycraftX (1).jar' and 'plugins/BuycraftX (2).jar' in 'plugins'
[19:08:06] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load 'plugins/Clans-Spigot-Part-1.0.22.jar' in 'plugins'
org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [FriendsAPIForPartyAndFriends]. Please download and install these plugins to run 'Clans-Spigot-Part'.
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:82) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.20.2.jar:git-Paper-245]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.2.jar:git-Paper-245]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.loadPlugins(CraftServer.java:512) ~[paper-1.20.2.jar:git-Paper-245]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.20.2.jar:git-Paper-245]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-245]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-245]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[19:08:06] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[19:08:06] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[19:08:06] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[19:08:06] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[19:08:06] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[19:08:10] [Server thread/WARN]: Legacy plugin JuByteLibraries v1.2.0-SNAPSHOT does not specify an api-version.
[19:08:10] [Server thread/WARN]: Legacy plugin BanSystem v2.8.1 does not specify an api-version.
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loading 6 libraries... please wait
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/org/javacord/javacord/3.8.0/javacord-3.8.0.pom
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/org/javacord/javacord-api/3.8.0/javacord-api-3.8.0.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/org/javacord/javacord-core/3.8.0/javacord-core-3.8.0.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/com/squareup/okhttp3/okhttp/4.9.3/okhttp-4.9.3.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/com/squareup/okio/okio/2.8.0/okio-2.8.0.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.4.0/kotlin-stdlib-common-1.4.0.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.4.10/kotlin-stdlib-1.4.10.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/com/squareup/okhttp3/logging-interceptor/4.9.3/logging-interceptor-4.9.3.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.4.10/kotlin-stdlib-jdk8-1.4.10.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.4.10/kotlin-stdlib-jdk7-1.4.10.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/com/neovisionaries/nv-websocket-client/2.14/nv-websocket-client-2.14.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/com/codahale/xsalsa20poly1305/0.11.0/xsalsa20poly1305-0.11.0.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/org/bouncycastle/bcprov-jdk15on/1.60/bcprov-jdk15on-1.60.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/io/vavr/vavr/0.10.4/vavr-0.10.4.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/io/vavr/vavr-match/0.10.4/vavr-match-0.10.4.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.jar
[19:08:10] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordSynthesis] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.jar
[19:08:10] [Server thread/WARN]: Legacy plugin Perks v2.6.2 does not specify an api-version.
[19:08:11] [Server thread/INFO]: [RandomTP] Your server is using Bukkit version: 1.20.2-R0.1-SNAPSHOT
[19:08:11] [Server thread/INFO]: [SpigotLibraryLoader] [Vouchers] Loading 1 libraries... please wait
[19:08:11] [Server thread/INFO]: [SpigotLibraryLoader] [Vouchers] Loaded library /home/minecraft/multicraft/servers/server279791/libraries/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar
[19:08:11] [Server thread/WARN]: Legacy plugin GiveAll v1.0.3 does not specify an api-version.
[19:08:11] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.9.2
[19:08:11] [Server thread/INFO]: [ViaVersion] ViaVersion 4.9.2 is now loaded. Registering protocol transformers and injecting...
[19:08:12] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[19:08:12] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[19:08:12] [Server thread/INFO]: [ViaBackwards] Loading translations...
[19:08:12] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[19:08:13] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
[19:08:13] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.8.4-SNAPSHOT-625;d4b68b3
[19:08:15] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@4bc81e77]
[19:08:15] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.102
[19:08:15] [Server thread/INFO]: [PlotSquared] Loading server plugin PlotSquared v7.2.1-Premium
[19:08:15] [Server thread/INFO]: [ServerSystem] Loading server plugin ServerSystem v1.8.3
[19:08:15] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[19:08:15] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.0-SNAPSHOT-678
[19:08:17] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[19:08:17] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[19:08:17] [Server thread/INFO]: [JuByteLibraries] Loading server plugin JuByteLibraries v1.2.0-SNAPSHOT
[19:08:17] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.9.0
[19:08:17] [Server thread/INFO]: [PartyAndFriends] Loading server plugin PartyAndFriends v1.0.243-E-For-Spigot
[19:08:17] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.2-SNAPSHOT (b85-71acc6c)
[19:08:17] [Server thread/INFO]: [floodgate] Took 615ms to boot Floodgate
[19:08:17] [Server thread/INFO]: [ExcellentEnchants] Loading server plugin ExcellentEnchants v3.6.4
[19:08:18] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3265)
[19:08:18] [Server thread/INFO]: [CityBuildV2] Loading server plugin CityBuildV2 v2.16.1-RELEASE
[19:08:18] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[19:08:18] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.5
[19:08:18] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[19:08:18] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v3.0.5
[19:08:18] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.6.2
[19:08:18] [Server thread/INFO]: [CancelFriendRequest] Loading server plugin CancelFriendRequest v1.0.6-RELEASE
[19:08:18] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[19:08:18] [Server thread/INFO]: [lightEconomy] Loading server plugin lightEconomy v5.3.1
[19:08:18] [Server thread/INFO]: [lightEconomy] Vault successfully hooked with highest priority into lightEconomy
[19:08:18] [Server thread/INFO]: [lightEconomy] Successfully loaded lightEconomy
[19:08:18] [Server thread/INFO]: [IA-For-PAF] Loading server plugin IA-For-PAF v1.0.6-RELEASE
[19:08:18] [Server thread/INFO]: [XLTournaments] Loading server plugin XLTournaments v3.15.5
[19:08:18] [Server thread/INFO]: [UltraCosmetics] Loading server plugin UltraCosmetics v3.4.2
[19:08:18] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.57
[19:08:18] [Server thread/INFO]: [Clans] Loading server plugin Clans v0.9.9.38
[19:08:18] [Server thread/INFO]: [BanSystem] Loading server plugin BanSystem v2.8.1
[19:08:18] [Server thread/INFO]: [ChatItem] Loading server plugin ChatItem v2.4.9
[19:08:18] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.2.0-SNAPSHOT
[19:08:18] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[19:08:18] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[19:08:18] [Server thread/INFO]: [Tweakin] Loading server plugin Tweakin v6.0.3
[19:08:18] [Server thread/INFO]: [Tweakin] Found WorldGuard, initializing flags support
[19:08:18] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-better-sign-edit registered successfully
[19:08:18] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-shear-item-frame registered successfully
[19:08:18] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-snowball-knockback registered successfully
[19:08:18] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-reach-around registered successfully
[19:08:18] [Server thread/INFO]: [DiscordSynthesis] Loading server plugin DiscordSynthesis v6.8
[19:08:18] [Server thread/INFO]: [Elevators] Loading server plugin Elevators v4.0.16
[19:08:18] [Server thread/INFO]: [Jackpot] Loading server plugin Jackpot v1.0.0
[19:08:18] [Server thread/INFO]: [CitizensServerSelector] Loading server plugin CitizensServerSelector v0.3.3
[19:08:18] [Server thread/INFO]: [AdvancedItems] Loading server plugin AdvancedItems v1.0.0
[19:08:18] [Server thread/INFO]: [Booster] Loading server plugin Booster v9.0
[19:08:18] [Server thread/INFO]: [Lazino-Sign] Loading server plugin Lazino-Sign v1.0
[19:08:18] [Server thread/INFO]: [BPS-Free] Loading server plugin BPS-Free v4.0.19
[19:08:18] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.5.2
[19:08:18] [Server thread/INFO]: [Lazino-Werbung] Loading server plugin Lazino-Werbung v1.0
[19:08:18] [Server thread/INFO]: [HelpCommand] Loading server plugin HelpCommand v2.5.9-PublicRelease
[19:08:18] [Server thread/INFO]: [PicoJobs] Loading server plugin PicoJobs v1.0-beta-7a
[19:08:18] [Server thread/INFO]: [PicoJobs] Loading dependencies, this might take some minutes when ran for the first time...
[19:08:18] [Server thread/INFO]: [PicoJobs] All dependencies were loaded sucessfully.
[19:08:18] [Server thread/INFO]: [Perks] Loading server plugin Perks v2.6.2
[19:08:18] [Server thread/INFO]: [ColoredPrefix] Loading server plugin ColoredPrefix v2.8.3-RELEASE
[19:08:18] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[19:08:18] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[19:08:18] [Server thread/INFO]: [PinataParty] Loading server plugin PinataParty v2.63.7
[19:08:18] [Server thread/INFO]: [Lazino-AntiAch] Loading server plugin Lazino-AntiAch v1.0
[19:08:18] [Server thread/INFO]: [EntityClearer] Loading server plugin EntityClearer v2.0.0
[19:08:18] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading server plugin EconomyShopGUI-Premium v5.3.3
[19:08:18] [Server thread/INFO]: [Crash] Loading server plugin Crash v1.0.1
[19:08:18] [Server thread/INFO]: [SternalBoard] Loading server plugin SternalBoard v2.2.8
[19:08:18] [Server thread/INFO]: [FarmingUpgrade] Loading server plugin FarmingUpgrade v1.6.0
[19:08:18] [Server thread/INFO]: [RandomTP] Loading server plugin RandomTP v2023.6
[19:08:18] [Server thread/INFO]: [BuycraftX] Loading server plugin BuycraftX v12.0.8
[19:08:18] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.0.9
[19:08:18] [Server thread/INFO]: [DeluxeCoinflip] Loading server plugin DeluxeCoinflip v2.7.0
[19:08:18] [Server thread/INFO]: [BetterPlaytime] Loading server plugin BetterPlaytime v1.1.2
[19:08:18] [Server thread/INFO]: [ChestShop] Loading server plugin ChestShop v3.12.2 (build 353)
[19:08:18] [Server thread/INFO]: [ChestShop] WorldGuard version 7.0.9+5934e49 loaded.
[19:08:18] [Server thread/INFO]: [CustomJoinMessages] Loading server plugin CustomJoinMessages v17.3.1
[19:08:18] [Server thread/INFO]: [DailyRewards] Loading server plugin DailyRewards v1.8.7
[19:08:18] [Server thread/INFO]: [AxRankMenu] Loading server plugin AxRankMenu v1.0.0
[19:08:18] [Server thread/INFO]: [AdvancedCrates] Loading server plugin AdvancedCrates v3.9.28
[19:08:18] [Server thread/INFO]: [DeathCoordinates] Loading server plugin DeathCoordinates v1.12.1
[19:08:18] [Server thread/INFO]: [Pl-Hide-Pro] Loading server plugin Pl-Hide-Pro v2.7.5.1
[19:08:18] [Server thread/INFO]: [Vouchers] Loading server plugin Vouchers v3.19.0
[19:08:18] [Server thread/INFO]: [StackMob] Loading server plugin StackMob v5.8.8
[19:08:18] [Server thread/INFO]: [StackMob] Registered WorldGuard region flag.
[19:08:18] [Server thread/INFO]: [HeadBlocks] Loading server plugin HeadBlocks v2.4.0
[19:08:18] [Server thread/INFO]: [Images] Loading server plugin Images v2.3.1
[19:08:18] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.6.0
[19:08:19] [Server thread/INFO]: [BoomBox] Loading server plugin BoomBox v2.0
[19:08:19] [Server thread/INFO]: [GiveAll] Loading server plugin GiveAll v1.0.3
[19:08:19] [Server thread/INFO]: [Lazino-Nametags] Loading server plugin Lazino-Nametags v1.0
[19:08:19] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.11
[19:08:19] [Server thread/INFO]: [HeadDB] Loading server plugin HeadDB v5.0.0-rc.8
[19:08:19] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[19:08:19] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.8.4-SNAPSHOT-625;d4b68b3
[19:08:19] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[19:08:19] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[19:08:19] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[19:08:19] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[19:08:19] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R2.PaperweightFaweAdapter as the Bukkit adapter
[19:08:20] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.102
[19:08:20] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 14 build(s) out of date.
You are running build 625, the latest version is build 639.
Update at https://www.spigotmc.org/resources/13932/
[19:08:22] [Server thread/INFO]:         __    
[19:08:22] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.102
[19:08:22] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[19:08:22] [Server thread/INFO]: 
[19:08:22] [Server thread/INFO]: [LuckPerms] Loading configuration...
[19:08:23] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[19:08:24] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[19:08:25] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[19:08:26] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 5465ms)
[19:08:26] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v7.2.1-Premium
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Loaded caption map for namespace 'plotsquared': com.plotsquared.core.configuration.caption.LocalizedCaptionMap
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: plot-expiry | Value: false
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worlds | Value: false
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-named-road-mobs | Value: false
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: per-user-locale | Value: false
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worldedit-restrictions | Value: true
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: external-placeholders | Value: true
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-owned-road-mobs | Value: false
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: disable-beacon-effect-overflow | Value: true
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database | Value: true
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: component-presets | Value: true
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: chunk-processor | Value: false
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: extended-username-completion | Value: true
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: events | Value: true
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: commands | Value: true
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-mobs | Value: false
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-items | Value: false
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database-purger | Value: false
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: economy | Value: false
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-road-regen | Value: true
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-vehicles | Value: false
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: default-locale | Value: en
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: use-mvdwapi | Value: true
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-meta | Value: true
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: tab-completed-aliases | Value: [plot, plots, p, plotsquared, plot2, p2, ps, 2, plotme, plotz, ap]
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: ban-deleter | Value: false
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: update-notifications | Value: true
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: rating-cache | Value: true
[19:08:26] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: comment-notifier | Value: true
[19:08:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared version licensed to Spigot user 1569337
[19:08:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] https://www.spigotmc.org/resources/77506
[19:08:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Download ID: -134513727
[19:08:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Thanks for supporting us :)
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #1(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #1(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #1(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #1(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #1(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #35(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #40(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #54(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #51(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #52(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #55(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #68(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #68(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #71(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #15(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #61(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #61(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #141(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #61(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #71(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #214(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #213(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #71(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #71(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #223(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[19:08:27] [Server thread/INFO]: [PlotSquared/PlotSquared] Connection to database established. Type: SQLite
[19:08:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into WorldEdit
[19:08:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using LuckPerms as a complementary UUID service
[19:08:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using Paper as a complementary UUID service
[19:08:27] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) 82 UUIDs will be cached
[19:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plotsquared [3]
[19:08:28] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into PlaceholderAPI
[19:08:28] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[19:08:28] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[19:08:28] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[19:08:28] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[19:08:28] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[19:08:28] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.0-SNAPSHOT-678
[19:08:28] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[19:08:28] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[19:08:28] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[19:08:28] [Server thread/INFO]: [NexEngine] Successfully hooked with lightEconomy economy
[19:08:28] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[19:08:28] [Server thread/INFO]: [NexEngine] Plugin loaded in 49 ms!
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Enabling ExcellentEnchants v3.6.4
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Powered by: NexEngine
[19:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentenchants [3.6.4]
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Tiers Loaded: 5
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: auto_reel
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_catch
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: seasoned_angler
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: survivalist
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_drowned
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: river_master
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blast_mining
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_breaking
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_misfortune
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: divine_touch
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: haste
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lucky_miner
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: replanter
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: silk_chest
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: smelter
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: telekinesis
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: treasures
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: tunnel
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: veinminer
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bane_of_netherspawn
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blindness
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusion
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cutter
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_death
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: decapitator
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_strike
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exhaust
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exp_hunter
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_aspect
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: infernus
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: nimble
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: paralyze
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cure
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rage
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rocket
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: scavenger
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: surprise
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: swiper
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: temper
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thrifty
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thunder
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampire
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: venom
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: village_defender
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: wither
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: aquaman
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bunny_hop
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cold_steel
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_shield
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: elemental_protection
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: fire_shield
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flame_walker
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hardened
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: night_vision
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: regrowth
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: saturation
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: self_destruction
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: stopping_force
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sonic
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bomber
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusing_arrows
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: dragonfire_arrows
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: electrified_arrows
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ender_bow
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: explosive_arrows
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flare
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ghast
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hover
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sniper
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: poisoned_arrows
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampiric_arrows
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: withered_arrows
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: darkness_arrows
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: darkness_cloak
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_fragility
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_mediocrity
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: soulbound
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: restore
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Enchantments Registered: 78
[19:08:28] [Server thread/INFO]: [ExcellentEnchants] Plugin loaded in 383 ms!
[19:08:28] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v3.0.5
[19:08:28] [Server thread/INFO]: Preparing level "world"
[19:08:30] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[19:08:32] [Server thread/INFO]: Time elapsed: 2025 ms
[19:08:32] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[19:08:32] [Server thread/INFO]: Time elapsed: 40 ms
[19:08:32] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[19:08:32] [Server thread/INFO]: Time elapsed: 28 ms
[19:08:32] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.9.2
[19:08:32] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20.2 (764)
[19:08:32] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[19:08:35] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[19:08:35] [Server thread/INFO]: [ServerSystem] Enabling ServerSystem v1.8.3
[19:08:35] [Server thread/INFO]: [Info] [ServerSystem] >> ServerSystem is running on v1.20.R2!
[19:08:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: serversystem [1.0.0]
[19:08:36] [Server thread/INFO]: [Info] [ServerSystem] >> Economy disabled! Not using it...
[19:08:36] [Server thread/INFO]: [Info] [ServerSystem] >> BanSystem disabled! Not using it...
[19:08:36] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[19:08:36] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[19:08:36] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[19:08:36] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[19:08:36] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[19:08:36] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[19:08:36] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[19:08:36] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[19:08:36] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[19:08:36] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[19:08:36] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[19:08:36] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[19:08:36] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[19:08:36] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[19:08:36] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[19:08:36] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[19:08:36] [Server thread/INFO]: [WorldGuard] Loading region data...
[19:08:37] [Server thread/INFO]: [JuByteLibraries] Enabling JuByteLibraries v1.2.0-SNAPSHOT*
[19:08:37] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.9.0
[19:08:37] [Server thread/INFO]: [PartyAndFriends] Enabling PartyAndFriends v1.0.243-E-For-Spigot
[19:08:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: friendsapi [1.0]
[19:08:37] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.2-SNAPSHOT (b85-71acc6c)
[19:08:37] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3265)
[19:08:37] [Server thread/INFO]: [Citizens] Loading external libraries
[19:08:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[19:08:37] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[19:08:38] [pool-29-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared will fetch UUIDs in groups of 200
[19:08:38] [pool-29-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached 100.0% of UUIDs
[19:08:38] [pool-29-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached all UUIDs
[19:08:38] [Server thread/INFO]: [CityBuildV2] Enabling CityBuildV2 v2.16.1-RELEASE
[19:08:38] [Pretronic Queue Printer/INFO]: [19:08:38] INFO: Starting Pretronic async logging service
[19:08:38] [Pretronic Queue Printer/INFO]: [19:08:38] INFO: CityBuildV2 Connected to local H2Portable database
[19:08:38] [Pretronic Queue Printer/INFO]: [19:08:38] INFO: CityBuildV2 - Starting...
[19:08:38] [Pretronic Queue Printer/INFO]: [19:08:38] INFO: CityBuildV2 - Start completed.
[19:08:38] [Server thread/INFO]: ================================================
[19:08:38] [Server thread/INFO]: CityBuildV2 | Status: Enabled
[19:08:38] [Server thread/INFO]: CityBuildV2 | Version: 2.16.1-RELEASE
[19:08:38] [Server thread/INFO]: CityBuildV2 | Authors: [JuByte, Justin_SGD, KeinByte, Forumat]
[19:08:38] [Server thread/INFO]: ================================================
[19:08:38] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[19:08:38] [Server thread/INFO]: [Votifier] Loaded token for website: default
[19:08:38] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[19:08:38] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[19:08:38] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.5
[19:08:38] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /45.132.91.221:8192.
[19:08:38] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[19:08:38] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" 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:08:38] [Server thread/INFO]: [Multiverse-Core] ?aWe 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:08:38] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: EINKAUFSHALLE
[19:08:38] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[19:08:38] [Server thread/INFO]: Preparing start region for dimension minecraft:farmwelt
[19:08:43] [Server thread/INFO]: Time elapsed: 4450 ms
[19:08:43] [Server thread/INFO]: [WorldGuard] (Farmwelt) TNT ignition is PERMITTED.
[19:08:43] [Server thread/INFO]: [WorldGuard] (Farmwelt) Lighters are PERMITTED.
[19:08:43] [Server thread/INFO]: [WorldGuard] (Farmwelt) Lava fire is PERMITTED.
[19:08:43] [Server thread/INFO]: [WorldGuard] (Farmwelt) Fire spread is UNRESTRICTED.
[19:08:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Farmwelt'
[19:08:43] [Server thread/INFO]: Preparing start region for dimension minecraft:test
[19:08:43] [Server thread/INFO]: Time elapsed: 23 ms
[19:08:43] [Server thread/INFO]: [WorldGuard] (test) TNT ignition is PERMITTED.
[19:08:43] [Server thread/INFO]: [WorldGuard] (test) Lighters are PERMITTED.
[19:08:43] [Server thread/INFO]: [WorldGuard] (test) Lava fire is PERMITTED.
[19:08:43] [Server thread/INFO]: [WorldGuard] (test) Fire spread is UNRESTRICTED.
[19:08:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'test'
[19:08:43] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'CityBuild'
[19:08:43] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[19:08:43] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[19:08:43] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[19:08:43] [Server thread/INFO]: Plot | Loading flags for area: CityBuild
[19:08:44] [Server thread/INFO]: Plot | Bereichs-Flags: []
[19:08:44] [Server thread/INFO]: Plot | Stra?en-Flags: []
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name CityBuild
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = true
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 3
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 46
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = stone
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = grass_block
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = stone_slab
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = sandstone_slab
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = stone
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = quartz_block
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 42
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 7
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[19:08:44] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 49
[19:08:44] [Server thread/INFO]: Preparing start region for dimension minecraft:citybuild
[19:08:46] [Server thread/INFO]: Time elapsed: 2525 ms
[19:08:46] [Server thread/INFO]: [WorldGuard] (CityBuild) TNT ignition is PERMITTED.
[19:08:46] [Server thread/INFO]: [WorldGuard] (CityBuild) Lighters are PERMITTED.
[19:08:46] [Server thread/INFO]: [WorldGuard] (CityBuild) Lava fire is PERMITTED.
[19:08:46] [Server thread/INFO]: [WorldGuard] (CityBuild) Fire spread is UNRESTRICTED.
[19:08:46] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'CityBuild'
[19:08:46] [Server thread/INFO]: Preparing start region for dimension minecraft:event
[19:08:46] [Server thread/INFO]: Time elapsed: 41 ms
[19:08:46] [Server thread/INFO]: [WorldGuard] (EVENT) TNT ignition is PERMITTED.
[19:08:46] [Server thread/INFO]: [WorldGuard] (EVENT) Lighters are PERMITTED.
[19:08:46] [Server thread/INFO]: [WorldGuard] (EVENT) Lava fire is PERMITTED.
[19:08:46] [Server thread/INFO]: [WorldGuard] (EVENT) Fire spread is UNRESTRICTED.
[19:08:46] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'EVENT'
[19:08:47] [Server thread/INFO]: Preparing start region for dimension minecraft:cb
[19:08:47] [Server thread/INFO]: Time elapsed: 830 ms
[19:08:47] [Server thread/INFO]: [WorldGuard] (cb) TNT ignition is PERMITTED.
[19:08:47] [Server thread/INFO]: [WorldGuard] (cb) Lighters are PERMITTED.
[19:08:47] [Server thread/INFO]: [WorldGuard] (cb) Lava fire is PERMITTED.
[19:08:47] [Server thread/INFO]: [WorldGuard] (cb) Fire spread is UNRESTRICTED.
[19:08:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'cb'
[19:08:47] [Server thread/INFO]: [Multiverse-Core] 8 - World(s) loaded.
[19:08:47] [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:08:47] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[19:08:47] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.2
[19:08:47] [Server thread/INFO]: [CancelFriendRequest] Enabling CancelFriendRequest v1.0.6-RELEASE
[19:08:47] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[19:08:47] [Server thread/INFO]: [lightEconomy] Enabling lightEconomy v5.3.1
[19:08:47] [Pretronic Queue Printer/INFO]: [19:08:47] INFO: SQLite - Starting...
[19:08:47] [Pretronic Queue Printer/INFO]: [19:08:47] INFO: SQLite - Added connection org.sqlite.jdbc4.JDBC4Connection@349e08e9
[19:08:47] [Pretronic Queue Printer/INFO]: [19:08:47] INFO: SQLite - Start completed.
[19:08:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lighteconomy [5.0.3]
[19:08:47] [Server thread/INFO]: [lightEconomy] Hooked into PlaceholderAPI
[19:08:47] [Server thread/INFO]: [lightEconomy] Creating Database ...
[19:08:47] [Server thread/INFO]: [lightEconomy] Register Commands and TabCompletions ...
[19:08:48] [Server thread/INFO]: [lightEconomy] Successfully started lightEconomy
[19:08:48] [Server thread/INFO]: [IA-For-PAF] Enabling IA-For-PAF v1.0.6-RELEASE
[19:08:48] [Server thread/INFO]: [XLTournaments] Enabling XLTournaments v3.15.5
[19:08:48] [Server thread/INFO]: [XLTournaments] 
[19:08:48] [Server thread/INFO]: [XLTournaments] \/|      XLTournaments v3.15.5
[19:08:48] [Server thread/INFO]: [XLTournaments] /\|_     Author: [ItsLewizzz, ItzSave]
[19:08:48] [Server thread/INFO]: [XLTournaments]          Copyright (c) Zithium Studios 2023. All Rights Reserved.
[19:08:48] [Server thread/INFO]: [XLTournaments] 
[19:08:48] [Server thread/INFO]: [XLTournaments] Loading plugin..
[19:08:48] [Server thread/INFO]: [XLTournaments] Loading bstats metrics.
[19:08:48] [Server thread/INFO]: [XLTournaments] Metrics are disabled.
[19:08:48] [Server thread/INFO]: [XLTournaments] Hooked into Vault
[19:08:48] [Server thread/INFO]: [XLTournaments] 
[19:08:48] [Server thread/INFO]: [UltraCosmetics] Enabling UltraCosmetics v3.4.2
[19:08:48] [Server thread/INFO]: [UltraCosmetics] Checking for update...
[19:08:48] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[19:08:48] [Server thread/INFO]: [UltraCosmetics] Thanks for using UltraCosmetics! Version: 3.4.2-RELEASE (commit ef004f4)
[19:08:48] [Server thread/INFO]: [UltraCosmetics] Plugin by Datatags. Original Author: iSach
[19:08:48] [Server thread/INFO]: [UltraCosmetics] Link: https://bit.ly/UltraCosmetics
[19:08:48] [Server thread/INFO]: [UltraCosmetics] Initializing module v1_20 (expected version: 1.20.4)
[19:08:48] [Server thread/INFO]: [UltraCosmetics] Loading NMS-less mode...
[19:08:48] [Server thread/INFO]: [UltraCosmetics] Loaded NMS-less mode
[19:08:53] [Server thread/INFO]: [UltraCosmetics] 
[19:08:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultracosmetics [3.4.2]
[19:08:53] [Server thread/INFO]: [UltraCosmetics] Hooked into PlaceholderAPI
[19:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
[19:08:53] [Server thread/INFO]: [UltraCosmetics] 
[19:08:53] [Server thread/INFO]: [UltraCosmetics] WorldGuard custom flags enabled
[19:08:53] [Server thread/INFO]: [UltraCosmetics] 
[19:08:53] [Server thread/INFO]: [UltraCosmetics] Hooked into Vault:lightEconomy for economy.
[19:08:53] [Server thread/INFO]: [UltraCosmetics] 
[19:08:53] [Server thread/INFO]: [UltraCosmetics] 
[19:08:53] [Server thread/INFO]: [UltraCosmetics] UltraCosmetics successfully finished loading in 5360ms!
[19:08:53] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[19:08:53] [Server thread/INFO]: [spark] Enabling spark v1.10.57
[19:08:54] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[19:08:54] [Server thread/INFO]: [spark] Starting background profiler...
[19:08:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.57]
[19:08:54] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[19:08:54] [Server thread/INFO]: [Clans] Enabling Clans v0.9.9.38
[19:08:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clantagprovider [1.0]
[19:08:54] [Server thread/INFO]: [BanSystem] Enabling BanSystem v2.8.1*
[19:08:54] [Server thread/INFO]:   ____                    ____                  _                      
[19:08:54] [Server thread/INFO]:  | __ )    __ _   _ __   / ___|   _   _   ___  | |_    ___   _ __ ___  
[19:08:54] [Server thread/INFO]:  |  _ \   / _` | | '_ \  \___ \  | | | | / __| | __|  / _ \ | '_ ` _ \ 
[19:08:54] [Server thread/INFO]:  | |_) | | (_| | | | | |  ___) | | |_| | \__ \ | |_  |  __/ | | | | | |
[19:08:54] [Server thread/INFO]:  |____/   \__,_| |_| |_| |____/   \__, | |___/  \__|  \___| |_| |_| |_|
[19:08:54] [Server thread/INFO]:                                   |___/                           v2.8.1
[19:08:54] [Server thread/INFO]: Lazino Datenbankverbindung erfolgreich hergestellt.
[19:08:54] [Server thread/INFO]: Lazino Die SQLite Tabellen wurden erstellt.
[19:08:54] [Server thread/INFO]: Lazino Bitte trage die IP des Servers in der config.yml ein.
[19:08:54] [Server thread/INFO]: Lazino Das BanSystem wurde gestartet.
[19:08:54] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.4.9
[19:08:54] [Server thread/INFO]: [ChatItem] Detected server version: v1_20
[19:08:54] [Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[19:08:54] [Server thread/INFO]: [ChatItem] Loaded 3 getter for base components.
[19:08:54] [Server thread/INFO]: [ChatItem] Save method founded: b. Use ComponentBuilder's method.
[19:08:54] [Server thread/INFO]: [ChatItem] Manager automatically chosen: PacketEditing (packet), ChatListener (chat)
[19:08:55] [Server thread/INFO]: [ChatItem] Loaded translation for de_de.
[19:08:55] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.2.0-SNAPSHOT
[19:08:55] [Server thread/INFO]: [Geyser-Spigot] Registered command help
[19:08:55] [Server thread/INFO]: [Geyser-Spigot] Registered command list
[19:08:55] [Server thread/INFO]: [Geyser-Spigot] Registered command reload
[19:08:55] [Server thread/INFO]: [Geyser-Spigot] Registered command offhand
[19:08:55] [Server thread/INFO]: [Geyser-Spigot] Registered command dump
[19:08:55] [Server thread/INFO]: [Geyser-Spigot] Registered command version
[19:08:55] [Server thread/INFO]: [Geyser-Spigot] Registered command settings
[19:08:55] [Server thread/INFO]: [Geyser-Spigot] Registered command statistics
[19:08:55] [Server thread/INFO]: [Geyser-Spigot] Registered command advancements
[19:08:55] [Server thread/INFO]: [Geyser-Spigot] Registered command tooltips
[19:08:55] [Server thread/INFO]: [Geyser-Spigot] Registered command connectiontest
[19:08:55] [Server thread/INFO]: [Tweakin] Enabling Tweakin v6.0.3
[19:08:55] [Server thread/INFO]: [Tweakin] Running papermc..
[19:08:55] [Server thread/INFO]: [Tweakin] Running 1.20.2 minecraft version...
[19:08:55] [Server thread/INFO]: [Tweakin] [ACF] Enabled Asynchronous Tab Completion Support!
[19:08:55] [Server thread/INFO]: [Tweakin] Loading tweakin...
[19:08:55] [Server thread/INFO]: [Tweakin] Generating Head Map, this might take a while...
[19:08:55] [Server thread/INFO]: [Tweakin] Generated 176 mob heads..
[19:08:55] [Server thread/INFO]: [Tweakin] Registered 75 recipes
[19:08:55] [Server thread/INFO]: [Tweakin] Using 0,16,0 as color for reach-around, due to other color channels being removed after 1.17
[19:08:55] [Server thread/INFO]: [Tweakin] Registered 3 tweaks successfully
[19:08:55] [Server thread/INFO]: [Tweakin] Registering permissions
[19:08:55] [Server thread/INFO]: [Tweakin] Registered 61 permissions
[19:08:55] [Server thread/INFO]: [Tweakin] Enabling bstats...
[19:08:55] [Server thread/INFO]: [Tweakin] Tweakin loaded successfully
[19:08:55] [Server thread/INFO]: [DiscordSynthesis] Enabling DiscordSynthesis v6.8
[19:08:56] [Server thread/INFO]: --- DISCORDSYNTHESIS ---
[19:08:56] [Server thread/INFO]:      LOADING...     
[19:08:58] [Server thread/INFO]: Invite link for your Discord Synthesis bot: https://discord.com/oauth2/authorize?client_id=1167949990509957232&scope=bot%20applications.commands&permissions=0&prompt=consent
[19:08:58] [Server thread/ERROR]: [DiscordSynthesis] *** TitleAPI is not installed or not enabled. ***
[19:08:58] [Server thread/ERROR]: [DiscordSynthesis] *** Titles will not work. ***
[19:08:58] [Server thread/INFO]: [DiscordSynthesis] ****
[19:08:58] [Server thread/INFO]: [DiscordSynthesis] Remember to give us a rating on SpigotMC to push us to work on this plugin more! And remember to join the discord server if you need assistance!
[19:08:58] [Server thread/INFO]: [DiscordSynthesis] ****
[19:08:58] [Server thread/INFO]: [Elevators] Enabling Elevators v4.0.16
[19:08:58] [Server thread/INFO]: [Jackpot] Enabling Jackpot v1.0.0
[19:08:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jackpot [1.0.0]
[19:08:58] [Server thread/INFO]: --- JACKPOT ---
[19:08:58] [Server thread/INFO]:  PLUGIN ENABLED
[19:08:58] [Server thread/INFO]: --- JACKPOT ---
[19:08:58] [Server thread/INFO]: [CitizensServerSelector] Enabling CitizensServerSelector v0.3.3
[19:08:58] [Server thread/INFO]: [CitizensServerSelector] Hook into Citizens support!
[19:08:58] [Server thread/INFO]: [AdvancedItems] Enabling AdvancedItems v1.0.0
[19:08:58] [Server thread/INFO]: [AdvancedItems] Loaded 1 custom items.
[19:08:58] [Server thread/INFO]: [Booster] Enabling Booster v9.0
[19:08:58] [Server thread/INFO]: ----------------------------------------------------
[19:08:58] [Server thread/INFO]: 
[19:08:58] [Server thread/INFO]:   ____                  _            
[19:08:58] [Server thread/INFO]:  |  _ \                | |           
[19:08:58] [Server thread/INFO]:  | |_) | ___   ___  ___| |_ ___ _ __ 
[19:08:58] [Server thread/INFO]:  |  _ < / _ \ / _ \/ __| __/ _ \ '__|
[19:08:58] [Server thread/INFO]:  | |_) | (_) | (_) \__ \ ||  __/ |   
[19:08:58] [Server thread/INFO]:  |____/ \___/ \___/|___/\__\___|_|   
[19:08:58] [Server thread/INFO]: 
[19:08:58] [Server thread/INFO]: Das Plugin Booster wurde von JakobG programmiert!
[19:08:58] [Server thread/INFO]: Version: 9.0
[19:08:58] [Server thread/INFO]: 
[19:08:58] [Server thread/INFO]: ----------------------------------------------------
[19:08:58] [Server thread/INFO]: Lazino |  Sound des Slots 12 in der GUI Overview konnte nicht geladen werden! (Fehlerhafter Sound: 12)
[19:08:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: booster [9.0]
[19:08:58] [Server thread/INFO]: Lazino |  PlaceholderAPI wurde geladen!
[19:08:58] [Server thread/INFO]: [Lazino-Sign] Enabling Lazino-Sign v1.0
[19:08:58] [Server thread/INFO]: [BPS-Free] Enabling BPS-Free v4.0.19
[19:08:58] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.5.2
[19:08:58] [Server thread/INFO]:  
[19:08:58] [Server thread/INFO]: __________________________________________________________
[19:08:58] [Server thread/INFO]:  
[19:08:58] [Server thread/INFO]:                        TradeSystem [2.5.2]
[19:08:58] [Server thread/INFO]:  
[19:08:58] [Server thread/INFO]: Status:
[19:08:58] [Server thread/INFO]:  
[19:08:58] [Server thread/INFO]: MC-Version: 1.20.2 (R0.1-SNAPSHOT, Paper)
[19:08:58] [Server thread/INFO]:  
[19:08:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tradesystem [1.2]
[19:08:59] [Server thread/INFO]:   > Loading sounds
[19:08:59] [Server thread/INFO]:   > Loading blacklist
[19:08:59] [Server thread/INFO]:     ...got 3 blocked item(s)
[19:08:59] [Server thread/INFO]:   > Loading layouts
[19:08:59] [Server thread/INFO]:     ...got 3 layout(s)
[19:08:59] [Server thread/INFO]:   > Queuing database initializing task
[19:08:59] [Server thread/INFO]:  
[19:08:59] [Server thread/INFO]: Finished (267ms)
[19:08:59] [Server thread/INFO]:  
[19:08:59] [Server thread/INFO]: __________________________________________________________
[19:08:59] [Server thread/INFO]:  
[19:08:59] [Server thread/INFO]: [Lazino-Werbung] Enabling Lazino-Werbung v1.0
[19:08:59] [Server thread/INFO]: [HelpCommand] Enabling HelpCommand v2.5.9-PublicRelease
[19:08:59] [Server thread/INFO]: [HelpCommand] Help Command Enabled
[19:08:59] [Server thread/INFO]: [HelpCommand] Author: VoidemLIVE
[19:08:59] [Server thread/INFO]: [HelpCommand] Version: 2.5.9-PublicRelease
[19:08:59] [Server thread/INFO]: [HelpCommand] Version(s) intended for: 1.18-1.20.2
[19:08:59] [Server thread/INFO]: [PicoJobs] Enabling PicoJobs v1.0-beta-7a
[19:08:59] [Server thread/INFO]: [PicoJobs] Plugin created by: Picono435#2011. Thank you for using it
[19:08:59] [Server thread/WARN]: Registered EXP economy implementation.
[19:08:59] [Server thread/WARN]: Registered COMMAND economy implementation.
[19:08:59] [Server thread/WARN]: Registered ITEM economy implementation.
[19:08:59] [Server thread/WARN]: Registered VAULT economy implementation.
[19:08:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobplayer [1.0-beta-7a]
[19:08:59] [Server thread/WARN]: Generating jobs from configuration...
[19:08:59] [Server thread/WARN]: Retrieving jobs from the config...
[19:08:59] [Server thread/WARN]: [STDERR] [Server thread] INFO com.gmail.picono435.picojobs.libs.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting...
[19:08:59] [Server thread/WARN]: Nag author(s): '[[Picono435]]' of 'PicoJobs v1.0-beta-7a' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[19:08:59] [Server thread/WARN]: [STDERR] [Server thread] INFO com.gmail.picono435.picojobs.libs.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed.
[19:08:59] [Server thread/WARN]: The plugin was succefully enabled.
[19:08:59] [Server thread/INFO]: [Perks] Enabling Perks v2.6.2*
[19:08:59] [Server thread/INFO]: [Perks] [STDOUT] [PERKS] Server Version: 1.20.2 erkannt
[19:08:59] [Server thread/WARN]: Nag author(s): '[xZaruk]' of 'Perks v2.6.2' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[19:08:59] [Server thread/INFO]: [Perks] [STDOUT] [PERKS] PlotSquared erkannt.
[19:08:59] [Server thread/INFO]: [Perks] [STDOUT] [PERKS] PlotSquared Version: 7.2.1-
[19:08:59] [Server thread/ERROR]: [Perks] Failed to register events for class de.zaruk.perks.fly.FlyPerk2 because com/plotsquared/bukkit/events/PlayerEnterPlotEvent does not exist.
[19:08:59] [Server thread/INFO]: [Perks] [STDOUT] [PERKS] Perk Plugin v2.6.2 von xZaruk wurde ?aaktiviert! 1
[19:08:59] [Server thread/INFO]: [ColoredPrefix] Enabling ColoredPrefix v2.8.3-RELEASE
[19:08:59] [Server thread/WARN]: [ColoredPrefix] Default system encoding may have misread messages.yml from plugin jar
[19:08:59] [Server thread/WARN]: [ColoredPrefix] Default system encoding may have misread prefix.yml from plugin jar
[19:08:59] [Server thread/WARN]: [ColoredPrefix] Default system encoding may have misread inventory.yml from plugin jar
[19:08:59] [Server thread/WARN]: [ColoredPrefix] Default system encoding may have misread items.yml from plugin jar
[19:08:59] [Server thread/ERROR]: [ColoredPrefix] Hooked into Vault!
[19:08:59] [Pretronic Queue Printer/INFO]: [19:08:59] INFO: ColoredPrefix Connected to local H2Portable database
[19:08:59] [Pretronic Queue Printer/INFO]: [19:08:59] INFO: ColoredPrefix - Starting...
[19:08:59] [Pretronic Queue Printer/INFO]: [19:08:59] INFO: ColoredPrefix - Start completed.
[19:08:59] [Server thread/INFO]: [ColoredPrefix] PlaceholderAPI found
[19:08:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: coloredprefix [2.8.3-RELEASE]
[19:08:59] [Server thread/INFO]: ================================================
[19:08:59] [Server thread/INFO]: ColoredPrefix | Status: Enabled
[19:08:59] [Server thread/INFO]: ColoredPrefix | Version: 2.8.3-RELEASE
[19:08:59] [Server thread/INFO]: ColoredPrefix | Authors: [JuByte, Justin_SGD, KeinByte]
[19:08:59] [Server thread/INFO]: ColoredPrefix | User: 1569337
[19:08:59] [Server thread/INFO]: ColoredPrefix | DownloadID: -712195227
[19:08:59] [Server thread/INFO]: ================================================
[19:08:59] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[19:08:59] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[19:09:00] [Server thread/WARN]: [DeluxeMenus] Requirement type at path: open_requirement.requirements.permission is not a valid requirement type!
[19:09:00] [Server thread/WARN]: [DeluxeMenus] Material for item: background_red_glass in menu: jackpot is not valid!
Skipping item: background_red_glass
[19:09:00] [Server thread/WARN]: [DeluxeMenus] Material for item: background_blue_glass1 in menu: jackpot is not valid!
Skipping item: background_blue_glass1
[19:09:00] [Server thread/WARN]: [DeluxeMenus] Material for item: background_blue_glass2 in menu: jackpot is not valid!
Skipping item: background_blue_glass2
[19:09:00] [Server thread/INFO]: [DeluxeMenus] 10 GUI menus loaded!
[19:09:00] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[19:09:00] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[19:09:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[19:09:00] [Server thread/INFO]: [PinataParty] Enabling PinataParty v2.63.7
[19:09:00] [Server thread/INFO]: [PinataParty] Registering hooks...
[19:09:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pinataparty [2.63.7]
[19:09:00] [Server thread/INFO]: [PinataParty] Hooked into PlaceholderAPI
[19:09:00] [Server thread/INFO]: [PinataParty] Hooked into Votifier
[19:09:00] [Server thread/INFO]: [PinataParty] Hooked into Vault
[19:09:00] [Server thread/INFO]: [PinataParty] Registering commands...
[19:09:00] [Server thread/INFO]: [PinataParty] Registering listeners...
[19:09:00] [Server thread/INFO]: [PinataParty] Loading data...
[19:09:00] [Server thread/INFO]: [PinataParty] Starting tasks...
[19:09:00] [Server thread/INFO]: [PinataParty] Starting metrics...
[19:09:00] [Server thread/INFO]: [PinataParty] Plugin registered to 1569337 | -1924413679
[19:09:00] [Server thread/INFO]: [PinataParty] Done and enabled in 26.56ms
[19:09:00] [Server thread/INFO]: [Lazino-AntiAch] Enabling Lazino-AntiAch v1.0
[19:09:00] [Server thread/INFO]: [EntityClearer] Enabling EntityClearer v2.0.0
[19:09:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: entityclearer [1]
[19:09:00] [Server thread/INFO]: [EntityClearer] Enabled PlaceholderAPI hook!
[19:09:00] [Server thread/INFO]: [EntityClearer] TPS monitoring activated.
[19:09:00] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium v5.3.3
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using lang-de.yml as language file.
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 8 section configs from /sections/
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 8 shop configs from /shops/
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Die Shop-Einstellungen werden geladen...
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Du benutzt Minecraft 1.20.2...
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully hooked into Vault
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 1 economy provider(s) for all 6 shop sections.
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: In der config ist AUTO als Plugin angegeben, das sich um Spawner k?mmert
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Automatically searching for compatible spawner provider....
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Failed to automatically find compatible spawner provider, using default...
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled PlaceholderAPI hook...
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [WARN]: Failed to hook into ExcellentEnchants, please update the plugin to v3.4.0 or later
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Debug mode ist an.
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading item stock provider...
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading limited selling provider...
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Alle items werden geladen...
[19:09:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Initialisiert - Hat 273ms gedauert
[19:09:01] [Server thread/INFO]: [Crash] Enabling Crash v1.0.1
[19:09:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cashout [1.0.0]
[19:09:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: status [1.0.0]
[19:09:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: status2 [1.0.0]
[19:09:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: leaderboard [1.0.0]
[19:09:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: leaderboard [1.0.0]
[19:09:01] [Server thread/INFO]: --- CRASH ---
[19:09:01] [Server thread/INFO]:  PLUGIN ENABLED
[19:09:01] [Server thread/INFO]: --- CRASH ---
[19:09:01] [Server thread/INFO]: [SternalBoard] Enabling SternalBoard v2.2.8
[19:09:01] [Server thread/INFO]: [FarmingUpgrade] Enabling FarmingUpgrade v1.6.0
[19:09:01] [Server thread/INFO]: [RandomTP] Enabling RandomTP v2023.6
[19:09:01] [Server thread/INFO]: This server version (1.20.2) is not supported by this plugin (RandomTP v2023.6)
[19:09:01] [Server thread/INFO]: Supported server versions: 1.17, 1.17.1, 1.18, 1.18.1, 1.18.2, 1.19, 1.19.1, 1.19.2, 1.19.3, 1.19.4, 1.20, 1.20.1
[19:09:01] [Server thread/INFO]: [RandomTP] Disabling RandomTP v2023.6
[19:09:01] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[19:09:01] [Server thread/INFO]: [BuycraftX] Validating your server key...
[19:09:02] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[19:09:02] [Server thread/INFO]: [TAB] Enabling TAB v4.0.9
[19:09:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.0.9]
[19:09:02] [Server thread/INFO]: [TAB] Enabled in 151ms
[19:09:02] [Server thread/INFO]: [DeluxeCoinflip] Enabling DeluxeCoinflip v2.7.0
[19:09:02] [Server thread/INFO]: [DeluxeCoinflip] 
[19:09:02] [Server thread/INFO]: [DeluxeCoinflip]  __ __    DeluxeCoinflip v2.7.0
[19:09:02] [Server thread/INFO]: [DeluxeCoinflip] /  |_     Author(s): [ItsLewizzz, ItzSave]
[19:09:02] [Server thread/INFO]: [DeluxeCoinflip] \_ |      (c) Zithium Studios 2020-2023. All rights reserved.
[19:09:02] [Server thread/INFO]: [DeluxeCoinflip] 
[19:09:02] [Server thread/INFO]: [DeluxeCoinflip] Registered economy provider 'Vault' using Vault plugin.
[19:09:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxecoinflip [2.7.0]
[19:09:02] [Server thread/INFO]: [DeluxeCoinflip] Hooked into PlaceholderAPI successfully
[19:09:02] [Server thread/INFO]: [DeluxeCoinflip] 
[19:09:02] [Server thread/INFO]: [DeluxeCoinflip] Successfully loaded in 55ms
[19:09:02] [Server thread/INFO]: [DeluxeCoinflip] 
[19:09:02] [Server thread/INFO]: [BetterPlaytime] Enabling BetterPlaytime v1.1.2
[19:09:03] [Server thread/INFO]: [DB] Connecting to Database: sqlite:plugins/BetterPlaytime/playtime.sqlite
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: DB - Starting...
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: DB - Added connection org.sqlite.jdbc4.JDBC4Connection@4b24ba1d
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: DB - Start completed.
[19:09:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playtime [1.1.2]
[19:09:03] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12.2 (build 353)
[19:09:03] [Server thread/INFO]: [ChestShop] Found locales ar, it, es, el, hu, fr, pl, cs, pt_br, ja, sv, da, es_mx, sr, tr, nl, zh_tw, af, ko, no, vi, ro, he, ru, ca, zh, de, fi, en, uk
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: creating table 'accounts'
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: creating index 'accounts_uuid_idx' for table 'accounts
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: creating index 'accounts_shortName_idx' for table 'accounts
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: creating index 'accounts_name_idx' for table 'accounts
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: executed create table statement changed 0 rows: CREATE TABLE IF NOT EXISTS `accounts` (`name` VARCHAR NOT NULL , `shortName` VARCHAR NOT NULL , `uuid` VARCHAR NOT NULL , `lastSeen` BIGINT DEFAULT 0 NOT NULL , PRIMARY KEY (`shortName`) , UNIQUE (`name`,`uuid`) ) 
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: executed create table statement changed 0 rows: CREATE INDEX IF NOT EXISTS `accounts_uuid_idx` ON `accounts` ( `uuid` )
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: executed create table statement changed 0 rows: CREATE INDEX IF NOT EXISTS `accounts_shortName_idx` ON `accounts` ( `shortName` )
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: executed create table statement changed 0 rows: CREATE INDEX IF NOT EXISTS `accounts_name_idx` ON `accounts` ( `name` )
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: creating table 'items'
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: creating index 'items_code_idx' for table 'items
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: executed create table statement changed 0 rows: CREATE TABLE IF NOT EXISTS `items` (`id` INTEGER PRIMARY KEY AUTOINCREMENT , `code` VARCHAR NOT NULL ) 
[19:09:03] [Pretronic Queue Printer/INFO]: [19:09:03] INFO: executed create table statement changed 0 rows: CREATE INDEX IF NOT EXISTS `items_code_idx` ON `items` ( `code` )
[19:09:03] [Server thread/INFO]: [ChestShop] Using lightEconomy as the Economy provider now.
[19:09:03] [Server thread/INFO]: [ChestShop] Vault loaded!
[19:09:03] [Server thread/INFO]: [ChestShop] Using Paper's BlockDestroyEvent instead of the BlockPhysicsEvent!
[19:09:03] [Server thread/INFO]: [ChestShop] Auto-updater is disabled. If you want the plugin to automatically download new releases then set 'TURN_OFF_UPDATES' to 'false' in your config.yml!
[19:09:03] [Server thread/INFO]: [CustomJoinMessages] Enabling CustomJoinMessages v17.3.1
[19:09:04] [Server thread/INFO]: [CustomJoinMessages] [ACF] Enabled Asynchronous Tab Completion Support!
[19:09:04] [Server thread/INFO]: [CustomJoinMessages] [ACF] Enabled Brigadier Support!
[19:09:04] [Server thread/INFO]: [DailyRewards] Enabling DailyRewards v1.8.7
[19:09:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: dailyrewards [1.8.7]
[19:09:04] [Server thread/INFO]: [DailyRewards] Update your version to ULTIMATE and remove limitations!
[19:09:04] [Server thread/INFO]: [DailyRewards] Get it from here: https://bit.ly/ultimate-rewards
[19:09:04] [Server thread/INFO]: [AxRankMenu] Enabling AxRankMenu v1.0.0
[19:09:04] [Server thread/INFO]: [AxRankMenu] Hooked into Vault!
[19:09:04] [Server thread/INFO]: [AxRankMenu] PlayerPoints is set in config.yml, but it isn't installed, please download it or change it in the config to stop errors!
[19:09:04] [Server thread/INFO]: [AxRankMenu] CoinsEngine is set in config.yml, but it isn't installed, please download it or change it in the config to stop errors!
[19:09:04] [Server thread/INFO]: [AxRankMenu] RoyaleEconomy is set in config.yml, but it isn't installed, please download it or change it in the config to stop errors!
[19:09:04] [Server thread/INFO]: [AxRankMenu] Hooked into PlaceholderAPI!
[19:09:04] [Server thread/INFO]: [AdvancedCrates] Enabling AdvancedCrates v3.9.28
[19:09:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedcrates [3.9.28]
[19:09:04] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[19:09:04] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[19:09:04] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AdvancedCrates' to create a bStats instance!
[19:09:05] [Server thread/INFO]: [DeathCoordinates] Enabling DeathCoordinates v1.12.1
[19:09:05] [Server thread/INFO]: [DeathCoordinates] Has been enabled! Version: 1.12.1
[19:09:05] [Server thread/INFO]: [DeathCoordinates] Thanks for using my plugin!  ~Ajneb97
[19:09:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deathcoordinates [1.12.1]
[19:09:05] [Server thread/INFO]: [Pl-Hide-Pro] Enabling Pl-Hide-Pro v2.7.5.1
[19:09:05] [Server thread/INFO]: [Vouchers] Enabling Vouchers v3.19.0
[19:09:05] [Server thread/INFO]:  
[19:09:05] [Server thread/INFO]: =============================
[19:09:05] [Server thread/INFO]: Vouchers v3.19.0 by Tweetzy
[19:09:05] [Server thread/INFO]: Developer: Kiran Hart
[19:09:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: vouchers [1.0.0]
[19:09:06] [Server thread/INFO]: [FlightCore] Enabling metrics for Vouchers
[19:09:06] [Server thread/INFO]: =============================
[19:09:06] [Server thread/INFO]:  
[19:09:06] [Server thread/INFO]: [StackMob] Enabling StackMob v5.8.8
[19:09:06] [Server thread/INFO]: [StackMob] StackMob v5.8.8 by antiPerson and contributors.
[19:09:06] [Server thread/INFO]: [StackMob] GitHub: https://github.com/Nathat23/StackMob-5 Discord: https://discord.gg/fz9xzuB
[19:09:06] [Server thread/INFO]: [StackMob] Loading config files...
[19:09:06] [Server thread/INFO]: [StackMob] Registering hooks and trait checks...
[19:09:06] [Server thread/INFO]: [StackMob] Registering events, commands and tasks...
[19:09:06] [Server thread/INFO]: [StackMob] Detected CraftBukkit NMS version V1_20_R2
[19:09:06] [Server thread/INFO]: [HeadBlocks] Enabling HeadBlocks v2.4.0
[19:09:06] [Server thread/INFO]: HeadBlocks initializing...
[19:09:06] [ForkJoinPool.commonPool-worker-1/INFO]: [StackMob] No update is currently available.
[19:09:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: headblocks [1.0.0]
[19:09:06] [Server thread/INFO]: SQLite storage properly connected!
[19:09:06] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[19:09:06] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[19:09:06] [Server thread/INFO]: Loaded 6 (+0 HeadDatabase heads) configuration heads!
[19:09:06] [Server thread/INFO]: Loaded 0 locations!
[19:09:06] [Server thread/INFO]: HeadBlocks successfully loaded!
[19:09:06] [Server thread/INFO]: [Images] Enabling Images v2.3.1
[19:09:06] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[19:09:06] [Server thread/INFO]: [GSit] Enabling GSit v1.6.0
[19:09:06] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[19:09:06] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[19:09:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.6.0]
[19:09:06] [Server thread/INFO]: [GSit] Link with PlotSquared successful!
[19:09:06] [Server thread/INFO]: [GSit] Link with ViaVersion successful!
[19:09:06] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[19:09:06] [Server thread/INFO]: [BoomBox] Enabling BoomBox v2.0
[19:09:07] [Server thread/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[19:09:07] [Server thread/INFO]: [BoomBox]  - VAULT ENABLED
[19:09:07] [Server thread/INFO]: [GiveAll] Enabling GiveAll v1.0.3*
[19:09:07] [Server thread/INFO]: [Lazino-Nametags] Enabling Lazino-Nametags v1.0
[19:09:07] [Server thread/INFO]: NameTags wurde Aktiviert --> von @asna
[19:09:07] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.11
[19:09:07] [Server thread/INFO]: [BetterRTP] Cooldown = 40
[19:09:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.11]
[19:09:07] [Server thread/INFO]: [HeadDB] Enabling HeadDB v5.0.0-rc.8
[19:09:07] [Server thread/INFO]: [HeadDB] Loading HeadDB - 5.0.0-rc.8
[19:09:07] [Server thread/INFO]: [HeadDB] Loaded 1 languages!
[19:09:07] [Server thread/INFO]: [HeadDB] Done!
[19:09:07] [Server thread/WARN]: Could not register alias Crates because it contains commands that do not exist: warp crates
[19:09:07] [Server thread/WARN]: Could not register alias Kisten because it contains commands that do not exist: warp crates
[19:09:07] [Server thread/WARN]: Could not register alias event because it contains commands that do not exist: warp testevent
[19:09:07] [Server thread/WARN]: Could not register alias testevent because it contains commands that do not exist: warp testevent
[19:09:07] [helper-scheduler-2/WARN]: [HeadDB] There is a new update available for HeadDB on spigot!
[19:09:07] [helper-scheduler-2/WARN]: [HeadDB] Download: https://www.spigotmc.org/resources/84967
[19:09:08] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] 
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.2.0-SNAPSHOT (git-master-cdb8ab3)
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] 
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Skipping particle mapping BLOCK_MARKER because no Bedrock equivalent exists.
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Skipping particle mapping GUST because no Bedrock equivalent exists.
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Skipping particle mapping GUST_DUST because no Bedrock equivalent exists.
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Skipping particle mapping GUST_EMITTER because no Bedrock equivalent exists.
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Skipping particle mapping TRIAL_SPAWNER_DETECTION because no Bedrock equivalent exists.
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockToggleCrafterSlotRequestTranslator : ToggleCrafterSlotRequestPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaMoveEntityRotTranslator : ClientboundMoveEntityRotPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.title.JavaClearTitlesTranslator : ClientboundClearTitlesPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaStopSoundTranslator : ClientboundStopSoundPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.player.JavaPlayerPositionTranslator : ClientboundPlayerPositionPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaSoundEntityTranslator : ClientboundSoundEntityPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.title.JavaSetTitlesAnimationTranslator : ClientboundSetTitlesAnimationPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.border.JavaInitializeBorderTranslator : ClientboundInitializeBorderPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockLecternUpdateTranslator : LecternUpdatePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.spawn.JavaAddExperienceOrbTranslator : ClientboundAddExperienceOrbPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaPlayerChatTranslator : ClientboundPlayerChatPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaRemoveMobEffectTranslator : ClientboundRemoveMobEffectPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.scoreboard.JavaResetScorePacket : ClientboundResetScorePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockEntityPickRequestTranslator : EntityPickRequestPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockItemStackRequestTranslator : ItemStackRequestPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockRequestAbilityTranslator : RequestAbilityPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaCooldownTranslator : ClientboundCooldownPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.entity.player.BedrockMovePlayerTranslator : MovePlayerPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaForgetLevelChunkTranslator : ClientboundForgetLevelChunkPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.inventory.JavaContainerCloseTranslator : ClientboundContainerClosePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaSetEntityLinkTranslator : ClientboundSetEntityLinkPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaRotateHeadTranslator : ClientboundRotateHeadPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockMapInfoRequestTranslator : MapInfoRequestPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockAnimateTranslator : AnimatePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.world.BedrockLevelSoundEventTranslator : LevelSoundEventPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockTextTranslator : TextPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaSoundTranslator : ClientboundSoundPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaSystemChatTranslator : ClientboundSystemChatPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockFilterTextTranslator : FilterTextPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.spawn.JavaAddEntityTranslator : ClientboundAddEntityPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.inventory.JavaMerchantOffersTranslator : ClientboundMerchantOffersPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.scoreboard.JavaSetObjectiveTranslator : ClientboundSetObjectivePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaTakeItemEntityTranslator : ClientboundTakeItemEntityPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.player.JavaPlayerLookAtTranslator : ClientboundPlayerLookAtPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaSetDefaultSpawnPositionTranslator : ClientboundSetDefaultSpawnPositionPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.scoreboard.JavaSetPlayerTeamTranslator : ClientboundSetPlayerTeamPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaBlockEventTranslator : ClientboundBlockEventPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaUpdateAdvancementsTranslator : ClientboundUpdateAdvancementsPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaBossEventTranslator : ClientboundBossEventPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.title.JavaSetSubtitleTextTranslator : ClientboundSetSubtitleTextPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.player.JavaBlockChangedAckTranslator : ClientboundBlockChangedAckPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaAwardStatsTranslator : ClientboundAwardStatsPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockServerSettingsRequestTranslator : ServerSettingsRequestPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaPingTranslator : ClientboundPingPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaCommandsTranslator : ClientboundCommandsPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.entity.player.BedrockSetPlayerInventoryOptionsTranslator : SetPlayerInventoryOptionsPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.entity.BedrockEntityEventTranslator : EntityEventPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaUpdateAttributesTranslator : ClientboundUpdateAttributesPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.entity.player.BedrockActionTranslator : PlayerActionPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockMoveEntityAbsoluteTranslator : MoveEntityAbsolutePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.inventory.JavaContainerSetDataTranslator : ClientboundContainerSetDataPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockSetLocalPlayerAsInitializedTranslator : SetLocalPlayerAsInitializedPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaLevelChunkWithLightTranslator : ClientboundLevelChunkWithLightPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaTeleportEntityTranslator : ClientboundTeleportEntityPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaMapItemDataTranslator : ClientboundMapItemDataPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockPositionTrackingDBClientRequestTranslator : PositionTrackingDBClientRequestPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaRespawnTranslator : ClientboundRespawnPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaUpdateRecipesTranslator : ClientboundUpdateRecipesPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockShowCreditsTranslator : ShowCreditsPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.player.JavaPlayerInfoRemoveTranslator : ClientboundPlayerInfoRemovePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.entity.player.BedrockRiderJumpTranslator : RiderJumpPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.player.JavaPlayerAbilitiesTranslator : ClientboundPlayerAbilitiesPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaKeepAliveTranslator : ClientboundKeepAlivePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaSetChunkCacheRadiusTranslator : ClientboundSetChunkCacheRadiusPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.entity.player.BedrockSetDefaultGameTypeTranslator : SetDefaultGameTypePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockItemFrameDropItemTranslator : ItemFrameDropItemPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.entity.player.BedrockRequestPermissionsPacket : RequestPermissionsPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.inventory.JavaContainerSetSlotTranslator : ClientboundContainerSetSlotPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.inventory.JavaHorseScreenOpenTranslator : ClientboundHorseScreenOpenPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaUpdateTagsTranslator : ClientboundUpdateTagsPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaChangeDifficultyTranslator : ClientboundChangeDifficultyPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockInventoryTransactionTranslator : InventoryTransactionPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaGameEventTranslator : ClientboundGameEventPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaDisguisedChatTranslator : ClientboundDisguisedChatPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.border.JavaSetBorderSizeTranslator : ClientboundSetBorderSizePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.title.JavaSetActionBarTextTranslator : ClientboundSetActionBarTextPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaSetEntityMotionTranslator : ClientboundSetEntityMotionPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaChunkBatchFinishedTranslator : ClientboundChunkBatchFinishedPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.entity.player.BedrockEmoteTranslator : EmotePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.player.JavaSetCarriedItemTranslator : ClientboundSetCarriedItemPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaUpdateMobEffectTranslator : ClientboundUpdateMobEffectPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.player.JavaSetHealthTranslator : ClientboundSetHealthPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.border.JavaSetBorderLerpSizeTranslator : ClientboundSetBorderLerpSizePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.border.JavaSetBorderCenterTranslator : ClientboundSetBorderCenterPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaRemoveEntitiesTranslator : ClientboundRemoveEntitiesPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockCommandBlockUpdateTranslator : CommandBlockUpdatePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaMoveEntityPosRotTranslator : ClientboundMoveEntityPosRotPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockCommandRequestTranslator : CommandRequestPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaSetChunkCacheCenterTranslator : ClientboundSetChunkCacheCenterPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaLevelEventTranslator : ClientboundLevelEventPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockContainerCloseTranslator : ContainerClosePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockBlockEntityDataTranslator : BlockEntityDataPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaSetEntityDataTranslator : ClientboundSetEntityDataPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockBookEditTranslator : BookEditPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.border.JavaSetBorderWarningDistanceTranslator : ClientboundSetBorderWarningDistancePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaBlockEntityDataTranslator : ClientboundBlockEntityDataPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.border.JavaSetBorderWarningDelayTranslator : ClientboundSetBorderWarningDelayPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockPlayerInputTranslator : PlayerInputPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaDisconnectTranslator : ClientboundDisconnectPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.title.JavaSetTitleTextTranslator : ClientboundSetTitleTextPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.player.JavaPlayerCombatKillTranslator : ClientboundPlayerCombatKillPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaSectionBlocksUpdateTranslator : ClientboundSectionBlocksUpdatePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaSetPassengersTranslator : ClientboundSetPassengersPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.scoreboard.JavaSetScoreTranslator : ClientboundSetScorePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockRequestChunkRadiusTranslator : RequestChunkRadiusPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaCustomPayloadTranslator : ClientboundCustomPayloadPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.player.JavaSetExperienceTranslator : ClientboundSetExperiencePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.inventory.JavaContainerSetContentTranslator : ClientboundContainerSetContentPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.entity.player.BedrockSetDifficultyTranslator : SetDifficultyPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaMoveEntityPosTranslator : ClientboundMoveEntityPosPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaClientboundResourcePackPushPacket : ClientboundResourcePackPushPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaMoveVehicleTranslator : ClientboundMoveVehiclePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaCustomQueryTranslator : ClientboundCustomQueryPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.entity.player.BedrockSetPlayerGameTypeTranslator : SetPlayerGameTypePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaEntityEventTranslator : ClientboundEntityEventPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaLoginTranslator : ClientboundLoginPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockMobEquipmentTranslator : MobEquipmentPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockNetworkStackLatencyTranslator : NetworkStackLatencyPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaBlockDestructionTranslator : ClientboundBlockDestructionPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaLoginDisconnectTranslator : ClientboundLoginDisconnectPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockRespawnTranslator : RespawnPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaDamageEventTranslator : ClientboundDamageEventPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaBlockUpdateTranslator : ClientboundBlockUpdatePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaSetTimeTranslator : ClientboundSetTimePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaSetEquipmentTranslator : ClientboundSetEquipmentPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.player.JavaPlayerInfoUpdateTranslator : ClientboundPlayerInfoUpdatePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockPacketViolationWarningTranslator : PacketViolationWarningPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockEmoteListTranslator : EmoteListPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaExplodeTranslator : ClientboundExplodePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaOpenSignEditorTranslator : ClientboundOpenSignEditorPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaGameProfileTranslator : ClientboundGameProfilePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.inventory.JavaOpenScreenTranslator : ClientboundOpenScreenPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaSelectAdvancementsTabTranslator : ClientboundSelectAdvancementsTabPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.entity.player.BedrockInteractTranslator : InteractPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaRegistryDataTranslator : ClientboundRegistryDataPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.entity.JavaAnimateTranslator : ClientboundAnimatePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.scoreboard.JavaSetDisplayObjectiveTranslator : ClientboundSetDisplayObjectivePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.bedrock.BedrockBlockPickRequestTranslator : BlockPickRequestPacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.JavaClientboundRecipesTranslator : ClientboundRecipePacket
[19:09:08] [Server thread/INFO]: [Geyser-Spigot] Found annotated translator: org.geysermc.geyser.translator.protocol.java.level.JavaLevelParticlesTranslator : ClientboundLevelParticlesPacket
[19:09:09] [Server thread/INFO]: [Geyser-Spigot] Found annotated collision translator: org.geysermc.geyser.translator.collision.DirtPathCollision
[19:09:09] [Server thread/INFO]: [Geyser-Spigot] Found annotated collision translator: org.geysermc.geyser.translator.collision.TrapdoorCollision
[19:09:09] [Server thread/INFO]: [Geyser-Spigot] Found annotated collision translator: org.geysermc.geyser.translator.collision.DoorCollision
[19:09:09] [Server thread/INFO]: [Geyser-Spigot] Found annotated collision translator: org.geysermc.geyser.translator.collision.GlassPaneAndIronBarsCollision
[19:09:09] [Server thread/INFO]: [Geyser-Spigot] Found annotated collision translator: org.geysermc.geyser.translator.collision.SolidCollision
[19:09:09] [Server thread/INFO]: [Geyser-Spigot] Found annotated collision translator: org.geysermc.geyser.translator.collision.ScaffoldingCollision
[19:09:09] [Server thread/INFO]: [Geyser-Spigot] Found annotated collision translator: org.geysermc.geyser.translator.collision.SnowCollision
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Adding minecraft:bundle as an item that needs to be translated.
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Adding minecraft:spectral_arrow as an item that needs to be translated.
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Adding minecraft:tipped_arrow as an item that needs to be translated.
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Adding minecraft:knowledge_book as an item that needs to be translated.
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Adding minecraft:debug_stick as an item that needs to be translated.
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Adding minecraft:bundle as an item that needs to be translated.
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Adding minecraft:spectral_arrow as an item that needs to be translated.
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Adding minecraft:tipped_arrow as an item that needs to be translated.
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Adding minecraft:knowledge_book as an item that needs to be translated.
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Adding minecraft:debug_stick as an item that needs to be translated.
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=597, componentBased=false), damage=7, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=597, componentBased=false), damage=3, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=597, componentBased=false), damage=6, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=597, componentBased=false), damage=1, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=597, componentBased=false), damage=5, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=597, componentBased=false), damage=4, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=597, componentBased=false), damage=8, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=597, componentBased=false), damage=2, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=597, componentBased=false), damage=2, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=597, componentBased=false), damage=2, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=597, componentBased=false), damage=2, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=597, componentBased=false), damage=9, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=598, componentBased=false), damage=7, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=598, componentBased=false), damage=3, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=598, componentBased=false), damage=6, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=598, componentBased=false), damage=1, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=598, componentBased=false), damage=5, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=598, componentBased=false), damage=4, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=598, componentBased=false), damage=8, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=598, componentBased=false), damage=2, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=598, componentBased=false), damage=2, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=598, componentBased=false), damage=2, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=598, componentBased=false), damage=2, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:10] [Server thread/INFO]: [Geyser-Spigot] Missing mapping for bedrock item BaseItemData(definition=SimpleItemDefinition(identifier=minecraft:suspicious_stew, runtimeId=598, componentBased=false), damage=9, count=1, tag=null, canPlace=[], canBreak=[], blockingTicks=0, blockDefinition=null, usingNetId=false, netId=0)
[19:09:11] [Server thread/INFO]: [Geyser-Spigot] Auto-loaded Floodgate key
[19:09:11] [Server thread/INFO]: [Geyser-Spigot] Auto-setting to Floodgate authentication.
[19:09:11] [Server thread/INFO]: [Geyser-Spigot] EventLoop type: class io.netty.channel.epoll.EpollDatagramChannel
[19:09:11] [Server thread/INFO]: [Geyser-Spigot] Setting MTU to 1400
[19:09:11] [Server thread/INFO]: [Geyser-Spigot] Started Geyser on 45.132.91.221:25565
[19:09:11] [Server thread/INFO]: [Geyser-Spigot] Loaded Floodgate key!
[19:09:11] [Server thread/INFO]: [Geyser-Spigot] Done (3.144s)! Run /geyser help for help!
[19:09:11] [Server thread/INFO]: [Geyser-Spigot] Spigot ping passthrough type: class org.geysermc.geyser.platform.spigot.GeyserPaperPingPassthrough
[19:09:11] [Server thread/INFO]: [Geyser-Spigot] The handler floodgate-init isn't a ChannelInitializer. THIS ERROR IS SAFE TO IGNORE!
[19:09:11] [Server thread/WARN]: java.lang.NoSuchFieldException: childHandler
[19:09:11] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2610)
[19:09:11] [Server thread/WARN]:     at Geyser-Spigot (5).jar//org.geysermc.geyser.platform.spigot.GeyserSpigotInjector.getChildHandler(GeyserSpigotInjector.java:148)
[19:09:11] [Server thread/WARN]:     at Geyser-Spigot (5).jar//org.geysermc.geyser.platform.spigot.GeyserSpigotInjector.initializeLocalChannel0(GeyserSpigotInjector.java:110)
[19:09:11] [Server thread/WARN]:     at Geyser-Spigot (5).jar//org.geysermc.geyser.network.netty.GeyserInjector.initializeLocalChannel(GeyserInjector.java:64)
[19:09:11] [Server thread/WARN]:     at Geyser-Spigot (5).jar//org.geysermc.geyser.platform.spigot.GeyserSpigotPlugin.postStartup(GeyserSpigotPlugin.java:258)
[19:09:11] [Server thread/WARN]:     at Geyser-Spigot (5).jar//org.geysermc.geyser.platform.spigot.GeyserSpigotPlugin$1.onServerLoaded(GeyserSpigotPlugin.java:191)
[19:09:11] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40)
[19:09:11] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[19:09:11] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[19:09:11] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[19:09:11] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[19:09:11] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[19:09:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:628)
[19:09:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424)
[19:09:11] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[19:09:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1086)
[19:09:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[19:09:11] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[19:09:11] [Server thread/INFO]: [Geyser-Spigot] The handler InjectionChannelInitializer#0 isn't a ChannelInitializer. THIS ERROR IS SAFE TO IGNORE!
[19:09:11] [Server thread/WARN]: java.lang.NoSuchFieldException: childHandler
[19:09:11] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2610)
[19:09:11] [Server thread/WARN]:     at Geyser-Spigot (5).jar//org.geysermc.geyser.platform.spigot.GeyserSpigotInjector.getChildHandler(GeyserSpigotInjector.java:148)
[19:09:11] [Server thread/WARN]:     at Geyser-Spigot (5).jar//org.geysermc.geyser.platform.spigot.GeyserSpigotInjector.initializeLocalChannel0(GeyserSpigotInjector.java:110)
[19:09:11] [Server thread/WARN]:     at Geyser-Spigot (5).jar//org.geysermc.geyser.network.netty.GeyserInjector.initializeLocalChannel(GeyserInjector.java:64)
[19:09:11] [Server thread/WARN]:     at Geyser-Spigot (5).jar//org.geysermc.geyser.platform.spigot.GeyserSpigotPlugin.postStartup(GeyserSpigotPlugin.java:258)
[19:09:11] [Server thread/WARN]:     at Geyser-Spigot (5).jar//org.geysermc.geyser.platform.spigot.GeyserSpigotPlugin$1.onServerLoaded(GeyserSpigotPlugin.java:191)
[19:09:11] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40)
[19:09:11] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[19:09:11] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[19:09:11] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[19:09:11] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[19:09:11] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[19:09:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:628)
[19:09:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424)
[19:09:11] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[19:09:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1086)
[19:09:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[19:09:11] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[19:09:11] [Server thread/INFO]: [Geyser-Spigot] Local injection succeeded!
[19:09:11] [ForkJoinPool.commonPool-worker-3/INFO]: [Geyser-Spigot] {"client":{"sha1":"fd19469fed4a4b4c15b2d5133985f0e3e7816a8a","size":24445539,"url":"https://piston-data.mojang.com/v1/objects/fd19469fed4a4b4c15b2d5133985f0e3e7816a8a/client.jar"},"client_mappings":{"sha1":"be76ecc174ea25580bdc9bf335481a5192d9f3b7","size":8897012,"url":"https://piston-data.mojang.com/v1/objects/be76ecc174ea25580bdc9bf335481a5192d9f3b7/client.txt"},"server":{"sha1":"8dd1a28015f51b1803213892b50b7b4fc76e594d","size":49150256,"url":"https://piston-data.mojang.com/v1/objects/8dd1a28015f51b1803213892b50b7b4fc76e594d/server.jar"},"server_mappings":{"sha1":"c1cafe916dd8b58ed1fe0564fc8f786885224e62","size":6797462,"url":"https://piston-data.mojang.com/v1/objects/c1cafe916dd8b58ed1fe0564fc8f786885224e62/server.txt"}}
[19:09:11] [ForkJoinPool.commonPool-worker-3/INFO]: [Geyser-Spigot] {"sha1":"fd19469fed4a4b4c15b2d5133985f0e3e7816a8a","size":24445539,"url":"https://piston-data.mojang.com/v1/objects/fd19469fed4a4b4c15b2d5133985f0e3e7816a8a/client.jar"}
[19:09:11] [Server thread/INFO]: [Geyser-Spigot] Using NMS adapter: class org.geysermc.geyser.platform.spigot.world.manager.GeyserSpigotLegacyNativeWorldManager, v1_20_R2
[19:09:11] [ForkJoinPool.commonPool-worker-3/INFO]: [Geyser-Spigot] Downloading and loading locale: en_us
[19:09:11] [Server thread/INFO]: [Geyser-Spigot] Brigadier supported? true
[19:09:11] [Server thread/INFO]: [Geyser-Spigot] Successfully registered AsyncPlayerSendCommandsEvent listener.
[19:09:11] [Server thread/INFO]: Running delayed init tasks
[19:09:11] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[19:09:11] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[19:09:11] [Craft Scheduler Thread - 4 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[19:09:11] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.plotsquared.PlotSquaredFeature] Optimizing PlotSquared
[19:09:11] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Plugin 'PlotSquared' v7 found. Using it now.
[19:09:11] [Craft Scheduler Thread - 5 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] There appears to be a PlotSquared update available!
[19:09:11] [Craft Scheduler Thread - 5 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] You are running version 7.2.1-Premium, the latest version is 7.3.0
[19:09:11] [Craft Scheduler Thread - 5 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] https://www.spigotmc.org/resources/77506/updates
[19:09:11] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[19:09:11] [Craft Scheduler Thread - 14 - PinataParty/INFO]: [PinataParty] v2.63.8 is available! You are running v2.63.7!
[19:09:11] [Craft Scheduler Thread - 14 - PinataParty/INFO]: [PinataParty] Download it here: https://www.spigotmc.org/resources/59318/
[19:09:12] [Craft Scheduler Thread - 7 - Booster/INFO]: Lazino |  Keine Updates vorhanden!
[19:09:12] [Craft Scheduler Thread - 11 - TradeSystem/INFO]: [TradeSystem] Database was started successfully.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective BLOCK_BREAK.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective BLOCK_PLACE.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective ITEM_CRAFT.
[19:09:12] [Craft Scheduler Thread - 25 - Vault/INFO]: [Vault] Checking for Updates ... 
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective PLAYER_KILLS.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective MOB_KILLS.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective PLAYER_FISH.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective PLAYTIME.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective POTION_BREW.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective CHATREACTION_WINS.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective EZPRESTIGE_PRESTIGE.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective CRAZYCRATES_OPEN.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective NUVOTIFIER_VOTES using Votifier plugin.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective NUVOTIFIER_VOTES.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective CRACKSHOT_DAMAGE.
[19:09:12] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loaded 6 holograms!
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective CRAZYENVOY_OPEN.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective CLUESCROLLS_CLUE_COMPLETE.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective CLUESCROLLS_SCROLL_COMPLETE.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective DUELS_WINS.
[19:09:12] [Craft Scheduler Thread - 12 - UltraCosmetics/INFO]: [UltraCosmetics] You are running the latest version on Spigot.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective MYTHICMOBS_KILLS.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective RANDOMEVENTS_WINS.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective BEDWARS1058_BED_BREAK.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective BEDWARS1058_KILLS.
[19:09:12] [Craft Scheduler Thread - 19 - DailyRewards/INFO]: [DailyRewards] You are running the latest release (1.8.7)
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective BEDWARS1058_FINAL_KILLS.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective BEDWARS1058_LEVEL_UP.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective BEDWARS1058_WINS.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective PLACEHOLDERAPI using PlaceholderAPI plugin.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective PLACEHOLDERAPI.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective GOLDENCRATES_OPEN.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective ESSENTIALS_BALANCE_RECEIVE.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective ESSENTIALS_BALANCE_SPEND.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective EXCELLENTCRATES_OPEN.
[19:09:12] [Server thread/INFO]: [XLTournaments] Registered external objective XPRISON_RANKUP.
[19:09:12] [Server thread/INFO]: [XLTournaments] Loaded 10 tournament objectives (PLACEHOLDERAPI, PLAYTIME, POTION_BREW, PLAYER_FISH, BLOCK_BREAK, MOB_KILLS, NUVOTIFIER_VOTES, ITEM_CRAFT, BLOCK_PLACE, PLAYER_KILLS).
[19:09:12] [Server thread/INFO]: [XLTournaments] Loaded 'grass' tournament.
[19:09:12] [Server thread/INFO]: [XLTournaments] Loaded 'stone' tournament.
[19:09:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: xltournaments [3.15.5]
[19:09:12] [Craft Scheduler Thread - 25 - Vault/INFO]: [Vault] No new version available
[19:09:12] [Craft Scheduler Thread - 16 - EconomyShopGUI-Premium/INFO]: [EconomyShopGUI-Premium] [INFO]: Es ist ein Update f?r EconomyShopGUI verf?gbar, du verwendest die Version 5.3.3. Neuste Version: 5.5.4.
[19:09:12] [Craft Scheduler Thread - 16 - EconomyShopGUI-Premium/INFO]: [EconomyShopGUI-Premium] [INFO]: Download using command /eshop update
[19:09:12] [Server thread/INFO]: [BPS Free] Successfully enabled v4.0.19
[19:09:12] [Server thread/INFO]: --------------------------------------------------------------------------------------
[19:09:12] [Server thread/INFO]:          Developed by Ruben_Artz
[19:09:12] [Server thread/INFO]: [BPS Free] Version: 4.0.19 is loading... (Current)
[19:09:12] [Server thread/INFO]: [BPS Free] Server: git-Paper-245 (MC: 1.20.2)
[19:09:12] [Server thread/INFO]: [BPS Free] Loading necessary files...
[19:09:12] [Server thread/INFO]: 
[19:09:12] [Server thread/INFO]: BPS Free [Loader] Loaded archive 'config.yml'
[19:09:12] [Server thread/INFO]: BPS Free Starting plugin...
[19:09:12] [Server thread/INFO]: 
[19:09:12] [Server thread/INFO]: [BPS Free] PlaceholderAPI found correctly.
[19:09:12] [Server thread/INFO]: [BPS Free] ProtocolLib found correctly.
[19:09:12] [Server thread/INFO]: 
[19:09:12] [Server thread/INFO]: --------------------------------------------------------------------------------------
[19:09:12] [Server thread/INFO]: [DeluxeCoinflip] Found and using VAULT economy provider(s).
[19:09:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[19:09:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[19:09:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.7]
[19:09:12] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[19:09:12] [Server thread/INFO]: 3 placeholder hook(s) registered!
[19:09:13] [Server thread/INFO]: [Citizens] Loaded 16 NPCs.
[19:09:13] [Server thread/INFO]: [PicoJobs] 4 economy implementations successfully registered!
[19:09:13] [Server thread/INFO]: Done (69.021s)! For help, type "help"
[19:09:13] [Server thread/INFO]: Timings Reset
[19:09:14] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:09:14] [Server thread/INFO]: Yabami_Arda (/77.6.17.242:63791) lost connection: Disconnected
[19:09:15] [Server thread/INFO]: Created team [ACdontTouch]
[19:09:15] [Server thread/INFO]: Collision rule for team [ACdontTouch] is now "Never"
[19:09:15] [Server thread/INFO]: [AdvancedItems] Successfully hooked into WorldGuard, PlaceholderAPI.
[19:09:15] [Craft Scheduler Thread - 9 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:09:16] [Craft Scheduler Thread - 9 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:09:17] [Server thread/WARN]: You are using the latest version of the plugin.
[19:09:17] [Craft Scheduler Thread - 15 - Images/INFO]: [Images] Loaded 0 images...
[19:09:19] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:09:19] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5137ms or 102 ticks behind
[19:09:21] [Craft Scheduler Thread - 13 - ServerSystem/INFO]: [Info] [ServerSystem] >> You are using the latest version of ServerSystem <3
[19:09:24] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:09:29] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:09:34] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:09:39] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:09:43] [Thread-57/INFO]: [Geyser-Spigot] Scoreboard updater: took 4 ms. Updated 0 players
[19:09:44] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:09:48] [Thread-57/INFO]: [Geyser-Spigot] Scoreboard updater: took 1 ms. Updated 0 players
[19:09:49] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:09:51] [Thread-57/INFO]: [Geyser-Spigot] Scoreboard updater: took 1 ms. Updated 0 players
[19:09:52] [Thread-57/INFO]: [Geyser-Spigot] Scoreboard updater: took 1 ms. Updated 0 players
[19:09:54] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:09:57] [Thread-57/INFO]: [Geyser-Spigot] Scoreboard updater: took 1 ms. Updated 0 players
[19:09:59] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:10:04] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:10:09] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:10:14] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:10:19] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:10:24] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:10:29] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:10:34] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:10:39] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:10:44] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:10:49] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:10:54] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:10:56] [Thread-57/INFO]: [Geyser-Spigot] Scoreboard updater: took 1 ms. Updated 0 players
[19:10:57] [Thread-57/INFO]: [Geyser-Spigot] Scoreboard updater: took 1 ms. Updated 0 players
[19:10:59] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:10:59] [Server thread/INFO]: Yabami_Arda (/77.6.17.242:64169) lost connection: Disconnected
[19:11:04] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:11:07] [Thread-57/INFO]: [Geyser-Spigot] Scoreboard updater: took 1 ms. Updated 0 players
[19:11:09] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:11:14] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /94.31.106.16:41376 has pinged you!
[19:11:17] [Craft Scheduler Thread - 40 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:11:17] [Craft Scheduler Thread - 40 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:11:18] [Server thread/INFO]: Lazino Bei der VPN Abfrage ist ein Fehler aufgetreten: Server returned HTTP response code: 403 for URL: https://vpnapi.io/api/77.6.17.242
[19:11:18] [Server thread/INFO]: Lazino Versuche, falls noch nicht vorhanden, einen API Code f?r die VPN Api einzutragen indem du auf der se