Paste #113982: ya

Date: 2023/08/16 12:50:08 UTC-07: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
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381


[21:45:55] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[21:45:59] [ServerMain/INFO]: Loaded 7 recipes
[21:45:59] [ServerMain/ERROR]: Couldn't load tag incendium:load as it is missing following references: incendium:load (from file/Incendium_1.20_5.3.0.zip)
[21:45:59] [ServerMain/ERROR]: Couldn't load tag load:load as it is missing following references: #incendium:load (from file/Incendium_1.20_5.3.0.zip)
[21:45:59] [Server thread/INFO]: Starting minecraft server version 1.20.1
[21:45:59] [Server thread/INFO]: Loading properties
[21:46:00] [Server thread/INFO]: This server is running Paper version git-Paper-128 (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT) (Git: 47b805f)
[21:46:00] [Server thread/INFO]: Server Ping Player Sample Count: 12
[21:46:00] [Server thread/INFO]: Using 4 threads for Netty based IO
[21:46:00] [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
[21:46:00] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
[21:46:00] [Server thread/INFO]: Default game type: SURVIVAL
[21:46:00] [Server thread/INFO]: Generating keypair
[21:46:00] [Server thread/INFO]: Starting Minecraft server on 46.253.113.234:25565
[21:46:00] [Server thread/INFO]: Using epoll channel type
[21:46:00] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[21:46:00] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/kd10139/server/AvarisMC/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/kd10139/server/AvarisMC/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/kd10139/server/AvarisMC/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loading 2 libraries... please wait
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loaded library /home/kd10139/server/AvarisMC/libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loaded library /home/kd10139/server/AvarisMC/libraries/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loaded library /home/kd10139/server/AvarisMC/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loading 4 libraries... please wait
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/kd10139/server/AvarisMC/libraries/org/springframework/spring-expression/6.0.6/spring-expression-6.0.6.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/kd10139/server/AvarisMC/libraries/org/springframework/spring-core/6.0.6/spring-core-6.0.6.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/kd10139/server/AvarisMC/libraries/org/springframework/spring-jcl/6.0.6/spring-jcl-6.0.6.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/kd10139/server/AvarisMC/libraries/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/kd10139/server/AvarisMC/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/kd10139/server/AvarisMC/libraries/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/kd10139/server/AvarisMC/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/kd10139/server/AvarisMC/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/kd10139/server/AvarisMC/libraries/dev/jorel/commandapi-bukkit-shade/9.0.3/commandapi-bukkit-shade-9.0.3.jar
[21:46:02] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/kd10139/server/AvarisMC/libraries/org/joml/joml/1.10.5/joml-1.10.5.jar
[21:46:02] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[21:46:06] [Server thread/WARN]: Legacy plugin skript-npc v0.1.2 does not specify an api-version.
[21:46:06] [Server thread/WARN]: Legacy plugin SkAction v2.2 does not specify an api-version.
[21:46:06] [Server thread/WARN]: Legacy plugin skUtilities v0.9.2 does not specify an api-version.
[21:46:06] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[21:46:06] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/kd10139/server/AvarisMC/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[21:46:06] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/kd10139/server/AvarisMC/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[21:46:06] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/kd10139/server/AvarisMC/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[21:46:06] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/kd10139/server/AvarisMC/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[21:46:06] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/kd10139/server/AvarisMC/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[21:46:06] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/kd10139/server/AvarisMC/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[21:46:06] [Server thread/WARN]: Legacy plugin SkMorkaz v0.21 does not specify an api-version.
[21:46:06] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.7.1-SNAPSHOT
[21:46:06] [Server thread/INFO]: [ViaVersion] ViaVersion 4.7.1-SNAPSHOT is now loaded. Registering protocol transformers and injecting...
[21:46:06] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[21:46:06] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.40
[21:46:07] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[21:46:07] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[21:46:07] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[21:46:07] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.2.15+6463-5ca4dff
[21:46:09] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@6a96f5bc]
[21:46:09] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.0.0-SNAPSHOT-638
[21:46:09] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.20.1) has not yet been tested! Proceed with caution.
[21:46:10] [Server thread/INFO]: [AdvancedHelp] Loading server plugin AdvancedHelp v1.12.7
[21:46:10] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[21:46:10] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.3
[21:46:10] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[21:46:10] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.0-dev+66-dd3f4c2
[21:46:10] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.6.4
[21:46:10] [Server thread/INFO]: [AureliumSkills] Loading server plugin AureliumSkills vBeta 1.3.21
[21:46:10] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v21.3
[21:46:10] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.11.3
[21:46:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[21:46:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[21:46:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[21:46:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'ViaVersion' to create a bStats instance!
[21:46:10] [Server thread/INFO]: [LWC] Loading server plugin LWC v2.3.0
[21:46:10] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.32-SNAPSHOT (build 3188)
[21:46:10] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[21:46:10] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[21:46:10] [Server thread/INFO]: [SCore] Loading server plugin SCore v4.23.8.15
[21:46:10] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.2-SNAPSHOT (b59-2278589)
[21:46:10] [Thread-12/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[21:46:11] [Server thread/INFO]: [floodgate] Floodgate wurde in 554 ms gestartet
[21:46:11] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.1
[21:46:11] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.11
[21:46:11] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.20.0-dev+66-dd3f4c2
[21:46:11] [Server thread/INFO]: [SkBee] Loading server plugin SkBee v2.16.1
[21:46:11] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.2.1-b834
[21:46:11] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v13.6.3
[21:46:11] [Server thread/INFO]: [Oraxen] Loading server plugin Oraxen v1.160.0
[21:46:11] [Server thread/INFO]: [LWCTrust] Loading server plugin LWCTrust v1.0.6
[21:46:11] [Server thread/INFO]: [EssentialsSelectors] Loading server plugin EssentialsSelectors v1.7.1
[21:46:11] [Server thread/INFO]: [Booster] Loading server plugin Booster v8.7
[21:46:11] [Server thread/INFO]: [BeautyQuests] Loading server plugin BeautyQuests v0.20.1
[21:46:11] [Server thread/INFO]: [CookieClicker] Loading server plugin CookieClicker v4.5
[21:46:11] [Server thread/INFO]: [OpenInv] Loading server plugin OpenInv v4.3.1
[21:46:11] [Server thread/INFO]: [BringEvent] Loading server plugin BringEvent v1.0
[21:46:11] [Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.28
[21:46:11] [Server thread/INFO]: [InvisibleItemFrames] Loading server plugin InvisibleItemFrames v1.3
[21:46:11] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v3.5
[21:46:11] [Server thread/INFO]: [FarmLimiter] Loading server plugin FarmLimiter v1.5.3
[21:46:11] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v6.23.8.15
[21:46:11] [Server thread/INFO]: [ArmorStandTools] Loading server plugin ArmorStandTools v4.4.4
[21:46:11] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[21:46:11] [Server thread/INFO]: [skript-npc] Loading server plugin skript-npc v0.1.2
[21:46:11] [Server thread/INFO]: [Skulls] Loading server plugin Skulls v3.9.1
[21:46:11] [Server thread/INFO]: [NametagEdit] Loading server plugin NametagEdit v4.5.20
[21:46:11] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.4.0
[21:46:11] [Server thread/INFO]: [DailyRewardsPlus] Loading server plugin DailyRewardsPlus v1.3.0.5
[21:46:11] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.10
[21:46:11] [Server thread/INFO]: [SkAction] Loading server plugin SkAction v2.2
[21:46:11] [Server thread/INFO]: [skUtilities] Loading server plugin skUtilities v0.9.2
[21:46:11] [Server thread/INFO]: [SimpleScore] Loading server plugin SimpleScore v3.12.2
[21:46:11] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.1.2-SNAPSHOT
[21:46:11] [Server thread/INFO]: [Geyser-Spigot] Lade Erweiterungen...
[21:46:11] [Server thread/INFO]: [Geyser-Spigot] 0 Erweiterung(en) geladen
[21:46:11] [Server thread/INFO]: [AdvancedEnchantments] Loading server plugin AdvancedEnchantments v9.3.11
[21:46:11] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.34
[21:46:11] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v4.4.0
[21:46:11] [Server thread/INFO]: [WorldEditSUI] Loading server plugin WorldEditSUI v1.7.2
[21:46:11] [Server thread/INFO]: [PlayerParticles] Loading server plugin PlayerParticles v8.4
[21:46:11] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v5.6.4
[21:46:11] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.12.2
[21:46:11] [Server thread/INFO]: [ChatColor2] Loading server plugin ChatColor2 v1.13.1
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.7.0
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[21:46:11] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[21:46:11] [Server thread/INFO]: [BetterSleeping4] Loading server plugin BetterSleeping4 v4.0.2
[21:46:11] [Server thread/INFO]: [SimplePets] Loading server plugin SimplePets v5.0-BUILD-211
[21:46:11] [Server thread/INFO]: [SkMorkaz] Loading server plugin SkMorkaz v0.21
[21:46:11] [Server thread/INFO]: [SkQuery] Loading server plugin SkQuery v4.1.9
[21:46:11] [Server thread/INFO]: [antiRedstoneClock] Loading server plugin antiRedstoneClock v1.5.0
[21:46:11] [Server thread/WARN]: [antiRedstoneClock] WorldGuard 7 is not supported
[21:46:11] [Server thread/INFO]: [Rankup] Loading server plugin Rankup v3.6.1
[21:46:11] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.2.2-b807
[21:46:11] [Server thread/INFO]: [Graves] Loading server plugin Graves v4.9
[21:46:11] [Server thread/INFO]: [Graves] Integration: Hooked into WorldGuard 7.0.9+5934e49.
[21:46:11] [Server thread/INFO]: [PL-Hide] Loading server plugin PL-Hide v1.5.21
[21:46:11] [Server thread/INFO]: [FastChunkPregenerator] Loading server plugin FastChunkPregenerator v2.0.6-SNAPSHOT
[21:46:11] [Server thread/INFO]: [UberEnchant] Loading server plugin UberEnchant v8.9.10
[21:46:11] [Server thread/INFO]: [Skellett] Loading server plugin Skellett v2.0.9
[21:46:11] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[21:46:11] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.40
[21:46:14] [Server thread/INFO]:         __    
[21:46:14] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.40
[21:46:14] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[21:46:14] [Server thread/INFO]: 
[21:46:14] [Server thread/INFO]: [LuckPerms] Loading configuration...
[21:46:15] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[21:46:16] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[21:46:17] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[21:46:17] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 5876ms)
[21:46:17] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[21:46:17] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[21:46:18] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[21:46:18] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[21:46:18] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[21:46:18] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.15+6463-5ca4dff
[21:46:18] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[21:46:18] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[21:46:18] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_20_R1.PaperweightAdapter as the Bukkit adapter
[21:46:19] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-638
[21:46:19] [Server thread/INFO]: [LWC] Enabling LWC v2.3.0
[21:46:19] [Server thread/INFO]: [LWC] Connecting to SQLite
[21:46:20] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.11
[21:46:20] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[21:46:20] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[21:46:20] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[21:46:20] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[21:46:20] [Server thread/INFO]: [NexEngine] Plugin loaded in 83 ms!
[21:46:20] [Server thread/INFO]: [LWCTrust] Enabling LWCTrust v1.0.6
[21:46:20] [Server thread/INFO]: Preparing level "Bauwelt"
[21:46:21] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[21:46:21] [Server thread/INFO]: Time elapsed: 213 ms
[21:46:21] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[21:46:21] [Server thread/INFO]: Time elapsed: 43 ms
[21:46:21] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[21:46:21] [Server thread/INFO]: Time elapsed: 26 ms
[21:46:21] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.7.1-SNAPSHOT
[21:46:21] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20/1.20.1 (763)
[21:46:21] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[21:46:21] [Server thread/WARN]: [ViaVersion] Please remember that ViaVersion only adds support for versions newer than the server version.
[21:46:21] [Server thread/WARN]: [ViaVersion] If you need support for older versions you may need to use one or more ViaVersion addons too.
[21:46:21] [Server thread/WARN]: [ViaVersion] In that case please read the ViaVersion resource page carefully or use https://jo0001.github.io/ViaSetup
[21:46:21] [Server thread/WARN]: [ViaVersion] and if you're still unsure, feel free to join our Discord-Server for further assistance.
[21:46:21] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[21:46:22] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[21:46:22] [Server thread/INFO]: [AdvancedHelp] Enabling AdvancedHelp v1.12.7
[21:46:22] [Server thread/INFO]: [AdvancedHelp] PlaceholderAPI Hooked!
[21:46:22] [Server thread/INFO]: [AdvancedHelp] Plugin is up to date! -1.12.7
[21:46:22] [Server thread/INFO]: [AdvancedHelp] Successfully Enabled!
[21:46:22] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[21:46:22] [Server thread/INFO]: [WorldGuard] (Bauwelt) TNT ignition is PERMITTED.
[21:46:22] [Server thread/INFO]: [WorldGuard] (Bauwelt) Lighters are PERMITTED.
[21:46:22] [Server thread/INFO]: [WorldGuard] (Bauwelt) Lava fire is PERMITTED.
[21:46:22] [Server thread/INFO]: [WorldGuard] (Bauwelt) Fire spread is UNRESTRICTED.
[21:46:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Bauwelt'
[21:46:22] [Server thread/INFO]: [WorldGuard] (Bauwelt_nether) TNT ignition is PERMITTED.
[21:46:22] [Server thread/INFO]: [WorldGuard] (Bauwelt_nether) Lighters are PERMITTED.
[21:46:22] [Server thread/INFO]: [WorldGuard] (Bauwelt_nether) Lava fire is PERMITTED.
[21:46:22] [Server thread/INFO]: [WorldGuard] (Bauwelt_nether) Fire spread is UNRESTRICTED.
[21:46:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Bauwelt_nether'
[21:46:22] [Server thread/INFO]: [WorldGuard] (Bauwelt_the_end) TNT ignition is PERMITTED.
[21:46:22] [Server thread/INFO]: [WorldGuard] (Bauwelt_the_end) Lighters are PERMITTED.
[21:46:22] [Server thread/INFO]: [WorldGuard] (Bauwelt_the_end) Lava fire is PERMITTED.
[21:46:22] [Server thread/INFO]: [WorldGuard] (Bauwelt_the_end) Fire spread is UNRESTRICTED.
[21:46:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Bauwelt_the_end'
[21:46:22] [Server thread/INFO]: [WorldGuard] Loading region data...
[21:46:23] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.3
[21:46:23] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[21:46:23] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[21:46:23] [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--].
[21:46:23] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[21:46:24] [Server thread/INFO]: Preparing start region for dimension minecraft:spawntospawn
[21:46:24] [Server thread/INFO]: Time elapsed: 799 ms
[21:46:24] [Server thread/INFO]: [WorldGuard] (spawntospawn) TNT ignition is PERMITTED.
[21:46:24] [Server thread/INFO]: [WorldGuard] (spawntospawn) Lighters are PERMITTED.
[21:46:24] [Server thread/INFO]: [WorldGuard] (spawntospawn) Lava fire is PERMITTED.
[21:46:24] [Server thread/INFO]: [WorldGuard] (spawntospawn) Fire spread is UNRESTRICTED.
[21:46:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawntospawn'
[21:46:25] [Server thread/INFO]: Preparing start region for dimension minecraft:farmwelt_das_nether
[21:46:25] [Server thread/INFO]: Time elapsed: 12 ms
[21:46:25] [Server thread/INFO]: [WorldGuard] (Farmwelt_das_Nether) TNT ignition is PERMITTED.
[21:46:25] [Server thread/INFO]: [WorldGuard] (Farmwelt_das_Nether) Lighters are PERMITTED.
[21:46:25] [Server thread/INFO]: [WorldGuard] (Farmwelt_das_Nether) Lava fire is PERMITTED.
[21:46:25] [Server thread/INFO]: [WorldGuard] (Farmwelt_das_Nether) Fire spread is UNRESTRICTED.
[21:46:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Farmwelt_das_Nether'
[21:46:25] [Server thread/INFO]: Preparing start region for dimension minecraft:farmwelt
[21:46:25] [Server thread/INFO]: Time elapsed: 173 ms
[21:46:25] [Server thread/INFO]: [WorldGuard] (Farmwelt) TNT ignition is PERMITTED.
[21:46:25] [Server thread/INFO]: [WorldGuard] (Farmwelt) Lighters are PERMITTED.
[21:46:25] [Server thread/INFO]: [WorldGuard] (Farmwelt) Lava fire is PERMITTED.
[21:46:25] [Server thread/INFO]: [WorldGuard] (Farmwelt) Fire spread is UNRESTRICTED.
[21:46:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Farmwelt'
[21:46:25] [Server thread/INFO]: Preparing start region for dimension minecraft:flatroom
[21:46:25] [Server thread/INFO]: Time elapsed: 86 ms
[21:46:25] [Server thread/INFO]: [WorldGuard] (flatroom) TNT ignition is PERMITTED.
[21:46:25] [Server thread/INFO]: [WorldGuard] (flatroom) Lighters are PERMITTED.
[21:46:25] [Server thread/INFO]: [WorldGuard] (flatroom) Lava fire is PERMITTED.
[21:46:25] [Server thread/INFO]: [WorldGuard] (flatroom) Fire spread is UNRESTRICTED.
[21:46:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'flatroom'
[21:46:25] [Server thread/INFO]: Preparing start region for dimension minecraft:farmwelt_das_end
[21:46:26] [Server thread/INFO]: Time elapsed: 114 ms
[21:46:26] [Server thread/INFO]: [WorldGuard] (Farmwelt_das_End) TNT ignition is PERMITTED.
[21:46:26] [Server thread/INFO]: [WorldGuard] (Farmwelt_das_End) Lighters are PERMITTED.
[21:46:26] [Server thread/INFO]: [WorldGuard] (Farmwelt_das_End) Lava fire is PERMITTED.
[21:46:26] [Server thread/INFO]: [WorldGuard] (Farmwelt_das_End) Fire spread is UNRESTRICTED.
[21:46:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Farmwelt_das_End'
[21:46:26] [Server thread/INFO]: Preparing start region for dimension minecraft:manapoolcratesspawn
[21:46:26] [Server thread/INFO]: Time elapsed: 36 ms
[21:46:26] [Server thread/INFO]: [WorldGuard] (manapoolcratesspawn) TNT ignition is PERMITTED.
[21:46:26] [Server thread/INFO]: [WorldGuard] (manapoolcratesspawn) Lighters are PERMITTED.
[21:46:26] [Server thread/INFO]: [WorldGuard] (manapoolcratesspawn) Lava fire is PERMITTED.
[21:46:26] [Server thread/INFO]: [WorldGuard] (manapoolcratesspawn) Fire spread is UNRESTRICTED.
[21:46:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'manapoolcratesspawn'
[21:46:26] [Server thread/INFO]: Preparing start region for dimension minecraft:farmwelt_nether
[21:46:26] [Server thread/INFO]: Time elapsed: 53 ms
[21:46:26] [Server thread/INFO]: [WorldGuard] (Farmwelt_Nether) TNT ignition is PERMITTED.
[21:46:26] [Server thread/INFO]: [WorldGuard] (Farmwelt_Nether) Lighters are PERMITTED.
[21:46:26] [Server thread/INFO]: [WorldGuard] (Farmwelt_Nether) Lava fire is PERMITTED.
[21:46:26] [Server thread/INFO]: [WorldGuard] (Farmwelt_Nether) Fire spread is UNRESTRICTED.
[21:46:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Farmwelt_Nether'
[21:46:26] [Server thread/INFO]: [Multiverse-Core] 10 - World(s) loaded.
[21:46:26] [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.
[21:46:26] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[21:46:26] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+66-dd3f4c2
[21:46:26] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[21:46:26] [Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsSelectors to the same version.
[21:46:27] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[21:46:27] [Server thread/INFO]: [Essentials] No kits found to migrate.
[21:46:27] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[21:46:27] [Server thread/INFO]: [Essentials] Using locale de
[21:46:27] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[21:46:27] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[21:46:27] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[21:46:27] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[21:46:27] [Server thread/INFO]: [Skript] Enabling Skript v2.6.4
[21:46:27] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] You're currently running the latest stable version of Skript.
[21:46:33] [Server thread/INFO]: [Skript] Loaded 153763 aliases in 5583ms
[21:46:33] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[21:46:33] [Server thread/INFO]: [AureliumSkills] Enabling AureliumSkills vBeta 1.3.21
[21:46:33] [Server thread/INFO]: [AureliumSkills] WorldGuard Support Enabled!
[21:46:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aureliumskills [Beta 1.3.21]
[21:46:33] [Server thread/INFO]: [AureliumSkills] PlaceholderAPI Support Enabled!
[21:46:33] [Server thread/INFO]: [AureliumSkills] Vault Support Enabled!
[21:46:33] [Server thread/INFO]: [AureliumSkills] Loaded 194 config options in 0 ms
[21:46:33] [Server thread/INFO]: [AureliumSkills] Loaded 312 sources and 10 tags in 10ms
[21:46:33] [Server thread/INFO]: [AureliumSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[21:46:33] [Server thread/INFO]: [AureliumSkills] Loading languages...
[21:46:34] [Server thread/INFO]: [AureliumSkills] Loaded 17 languages in 1031ms
[21:46:34] [Server thread/INFO]: [AureliumSkills] Loaded 30 pattern rewards and 0 level rewards
[21:46:35] [Server thread/INFO]: [AureliumSkills] Loaded 78 Ability Options in 2ms
[21:46:35] [Server thread/INFO]: [AureliumSkills] Loaded 6 menus
[21:46:35] [Server thread/INFO]: [AureliumSkills] Loaded 32 loot entries in 4 pools and 2 tables
[21:46:35] [Server thread/INFO]: [AureliumSkills] Loaded 3 blocked worlds.
[21:46:35] [Server thread/INFO]: [AureliumSkills] Aurelium Skills has been enabled
[21:46:35] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[21:46:35] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[21:46:35] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[21:46:35] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[21:46:35] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[21:46:35] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[21:46:35] [Server thread/INFO]: --------------------
[21:46:35] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[21:46:35] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[21:46:35] [Server thread/INFO]: --------------------
[21:46:35] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.11.3
[21:46:35] [Server thread/INFO]: [NBTAPI] Adding listeners...
[21:46:35] [Server thread/INFO]: [NBTAPI] Gson:
[21:46:35] [Server thread/INFO]: [NBTAPI] Checking bindings...
[21:46:35] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[21:46:35] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[21:46:35] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[21:46:35] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[21:46:35] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.32-SNAPSHOT (build 3188)
[21:46:35] [Server thread/INFO]: [Citizens] Loading external libraries
[21:46:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[21:46:36] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[21:46:36] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[21:46:36] [Server thread/INFO]: [Votifier] Loaded token for website: default
[21:46:36] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[21:46:36] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[21:46:36] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /46.253.113.234:8192.
[21:46:36] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[21:46:36] [Server thread/INFO]: [SCore] Enabling SCore v4.23.8.15
[21:46:36] [Server thread/INFO]: ================ SCore ================
[21:46:36] [Server thread/INFO]: SCore Version of the server git-Paper-128 (MC: 1.20.1) !
[21:46:36] [Server thread/INFO]: SCore ExecutableItems hooked !  (6.23.8.15) Load After
[21:46:36] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.3)  Load Before
[21:46:36] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.9+5934e49)  Load Before
[21:46:36] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  Load Before
[21:46:36] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.1-b861)  Load Before
[21:46:36] [Server thread/INFO]: SCore CoreProtect hooked !  (21.3)  Load Before
[21:46:36] [Server thread/INFO]: SCore ProtocolLib hooked !
[21:46:36] [Server thread/INFO]: SCore Locale setup: EN
[21:46:36] [Server thread/INFO]: SCore NBTAPI hooked !  (2.11.3)  Load Before
[21:46:36] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.3)  Load Before
[21:46:36] [Server thread/INFO]: SCore AureliumSkills hooked !  (Beta 1.3.21)  Load Before
[21:46:36] [Server thread/INFO]: SCore Oraxen hooked !  (1.160.0) Load After
[21:46:36] [Server thread/INFO]: SCore Language of the editor setup on EN
[21:46:36] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[21:46:36] [Server thread/INFO]: SCore Connection to the db...
[21:46:36] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[21:46:36] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[21:46:36] [Server thread/INFO]: SCore Creating table Commands if not exists...
[21:46:36] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[21:46:36] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[21:46:36] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[21:46:36] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[21:46:36] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[21:46:37] [pool-93-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[21:46:37] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[21:46:37] [Server thread/INFO]: SCore SCore loaded the delayed command for Serwan14541454 : SENDMESSAGE Flugunfähigkeit in 30 Sekunden. >> delay: 515434427
[21:46:37] [Server thread/INFO]: SCore SCore loaded the delayed command for Serwan14541454 : FLY OFF >> delay: 515434427
[21:46:37] [Server thread/INFO]: SCore SCore loaded the delayed command for Serwan14541454 : PARTICLE DRAGON_BREATH 500 3 0.2 >> delay: 515434427
[21:46:37] [Server thread/INFO]: SCore SCore loaded 3 delayed commands saved
[21:46:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SCore [1.0.0]
[21:46:37] [Server thread/INFO]: ================ SCore ================
[21:46:37] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.2-SNAPSHOT (b59-2278589)
[21:46:37] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[21:46:37] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[21:46:37] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[21:46:37] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[21:46:37] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[21:46:37] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[21:46:37] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[21:46:37] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[21:46:37] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[21:46:37] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[21:46:37] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[21:46:37] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[21:46:37] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[21:46:37] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[21:46:37] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[21:46:37] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.0-dev+66-dd3f4c2
[21:46:37] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[21:46:37] [Server thread/INFO]: [SkBee] Enabling SkBee v2.16.1
[21:46:37] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[21:46:37] [Server thread/INFO]: [SkBee] Other Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Loading NBTApi...
[21:46:37] [Server thread/INFO]: [SkBee] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[21:46:37] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[21:46:37] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[21:46:37] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[21:46:37] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[21:46:37] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Display Entity elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Fishing elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Scoreboard Objective Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Minecraft Tag elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Team Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[21:46:37] [Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[21:46:37] [Server thread/INFO]: [SkBee] Loaded elements:
[21:46:37] [Server thread/INFO]: [SkBee]  - 48 events
[21:46:37] [Server thread/INFO]: [SkBee]  - 48 effects
[21:46:37] [Server thread/INFO]: [SkBee]  - 220 expressions
[21:46:37] [Server thread/INFO]: [SkBee]  - 20 conditions
[21:46:37] [Server thread/INFO]: [SkBee]  - 2 sections
[21:46:37] [Server thread/INFO]: [SkBee] Checking for update...
[21:46:38] [Server thread/INFO]: [SkBee] Plugin is up to date!
[21:46:38] [Server thread/INFO]: [SkBee] Successfully enabled v2.16.1 in 0,65 seconds
[21:46:38] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.1-b834
[21:46:38] [Server thread/INFO]: [Multiverse-Portals] 4 - Portals(s) loaded
[21:46:38] [Server thread/INFO]: [Multiverse-Portals] Found WorldEdit. Using it for selections.
[21:46:38] [Server thread/INFO]: [Multiverse-Portals 4.2.1-b834]  Enabled - By Rigby and fernferret
[21:46:38] [Server thread/INFO]: [ChestSort] Enabling ChestSort v13.6.3
[21:46:38] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.9+5934e49
[21:46:38] [Server thread/INFO]: [ChestSort] Use permissions: true
[21:46:38] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[21:46:38] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[21:46:38] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[21:46:38] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[21:46:38] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[21:46:38] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[21:46:38] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[21:46:38] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[21:46:38] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[21:46:38] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[21:46:38] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[21:46:38] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[21:46:38] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[21:46:38] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[21:46:38] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[21:46:38] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[21:46:38] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[21:46:38] [Server thread/INFO]: [ChestSort] Check for updates: true
[21:46:38] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[21:46:38] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[21:46:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chestsort [13.6.3]
[21:46:38] [Server thread/INFO]: [Oraxen] Enabling Oraxen v1.160.0
[21:46:38] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Server wurde gefunden G:AvarisMC.de(1061115869402513408)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📟console(1101887207830208512)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:econemyshop(1105077889747136523)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:server-updates(1105194629235736598)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏👋willkommen(1093658660900720750)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏👋verlassen(1093658663601852466)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📚regelwerk(1093658665401204811)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📌informationen(1093658673441689762)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📢news(1093658675543027815)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏👥teamliste(1099254932986679316)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📋befehle(1099253393215737949)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏♛rank(1123608241608331264)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏🐑mob-cap(1123920470379614220)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏♛giveaway(1124050882179383349)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📚custom-bücher(1124690226833526784)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏🧮spenden(1125838960715911259)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏🎊events(1093658678068007006)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏💬allgemein(1093658683071795280)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏❓vorschläge(1102236397429080195)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📈feedback(1093878779786563635)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📷bilder(1093658685437390928)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📊level(1093658687505182771)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📟zählen(1093908829202284564)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏🏧handelschat(1099323244080807986)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏💬ingame-chat(1100114652312113232)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏🎫ticket(1093658670467915986)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏🚨auto-support(1094234193699028992)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📋bewerben(1093658680957882408)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📢team-news(1093658688352419961)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📚team-rules(1093658690445398148)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏💬team-chat(1093658693519822888)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📜banlist(1093658698443931831)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📜jaillist(1099635808287346718)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏🎂team-gebutstage(1095292530653925416)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏💬supporter-chat(1093658708422164573)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📟code-teilen(1093658700402667612)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏💬dev-chat(1093658702432702614)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📝bauplan(1093658705028976640)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏💬builder-chat(1093658707482660975)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📁verify-log(1093658709923741716)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📁log(1093658711173644288)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:▏📁ticket-log(1094633918445142126)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bots(1138478806299070546)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:fehlermeldung(1141385792770551838)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Konsolenausgabeweiterleitung aktiv TC:▏📟console(1101887207830208512)
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere Essentials Verbindung
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere LuckPerms Verbindung
[21:46:38] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere PlaceholderAPI Verbindung
[21:46:39] [Server thread/INFO]: Oraxen | Successfully updated settings.yml
[21:46:39] [Server thread/INFO]: Oraxen | Papers block.updates.disable-noteblock-updates is not enabled.
[21:46:39] [Server thread/INFO]: Oraxen | It is recommended to enable this setting for improved performance and prevent bugs with noteblocks
[21:46:39] [Server thread/INFO]: Oraxen | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[21:46:39] [Server thread/INFO]: Oraxen | You can enable this setting in ServerFolder/config/paper-global.yml
[21:46:39] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | Material of emerald_helmet is not a LeatherArmor material!
[21:46:40] [Server thread/INFO]: Oraxen | Custom Armor requires that the item is LeatherArmor
[21:46:40] [Server thread/INFO]: Oraxen | You can add fake armor values via AttributeModifiers
[21:46:40] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | Material of emerald_chestplate is not a LeatherArmor material!
[21:46:40] [Server thread/INFO]: Oraxen | Custom Armor requires that the item is LeatherArmor
[21:46:40] [Server thread/INFO]: Oraxen | You can add fake armor values via AttributeModifiers
[21:46:40] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | Material of emerald_leggings is not a LeatherArmor material!
[21:46:40] [Server thread/INFO]: Oraxen | Custom Armor requires that the item is LeatherArmor
[21:46:40] [Server thread/INFO]: Oraxen | You can add fake armor values via AttributeModifiers
[21:46:40] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | Material of emerald_boots is not a LeatherArmor material!
[21:46:40] [Server thread/INFO]: Oraxen | Custom Armor requires that the item is LeatherArmor
[21:46:40] [Server thread/INFO]: Oraxen | You can add fake armor values via AttributeModifiers
[21:46:40] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | Material of emerald_helmet is not a LeatherArmor material!
[21:46:40] [Server thread/INFO]: Oraxen | Custom Armor requires that the item is LeatherArmor
[21:46:40] [Server thread/INFO]: Oraxen | You can add fake armor values via AttributeModifiers
[21:46:40] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | Material of emerald_chestplate is not a LeatherArmor material!
[21:46:40] [Server thread/INFO]: Oraxen | Custom Armor requires that the item is LeatherArmor
[21:46:40] [Server thread/INFO]: Oraxen | You can add fake armor values via AttributeModifiers
[21:46:40] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | Material of emerald_leggings is not a LeatherArmor material!
[21:46:40] [Server thread/INFO]: Oraxen | Custom Armor requires that the item is LeatherArmor
[21:46:40] [Server thread/INFO]: Oraxen | You can add fake armor values via AttributeModifiers
[21:46:40] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | Material of emerald_boots is not a LeatherArmor material!
[21:46:40] [Server thread/INFO]: Oraxen | Custom Armor requires that the item is LeatherArmor
[21:46:40] [Server thread/INFO]: Oraxen | You can add fake armor values via AttributeModifiers
[21:46:40] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:46:40] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:46:40] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | No broken models or textures were found in the resourcepack
[21:46:40] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:46:40] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | Attempting to merge imported font files
[21:46:40] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:46:40] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.vsh - Attempting to migrate it
[21:46:40] [Server thread/INFO]: Oraxen | Not attempting to migrate duplicate file as Pack.import.merge_duplicates is disabled in settings.yml
[21:46:40] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.json - Attempting to migrate it
[21:46:40] [Server thread/INFO]: Oraxen | Not attempting to migrate duplicate file as Pack.import.merge_duplicates is disabled in settings.yml
[21:46:40] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/rendertype_armor_cutout_no_cull.fsh - Attempting to migrate it
[21:46:40] [Server thread/INFO]: Oraxen | Not attempting to migrate duplicate file as Pack.import.merge_duplicates is disabled in settings.yml
[21:46:40] [Server thread/INFO]: 
[21:46:40] [Server thread/INFO]: Oraxen | Duplicate file detected: assets/minecraft/shaders/core/LICENSE.md - Attempting to migrate it
[21:46:40] [Server thread/INFO]: Oraxen | Not attempting to migrate duplicate file as Pack.import.merge_duplicates is disabled in settings.yml
[21:46:40] [Server thread/INFO]: 
[21:46:41] [Server thread/INFO]: Oraxen | Automatic upload of the resource pack is enabled, uploading...
[21:46:41] [Server thread/INFO]: Oraxen | Successfully loaded on Debian GNU/Linux 11 (bullseye)
[21:46:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: oraxen [1.160.0]
[21:46:41] [Server thread/INFO]: Oraxen | Plugin "PlaceholderAPI" detected, enabling hooks
[21:46:41] [Server thread/INFO]: [EssentialsSelectors] Enabling EssentialsSelectors v1.7.1
[21:46:41] [Server thread/INFO]: [Booster] Enabling Booster v8.7
[21:46:41] [Server thread/INFO]: ----------------------------------------------------
[21:46:41] [Server thread/INFO]: 
[21:46:41] [Server thread/INFO]:   ____                  _            
[21:46:41] [Server thread/INFO]:  |  _ \                | |           
[21:46:41] [Server thread/INFO]:  | |_) | ___   ___  ___| |_ ___ _ __ 
[21:46:41] [Server thread/INFO]:  |  _ < / _ \ / _ \/ __| __/ _ \ '__|
[21:46:41] [Server thread/INFO]:  | |_) | (_) | (_) \__ \ ||  __/ |   
[21:46:41] [Server thread/INFO]:  |____/ \___/ \___/|___/\__\___|_|   
[21:46:41] [Server thread/INFO]: 
[21:46:41] [Server thread/INFO]: Das Plugin Booster wurde von JakobG programmiert!
[21:46:41] [Server thread/INFO]: Version: 8.7
[21:46:41] [Server thread/INFO]: 
[21:46:41] [Server thread/INFO]: ----------------------------------------------------
[21:46:41] [Server thread/INFO]:  Load DamageBooster-AddOn
[21:46:41] [Server thread/INFO]:  Loaded addon: Damage-Booster v1.2
[21:46:41] [Server thread/INFO]:  Load BoosterGodMode-AddOn
[21:46:41] [Server thread/INFO]:  Loaded addon: GodMode v1.2
[21:46:41] [Server thread/INFO]:  Load BoosterGutschein-AddOn
[21:46:41] [Server thread/INFO]: BoosterGuteschein: Boostertype GODMODE konnte nicht geladen werden. Nicht in der Config.
[21:46:41] [Server thread/INFO]: BoosterGuteschein: Boostertype DAMAGE konnte nicht geladen werden. Nicht in der Config.
[21:46:41] [Server thread/INFO]:  Loaded addon: Gutschein v1.3
[21:46:41] [Server thread/INFO]:  Load BoosterBossBar-AddOn
[21:46:41] [Server thread/INFO]:  Loaded addon: BossBar v1.1
[21:46:41] [Server thread/INFO]:  Background nicht gesetzt. (Material nicht gefunden)
[21:46:41] [Server thread/INFO]:  Background nicht gesetzt. (Material nicht gefunden)
[21:46:41] [Server thread/INFO]:  Background nicht gesetzt. (Material nicht gefunden)
[21:46:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: booster [8.7]
[21:46:41] [Server thread/INFO]:  PlaceholderAPI wurde geladen!
[21:46:41] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v0.20.1
[21:46:41] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[21:46:41] [Server thread/WARN]: [BeautyQuests] The Minecraft version 1_20_R1 is not supported by BeautyQuests.
[21:46:41] [Server thread/WARN]: [BeautyQuests] Some functionnalities of the plugin have not been enabled.
[21:46:41] [Server thread/INFO]: [BeautyQuests] Loaded language de_DE (0.026s)!
[21:46:41] [Server thread/INFO]: [BeautyQuests] Loaded start particles: REDSTONE in shape POINT with color R255 G255 B0
[21:46:41] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: VILLAGER_HAPPY in shape BAR
[21:46:41] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE_NORMAL in shape SPOT
[21:46:42] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[21:46:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: beautyquests [0.20.1]
[21:46:42] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[21:46:42] [Server thread/INFO]: [CookieClicker] Enabling CookieClicker v4.5
[21:46:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cookieclicker [1.0]
[21:46:42] [Server thread/INFO]: [OpenInv] Enabling OpenInv v4.3.1
[21:46:42] [Server thread/INFO]: [BringEvent] Enabling BringEvent v1.0
[21:46:42] [Server thread/INFO]: [BringEvent] [STDOUT] MySQL Connected!
[21:46:42] [Server thread/WARN]: Nag author(s): '[]' of 'BringEvent v1.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[21:46:42] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[21:46:42] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[21:46:42] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[21:46:42] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[21:46:42] [Server thread/INFO]: [skRayFall] Getting more bacon for the army of citizens...
[21:46:42] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[21:46:42] [Server thread/INFO]: [skRayFall] Getting more bacon for the Votifier runners!
[21:46:42] [Server thread/WARN]: [skRayFall] Unable to get bacon for the CoreProtect loggers [Unsupported API version (9)].
[21:46:42] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[21:46:42] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[21:46:42] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[21:46:42] [Server thread/INFO]: [skRayFall] Bacon is ready!
[21:46:42] [Server thread/INFO]: [InvisibleItemFrames] Enabling InvisibleItemFrames v1.3
[21:46:42] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v3.5
[21:46:42] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[21:46:42] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[21:46:42] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_20_R1
[21:46:42] [Server thread/INFO]: [AuctionHouse] Enabled DiscordSRV support
[21:46:42] [Server thread/INFO]: [AuctionHouse] Using en_us locale
[21:46:43] [Server thread/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[21:46:43] [Server thread/INFO]: [AuctionHouse] Loaded 931 listings
[21:46:43] [Server thread/INFO]: [FarmLimiter] Enabling FarmLimiter v1.5.3
[21:46:43] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v6.23.8.15
[21:46:43] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[21:46:43] [Server thread/INFO]: ExecutableItems PlaceholderAPI hooked !
[21:46:43] [Server thread/INFO]: ExecutableItems NBTAPI hooked !
[21:46:43] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld in the option disableItemsPerWorld
[21:46:43] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld2 in the option disableItemsPerWorld
[21:46:45] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Type target value of typeTarget from config, value: PLAYER_CONSUME (Item: Free_Fly) >> Type target available: ONLY_BLOCK, ONLY_AIR, NO_TYPE_TARGET
[21:46:45] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Type target value of typeTarget from config, value: PLAYER_CONSUME (Item: Free_Fly) >> Type target available: ONLY_BLOCK, ONLY_AIR, NO_TYPE_TARGET
[21:46:45] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the World value of ifInWorld from config, value: world (Item: Prem_World_Teleporter)
[21:46:45] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the World value of ifInWorld from config, value: world_nether (Item: Prem_World_Teleporter)
[21:46:45] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the World value of ifInWorld from config, value: world_the_end (Item: Prem_World_Teleporter)
[21:46:46] [Server thread/INFO]: ExecutableItems Amount of Executable Items configurations loaded: 141
[21:46:46] [Server thread/INFO]: ExecutableItems Items with display conditions :  
[21:46:46] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[21:46:46] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.4
[21:46:46] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[21:46:46] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[21:46:46] [Server thread/INFO]: [skript-npc] Enabling skript-npc v0.1.2*
[21:46:46] [Server thread/INFO]: [skript-npc] skript-npc is warming up...
[21:46:46] [Server thread/INFO]: [skript-npc] Metrics are enabled.
[21:46:46] [Server thread/INFO]: [skript-npc] Loaded all addon classes.
[21:46:46] [Server thread/INFO]: [skript-npc] Finished loading.
[21:46:46] [Server thread/INFO]: [Skulls] Enabling Skulls v3.9.1
[21:46:46] [Server thread/INFO]:  
[21:46:46] [Server thread/INFO]: =============================
[21:46:46] [Server thread/INFO]: Skulls v3.9.1 by Tweetzy
[21:46:46] [Server thread/INFO]: Developer: Kiran Hart
[21:46:46] [Server thread/INFO]: [FlightCore] Enabling metrics for Skulls
[21:46:46] [Server thread/INFO]: =============================
[21:46:46] [Server thread/INFO]:  
[21:46:46] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.5.20
[21:46:46] [Server thread/INFO]: [NametagEdit] Successfully loaded using bukkit version: v1_20_R1
[21:46:46] [Server thread/INFO]: [NametagEdit] Found LuckPerms! Hooking in.
[21:46:46] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.4.0
[21:46:46] [Server thread/INFO]:  
[21:46:46] [Server thread/INFO]: __________________________________________________________
[21:46:46] [Server thread/INFO]:  
[21:46:46] [Server thread/INFO]:                        TradeSystem [2.4.0]
[21:46:46] [Server thread/INFO]:  
[21:46:46] [Server thread/INFO]: Status:
[21:46:46] [Server thread/INFO]:  
[21:46:46] [Server thread/INFO]: MC-Version: 1.20.1 (R0.1-SNAPSHOT, Paper)
[21:46:46] [Server thread/INFO]:  
[21:46:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.2]
[21:46:46] [Server thread/INFO]:   > Loading sounds
[21:46:46] [Server thread/INFO]:   > Loading blacklist
[21:46:46] [Server thread/INFO]:     ...got 3 blocked item(s)
[21:46:46] [Server thread/INFO]:   > Loading layouts
[21:46:46] [Server thread/INFO]:     ...got 4 layout(s)
[21:46:46] [Server thread/INFO]:   > Queuing database initializing task
[21:46:46] [Server thread/INFO]:  
[21:46:46] [Server thread/INFO]: Finished (256ms)
[21:46:46] [Server thread/INFO]:  
[21:46:46] [Server thread/INFO]: __________________________________________________________
[21:46:46] [Server thread/INFO]:  
[21:46:46] [Server thread/INFO]: [DailyRewardsPlus] Enabling DailyRewardsPlus v1.3.0.5
[21:46:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: daily [1.0.0]
[21:46:47] [Server thread/INFO]: [DailyRewards+] Detected Placeholder API. Successfully enabled plugin support.
[21:46:47] [Server thread/INFO]: [DailyRewards+] Has started successfully!
[21:46:47] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.10
[21:46:47] [Server thread/INFO]: [BetterRTP] Cooldown = 900
[21:46:47] [Server thread/INFO]: [BetterRTP] Loading Overrides...
[21:46:47] [Server thread/WARN]: [BetterRTP] The world `world` doesn't seem to exist! Please update `master_world's` override! Maybe there are capital letters?
[21:46:47] [Server thread/WARN]: [BetterRTP] The world `world` doesn't seem to exist! Please update `creative_world's` override! Maybe there are capital letters?
[21:46:47] [Server thread/INFO]: [BetterRTP] Loading World Types...
[21:46:47] [Server thread/INFO]: [BetterRTP] - World Type for 'world' set to 'NORMAL'
[21:46:47] [Server thread/INFO]: [BetterRTP] - World Type for 'world_nether' set to 'NETHER'
[21:46:47] [Server thread/INFO]: [BetterRTP] - World Type for 'world_the_end' set to 'NORMAL'
[21:46:47] [Server thread/INFO]: [BetterRTP] Loading Defaults...
[21:46:47] [Server thread/INFO]: [BetterRTP] Loading Custom Worlds...
[21:46:47] [Server thread/INFO]: [BetterRTP] [WARN] - Custom World 'custom_world_1' was not registered because world does NOT exist
[21:46:47] [Server thread/INFO]: [BetterRTP] [WARN] - Custom World 'other_custom_world' was not registered because world does NOT exist
[21:46:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.10]
[21:46:47] [Server thread/INFO]: [SkAction] Enabling SkAction v2.2*
[21:46:47] [Server thread/INFO]: [skUtilities] Enabling skUtilities v0.9.2*
[21:46:47] [Server thread/INFO]: [skUtilities] v0.9.2: loaded modules (Conversions, Files, Yaml, Urls, Utilities) in 86ms
[21:46:47] [Server thread/INFO]: [SimpleScore] Enabling SimpleScore v3.12.2
[21:46:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SimpleScore [3.12.2]
[21:46:47] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.1.2-SNAPSHOT
[21:46:47] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.3.11
[21:46:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into AdvancedEnchantments, AureliumSkills, WorldGuard, PlaceholderAPI.
[21:46:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[21:46:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into AureliumSkills.
[21:46:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuardExtraFlags.
[21:46:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedenchantments [1.0.0]
[21:46:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[21:46:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib.
[21:46:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into Essentials.
[21:46:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into CoreProtect.
[21:46:47] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[21:46:47] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[21:46:47] [Server thread/ERROR]: [AdvancedEnchantments] Failed to load the "mjolnir" enchantment! Reason: specified group "MASTERY" does not exist!
[21:46:48] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[21:46:48] [Server thread/INFO]: [spark] Enabling spark v1.10.34
[21:46:48] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[21:46:48] [Server thread/INFO]: [spark] Starting background profiler...
[21:46:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.34]
[21:46:49] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[21:46:49] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.4.0
[21:46:49] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[21:46:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.4.0]
[21:46:49] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[21:46:49] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[21:46:49] [Server thread/INFO]: [ExcellentCrates] Loaded 6 crate keys.
[21:46:49] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[21:46:49] [Server thread/INFO]: [ExcellentCrates] Loaded 20 crates.
[21:46:49] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[21:46:49] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 793 ms!
[21:46:49] [Server thread/INFO]: [WorldEditSUI] Enabling WorldEditSUI v1.7.2
[21:46:49] [Server thread/INFO]: [WorldEditSUI] Plugin by kennytv
[21:46:49] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.4
[21:46:49] [Server thread/INFO]: [PlayerParticles] Initializing using RoseGarden v1.1.0.52-SNAPSHOT
[21:46:49] [Server thread/INFO]: [PlayerParticles] Data handler connected using SQLite.
[21:46:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerparticles [8.4]
[21:46:50] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v5.6.4
[21:46:50] [Server thread/INFO]: [EconomyShopGUI] [INFO]: lang-de.yml wird als Nachrichtendatei benutzt.
[21:46:50] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Shops.yml wurde gefunden!
[21:46:50] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Sections.yml wurde gefunden!
[21:46:50] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
[21:46:50] [Server thread/INFO]: [EconomyShopGUI] [DEBUG]: Completed loading '1' economy provider(s) for all 9 shop sections.
[21:46:50] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Du benutzt Minecraft 1.20.1...
[21:46:50] [Server thread/INFO]: [EconomyShopGUI] [INFO]: In der config ist DISABLED als Plugin angegeben, das sich um Spawner kümmert
[21:46:50] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider disabled in config, disabling...
[21:46:50] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode ist an.
[21:46:50] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Die Shop-Einstellungen werden geladen...
[21:46:50] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Alle items werden geladen...
[21:46:50] [Server thread/INFO]: [EconomyShopGUI] Initialized - Took 183ms to complete
[21:46:50] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.12.2
[21:46:51] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.12.2
[21:46:51] [Server thread/INFO]: [ChatColor2] Enabling ChatColor2 v1.13.1
[21:46:51] [Server thread/INFO]: ChatColor 2 Version 1.13.1 has been enabled.
[21:46:51] [Server thread/INFO]: Current update: Gradient colours & GUI tweaks
[21:46:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cc [1.13.1]
[21:46:51] [Server thread/INFO]: PlaceholderAPI has been hooked.
[21:46:51] [Server thread/INFO]: Metrics is enabled for this plugin. Stats sent to https://bstats.org/plugin/bukkit/ChatColor2
[21:46:51] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.7.0
[21:46:52] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[21:46:52] [Server thread/INFO]: [ajLeaderboards] The columns already exist for aureliumskills_power. Canceling updater and bumping DB version.
[21:46:52] [Server thread/INFO]: [ajLeaderboards] The columns already exist for beautyquests_player_finished_amount. Canceling updater and bumping DB version.
[21:46:52] [Server thread/INFO]: [ajLeaderboards] The columns already exist for beautyquests_total_amount. Canceling updater and bumping DB version.
[21:46:52] [Server thread/INFO]: [ajLeaderboards] The columns already exist for cookieclicker_cookies. Canceling updater and bumping DB version.
[21:46:52] [Server thread/INFO]: [ajLeaderboards] The columns already exist for cookieclicker_place. Canceling updater and bumping DB version.
[21:46:52] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_mine_block. Canceling updater and bumping DB version.
[21:46:52] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_mine_block:stone. Canceling updater and bumping DB version.
[21:46:52] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[21:46:52] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_played. Canceling updater and bumping DB version.
[21:46:52] [Server thread/INFO]: [ajLeaderboards] The columns already exist for vault_eco_balance. Canceling updater and bumping DB version.
[21:46:52] [Server thread/INFO]: [ajLeaderboards] Loaded 10 boards
[21:46:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.7.0]
[21:46:52] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[21:46:52] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.7.0 by ajgeiss0702 enabled!
[21:46:52] [Server thread/INFO]: [BetterSleeping4] Enabling BetterSleeping4 v4.0.2
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Is Essentials hooked? true
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Are afk players ignored? true, with a min afk time of 60000
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Are vanished players ignored? true
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Ignoring 1 game modes
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Loading language: en-us
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] This server is running on Spigot
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Using chat messaging
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Enabling BetterSleeping in world Bauwelt
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Using 'percentage' as sleepers-needed calculator
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] The percentage is set to 25%
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Enabling BetterSleeping in world spawntospawn
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Using 'percentage' as sleepers-needed calculator
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] The percentage is set to 25%
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Enabling BetterSleeping in world Farmwelt
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Using 'percentage' as sleepers-needed calculator
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] The percentage is set to 25%
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Enabling BetterSleeping in world flatroom
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Using 'percentage' as sleepers-needed calculator
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] The percentage is set to 25%
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Enabling BetterSleeping in world manapoolcratesspawn
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Using 'percentage' as sleepers-needed calculator
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] The percentage is set to 25%
[21:46:52] [Server thread/INFO]: [CONFIG] [BetterSleeping4] Enabling GUI commands
[21:46:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bettersleeping [4.0.2]
[21:46:52] [Server thread/INFO]: [SimplePets] Enabling SimplePets v5.0-BUILD-211
[21:46:53] [Server thread/INFO]: [SimplePets Warning] Failed to register the 'shulker' pet (Missing 'EntityShulkerPet' class for your version) [Will not effect your server]
[21:46:53] [Server thread/INFO]: [SimplePets Debug] Initializing Menu Items...
[21:46:53] [Server thread/INFO]: [SimplePets Debug] Loading Customizable Item Files...
[21:46:53] [Server thread/INFO]: [SimplePets Debug] Files have been loaded.
[21:46:53] [Server thread/INFO]: [SkMorkaz] Enabling SkMorkaz v0.21*
[21:46:53] [Server thread/INFO]: [SkMorkaz] [STDOUT] [SkMorkaz] Starting..
[21:46:53] [Server thread/WARN]: Nag author(s): '[Morkazoid]' of 'SkMorkaz v0.21' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[21:46:53] [Server thread/WARN]: [SkMorkaz] "SkMorkaz v0.21" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.Morkaz.skMorkaz.Events.EntityPortalSpawnListener.onEntityCreatePortalEvent(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [Morkazoid].
[21:46:53] [Server thread/INFO]: [SkMorkaz] Started!
[21:46:53] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.9
[21:46:53] [Server thread/INFO]: [skQuery] Locating classes from SkQuery...
[21:46:54] [Server thread/INFO]: [skQuery] Beginning to process a total of 119 from SkQuery
[21:46:54] [Server thread/INFO]: [skQuery] Out of 119 classes, 119 classes were loaded from SkQuery
[21:46:54] [Server thread/INFO]: [antiRedstoneClock] Enabling antiRedstoneClock v1.5.0
[21:46:54] [Server thread/INFO]: [antiRedstoneClock] Enabling Metrics
[21:46:54] [Server thread/INFO]: [antiRedstoneClock] An error occured while trying to enable metrics. Skipping...
[21:46:54] [Server thread/WARN]: [antiRedstoneClock] PlotSquared hasn't been found!
[21:46:54] [Server thread/INFO]: [antiRedstoneClock] Plugin loaded in 14 ms
[21:46:54] [Server thread/INFO]: [Rankup] Enabling Rankup v3.6.1
[21:46:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rankup [3.6.1]
[21:46:54] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.2-b807
[21:46:54] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.2-b807]  Enabled - By Rigby and fernferret
[21:46:54] [Server thread/INFO]: [Graves] Enabling Graves v4.9
[21:46:54] [Server thread/INFO]: [Graves] Integration: Hooked into Vault 1.7.3-b131.
[21:46:54] [Server thread/INFO]: [Graves] Integration: Hooked into ProtocolLib 5.0.0-SNAPSHOT-638.
[21:46:54] [Server thread/INFO]: [Graves] Integration: Hooked into WorldEdit 7.2.15+6463-5ca4dff.
[21:46:54] [Server thread/INFO]: [Graves] Integration: Hooked into WorldGuard 7.0.9+5934e49.
[21:46:54] [Server thread/INFO]: [Graves] Integration: Hooked into Oraxen 1.160.0.
[21:46:54] [Server thread/INFO]: [Graves] Integration: Hooked into MiniMessage.
[21:46:54] [Server thread/INFO]: [Graves] Integration: Hooked into ChestSort 13.6.3.
[21:46:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: graves [4.9]
[21:46:54] [Server thread/INFO]: [Graves] Integration: Hooked into PlaceholderAPI 2.11.3.
[21:46:54] [Server thread/INFO]: [Graves] Compatibility: Essentials Detected, make sure you don't have the essentials.keepinv or essentials.keepxp permissions.
[21:46:54] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.21
[21:46:54] [Server thread/INFO]: [FastChunkPregenerator] Enabling FastChunkPregenerator v2.0.6-SNAPSHOT
[21:46:54] [Server thread/INFO]: [FastChunkPregenerator] >> Paper was found.
[21:46:54] [Server thread/INFO]: [FastChunkPregenerator] >> Async chunk loading support is enabled.
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen start' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen resume' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced load' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced free' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced worldinfo' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced totalinfo' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced view on' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced view off' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced view once' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen fillvanilla' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen pause' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen cancel' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen pending' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[21:46:54] [Server thread/INFO]: [UberEnchant] Enabling UberEnchant v8.9.10
[21:46:54] [Server thread/INFO]: [Skellett] Enabling Skellett v2.0.9
[21:46:54] [Server thread/INFO]: [Skellett] Registered 27 Effects, 11 Conditions, 70 Expressions and 16 Events
[21:46:55] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[21:46:55] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[21:46:55] [Server thread/INFO]: [Geyser-Spigot] 
[21:46:55] [Server thread/INFO]: [Geyser-Spigot] Geyser Version 2.1.2-SNAPSHOT (git-master-ea2bac4) wird geladen
[21:46:55] [Server thread/INFO]: [Geyser-Spigot] 
[21:46:55] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[21:46:59] [Server thread/INFO]: [Geyser-Spigot] Geyser wurde unter 0.0.0.0:25565 gestartet
[21:46:59] [Server thread/INFO]: [Geyser-Spigot] Fertig (4,009s)! Verwende /geyser help für Hilfe!
[21:46:59] [Server thread/INFO]: Starting GS4 status listener
[21:46:59] [Server thread/WARN]: Unable to initialise query system on 46.253.113.234:25565
java.net.BindException: Die Adresse wird bereits verwendet
    at sun.nio.ch.Net.bind0(Native Method) ~[?:?]
    at sun.nio.ch.Net.bind(Net.java:555) ~[?:?]
    at sun.nio.ch.DatagramChannelImpl.bindInternal(DatagramChannelImpl.java:1194) ~[?:?]
    at sun.nio.ch.DatagramChannelImpl.bind(DatagramChannelImpl.java:1164) ~[?:?]
    at sun.nio.ch.DatagramSocketAdaptor.bind(DatagramSocketAdaptor.java:107) ~[?:?]
    at java.net.DatagramSocket.createDelegate(DatagramSocket.java:1426) ~[?:?]
    at java.net.DatagramSocket.<init>(DatagramSocket.java:330) ~[?:?]
    at java.net.DatagramSocket.<init>(DatagramSocket.java:389) ~[?:?]
    at net.minecraft.server.rcon.thread.QueryThreadGs4.initSocket(QueryThreadGs4.java:328) ~[?:?]
    at net.minecraft.server.rcon.thread.QueryThreadGs4.start(QueryThreadGs4.java:311) ~[?:?]
    at net.minecraft.server.rcon.thread.QueryThreadGs4.create(QueryThreadGs4.java:79) ~[?:?]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:319) ~[paper-1.20.1.jar:git-Paper-128]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.20.1.jar:git-Paper-128]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-128]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[21:46:59] [Server thread/INFO]: Running delayed init tasks
[21:46:59] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[21:46:59] [Craft Scheduler Thread - 7 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[21:46:59] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[21:46:59] [Craft Scheduler Thread - 10 - Essentials/INFO]: [Essentials] Fetching version information...
[21:46:59] [Craft Scheduler Thread - 16 - CookieClicker/INFO]: [CookieClicker] [STDOUT] [CookieClicker] You are using an outdated version!
[21:46:59] [Craft Scheduler Thread - 16 - CookieClicker/WARN]: Nag author(s): '[ZilloLP]' of 'CookieClicker v4.5' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[21:46:59] [Craft Scheduler Thread - 16 - CookieClicker/INFO]: [CookieClicker] [STDOUT] [CookieClicker] Latest version: 4.6. You are on version: 4.5.
[21:46:59] [Craft Scheduler Thread - 16 - CookieClicker/INFO]: [CookieClicker] [STDOUT] [CookieClicker] Update here: https://www.spigotmc.org/resources/cookieclicker.65485/
[21:46:59] [Craft Scheduler Thread - 18 - InvisibleItemFrames/INFO]: [Invisible ItemFrame] No updates available!
[21:46:59] [Craft Scheduler Thread - 14 - Booster/INFO]:  Keine Updates vorhanden!
[21:46:59] [Craft Scheduler Thread - 9 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[21:46:59] [Craft Scheduler Thread - 23 - Vault/INFO]: [Vault] Checking for Updates ... 
[21:46:59] [Craft Scheduler Thread - 9 - BetterRTP/INFO]: [BetterRTP] Database PLAYERS:Players configured and loaded!
[21:46:59] [Craft Scheduler Thread - 27 - BetterRTP/INFO]: [BetterRTP] Database QUEUE:Queue configured and loaded!
[21:46:59] [Craft Scheduler Thread - 24 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:Bauwelt configured and loaded!
[21:46:59] [Craft Scheduler Thread - 24 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:Bauwelt_nether configured and loaded!
[21:46:59] [Craft Scheduler Thread - 24 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:Bauwelt_the_end configured and loaded!
[21:46:59] [Craft Scheduler Thread - 24 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:spawntospawn configured and loaded!
[21:46:59] [Craft Scheduler Thread - 24 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:Farmwelt_das_Nether configured and loaded!
[21:46:59] [Craft Scheduler Thread - 24 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:Farmwelt configured and loaded!
[21:46:59] [Craft Scheduler Thread - 24 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:flatroom configured and loaded!
[21:46:59] [Craft Scheduler Thread - 24 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:Farmwelt_das_End configured and loaded!
[21:46:59] [Craft Scheduler Thread - 24 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:manapoolcratesspawn configured and loaded!
[21:46:59] [Craft Scheduler Thread - 24 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:Farmwelt_Nether configured and loaded!
[21:46:59] [Craft Scheduler Thread - 28 - BetterRTP/INFO]: [BetterRTP] Database CHUNK_DATA:ChunkData configured and loaded!
[21:46:59] [Server thread/INFO]: [Skript] Loading variables...
[21:46:59] [Craft Scheduler Thread - 23 - Vault/INFO]: [Vault] No new version available
[21:46:59] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loaded 38 holograms!
[21:46:59] [Server thread/INFO]: [Skript] Loaded 674 variables in 0.0 seconds
[21:46:59] [Craft Scheduler Thread - 10 - Essentials/WARN]: [Essentials] You're 57 EssentialsX dev build(s) out of date!
[21:46:59] [Craft Scheduler Thread - 10 - Essentials/WARN]: [Essentials] Hier herunterladen: https://essentialsx.net/downloads.html
[21:46:59] [Craft Scheduler Thread - 19 - Skulls/INFO]: Skulls » Loaded 131 history inserts
[21:47:00] [Craft Scheduler Thread - 15 - Oraxen/INFO]: Oraxen | Resourcepack uploaded on url http://atlas.oraxen.com:8080/pack.zip?id=b5cc32c4e2b99a7389f757935517548ed19dfabb in 19362 ms
[21:47:03] [Craft Scheduler Thread - 17 - TradeSystem/ERROR]: [TradeSystem] Database logging could not be started: Could not create connection to database server. Attempted reconnect 3 times. Giving up.
[21:47:05] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[21:47:05] [Server thread/INFO]: [Skript] Loaded 19 scripts with a total of 19 triggers and 129 commands in 5.64 seconds
[21:47:05] [Server thread/INFO]: [Skript] Finished loading.
[21:47:05] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.2]
[21:47:05] [Server thread/INFO]: [AuctionHouse] Registered Service Provider Essentials for Vault's Economy API
[21:47:05] [Server thread/INFO]: [AuctionHouse] Registered Service Provider LuckPerms for Vault's Chat API
[21:47:05] [Server thread/INFO]: Skulls » Loaded 54184 skulls in 19.086,687ms
[21:47:05] [Server thread/INFO]: [SimplePets Debug] Found support for version(s): [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]
[21:47:05] [Server thread/INFO]: [SimplePets Debug] Targeting version: 1.20.1
[21:47:05] [Server thread/INFO]: [SimplePets Debug] Initializing Inventories...
[21:47:05] [Server thread/INFO]: [SimplePets Debug] Loading Customizable Inventories Files...
[21:47:05] [Server thread/INFO]: [SimplePets Debug] Files have been loaded.
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] [Config Expansion] Loading the configs ...
[21:47:05] [Server thread/ERROR]: [PlaceholderAPI] Failed to load expansion class ConfigExpansion - One of its properties is null which is not allowed!
java.lang.NullPointerException: Cannot invoke "org.bukkit.configuration.ConfigurationSection.getKeys(boolean)" because the return value of "me.gabytm.placeholderapi.config.ConfigExpansion.getConfigSection(String)" is null
    at me.gabytm.placeholderapi.config.ConfigExpansion.register(ConfigExpansion.java:56) ~[?:?]
    at me.clip.placeholderapi.expansion.manager.LocalExpansionManager.register(LocalExpansionManager.java:191) ~[PlaceholderAPI-2.11.3.jar:?]
    at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?]
    at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]
    at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]
    at me.clip.placeholderapi.expansion.manager.LocalExpansionManager.lambda$registerAll$4(LocalExpansionManager.java:356) ~[PlaceholderAPI-2.11.3.jar:?]
    at me.clip.placeholderapi.util.Futures.lambda$null$0(Futures.java:46) ~[PlaceholderAPI-2.11.3.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-128]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.1.jar:git-Paper-128]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1112) ~[paper-1.20.1.jar:git-Paper-128]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.1.jar:git-Paper-128]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.2]
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Advancements [1.7]
[21:47:05] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion skillapi due to a missing plugin: SkillAPI
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.2]
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: perworld [1.0.1]
[21:47:05] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: world [1.2.2]
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: objective [4.2.0]
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: sbtags [1.0.1]
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.4]
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tempdata [0.1-BETA]
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plugin [1.1.0]
[21:47:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee [2.2]
[21:47:05] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion superbvote due to a missing plugin: SuperbVote
[21:47:05] [Server thread/INFO]: 14 placeholder hook(s) registered! 2 placeholder hook(s) have an update available.
[21:47:06] [Server thread/INFO]: [Citizens] 73 NPCs geladen.
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-630d674278ee (630d6742-78ee-215b-9799-7cae631b9325) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-1a81220add9c (1a81220a-dd9c-2e79-9e00-5c817cece74f) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-9eeea8e1212c (9eeea8e1-212c-227a-a6b9-e8319698ea02) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-5bda3bf6d5c3 (5bda3bf6-d5c3-2cc0-8cc0-5750fad7c4aa) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-8e452b9c5bbb (8e452b9c-5bbb-2d6c-9be9-bbd6198a7121) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-fce160077bd4 (fce16007-7bd4-28ae-a5cc-8cd46f947c9e) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-e3f66bd1c695 (e3f66bd1-c695-2d8f-882e-2987cc08efa2) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-9de299874a32 (9de29987-4a32-2d07-939f-6ee7b61a2ac1) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-da63f502ceed (da63f502-ceed-2a67-a85f-2fda35bf78b1) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-0edf359decda (0edf359d-ecda-24a5-9c96-121c419d94b8) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-33b828664233 (33b82866-4233-244b-8976-ab6b202fdcef) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-06f3400547db (06f34005-47db-2160-8156-8c65c1634319) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for Insel 1 (f0b20be2-e5e1-284f-935a-bdca1ee2bc3d) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for Insel 4 (c01289e3-1f5d-2994-a326-fce03ed5d249) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for Insel 2 (5ee9868c-7310-26e0-ac4d-2b976e4cb167) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for Insel 3 (933710df-6d5b-2a75-b1d0-33056643592a) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-4e08b496f2d7 (4e08b496-f2d7-263b-8e46-d5e4239e61b7) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-b6c5cddb6315 (b6c5cddb-6315-2fc0-aebd-46036bca2b69) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for Sachiko87 (ddc3f7ac-ec35-2a40-bf75-1c89d59c549d) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-e65546dbfdbe (e65546db-fdbe-2b1b-8062-5b62762ba732) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-b3523bd5a284 (b3523bd5-a284-2314-81ba-7cff58090be0) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:06] [Server thread/INFO]: [Essentials] Created a User for CIT-11024b1fe1ac (11024b1f-e1ac-282e-9675-70213d25684e) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:07] [Server thread/INFO]: [Essentials] Created a User for 1 (e69d2ebb-4f1a-20bb-af9e-f4386ecf34cf) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:07] [Server thread/INFO]: [Essentials] Created a User for Reaper_exe01 (5a501201-d178-2613-89b1-54279eda5e52) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:07] [Server thread/INFO]: [Essentials] Created a User for Reaper_exe01 (48a64ba4-396b-2c6f-83bf-e82f119be816) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:07] [Server thread/INFO]: [Essentials] Created a User for Goleme42 (ea6180f5-740e-2bbd-aac9-dee197ef743a) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:07] [Server thread/INFO]: [Essentials] Created a User for Reaper_exe01 (2f4d6e27-7521-2aa4-940d-acbcfb83d96b) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:07] [Server thread/INFO]: [Essentials] Created a User for CIT-8bb02fec22c2 (8bb02fec-22c2-2638-ae82-55cfa4ab631f) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:07] [Server thread/INFO]: [Essentials] Created a User for CIT-62ce4683b6e3 (62ce4683-b6e3-24c1-9d8d-ad6091f3a2dd) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:07] [Server thread/INFO]: [Essentials] Created a User for CIT-fda0643354c9 (fda06433-54c9-2aa0-8f1d-b38e8b09d4c2) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:07] [Server thread/INFO]: [Essentials] Created a User for CIT-5fd7444e405b (5fd7444e-405b-2219-92f6-7321878bac56) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:07] [Server thread/INFO]: [BeautyQuests] You are using the latest version of BeautyQuests.
[21:47:07] [Server thread/WARN]: [ViaVersion] You are running a development version of the plugin, please report any bugs to GitHub.
[21:47:07] [Server thread/INFO]: [AuctionHouse] Found PlaceholderAPI plugin
[21:47:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionhouse [3.5]
[21:47:07] [Server thread/INFO]: [AuctionHouse] Registered PlaceholderAPI placeholders
[21:47:07] [Server thread/INFO]: Done (67.095s)! For help, type "help"
[21:47:07] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 7520ms or 150 ticks behind
[21:47:07] [Server thread/INFO]: Timings Reset
[21:47:07] [Server thread/INFO]: [BeautyQuests] 89 quests loaded (0.159s)!
[21:47:07] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 463
[21:47:07] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[21:47:08] [Server thread/ERROR]: [PlayerParticles] Invalid effect name: 'cloud'!
[21:47:08] [Server thread/ERROR]: [PlayerParticles] Invalid effect name: 'dripping_water'!
[21:47:08] [Server thread/ERROR]: [PlayerParticles] Invalid effect name: 'dust'!
[21:47:08] [Server thread/ERROR]: [PlayerParticles] Invalid effect name: 'entity_effect'!
[21:47:08] [Server thread/ERROR]: [PlayerParticles] Invalid effect name: 'dust'!
[21:47:08] [Server thread/ERROR]: [PlayerParticles] Invalid effect name: 'dust'!
[21:47:08] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[21:47:08] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[21:47:08] [Craft Scheduler Thread - 9 - BetterRTP/INFO]: [BetterRTP] Attempting to queue up some more safe locations...
[21:47:08] [Craft Scheduler Thread - 18 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.12.2 New Version: 6.13.1
[21:47:09] [Server thread/WARN]: [BetterRTP] Seems like the world `Farmwelt_das_Nether` does not have a `WorldType` declared. Please add/fix this in the config.yml file! This world will be treated as an overworld! If this world is a nether world, configure it to NETHER (example: `- Farmwelt_das_Nether: NETHER`
[21:47:10] [Server thread/ERROR]: [NexEngine] Invalid/Unloaded world for: '29828.0,66.0,149234.0,0.0,0.0,Avaris' location!
[21:47:15] [Server thread/INFO]: com.mojang.authlib.GameProfile@37e2264d[id=<null>,name=Miner_SMP,properties={},legacy=false] (/84.175.43.219:57304) lost connection: Disconnected
[21:47:17] [User Authenticator #0/INFO]: UUID of player Miner_SMP is c4c17a5e-911d-4e2c-b233-e40a8aa325a2
[21:47:18] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.network.protocol.game.PacketPlayOutSpawnEntity.<init>(net.minecraft.world.entity.EntityLiving)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor0(Class.java:3585)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor(Class.java:2271)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.createHologram(HologramUtil.java:153)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.spawn(HologramUtil.java:109)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.manager.PlayerManager.spawnHolograms(PlayerManager.java:50)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.listener.PlayerConnectionListener.onPlayerJoinEvent(PlayerConnectionListener.java:21)
[21:47:18] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor752.execute(Unknown Source)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[21:47:18] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:47:18] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:47:18] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:339)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[21:47:18] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:602)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1587)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1394)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1171)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[21:47:18] [Server thread/INFO]: [CookieClicker] [STDOUT] [CookieClicker] Error on creating the hologram
[21:47:18] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.network.protocol.game.PacketPlayOutSpawnEntity.<init>(net.minecraft.world.entity.EntityLiving)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor0(Class.java:3585)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor(Class.java:2271)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.createHologram(HologramUtil.java:153)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.spawn(HologramUtil.java:109)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.manager.PlayerManager.spawnHolograms(PlayerManager.java:50)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.listener.PlayerConnectionListener.onPlayerJoinEvent(PlayerConnectionListener.java:21)
[21:47:18] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor752.execute(Unknown Source)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[21:47:18] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:47:18] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:47:18] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:339)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[21:47:18] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:602)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1587)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1394)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1171)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[21:47:18] [Server thread/INFO]: [CookieClicker] [STDOUT] [CookieClicker] Error on creating the hologram
[21:47:18] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.network.protocol.game.PacketPlayOutSpawnEntity.<init>(net.minecraft.world.entity.EntityLiving)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor0(Class.java:3585)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor(Class.java:2271)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.createHologram(HologramUtil.java:153)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.spawn(HologramUtil.java:109)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.manager.PlayerManager.spawnHolograms(PlayerManager.java:50)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.listener.PlayerConnectionListener.onPlayerJoinEvent(PlayerConnectionListener.java:21)
[21:47:18] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor752.execute(Unknown Source)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[21:47:18] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:47:18] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:47:18] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:339)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[21:47:18] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:602)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1587)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1394)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1171)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[21:47:18] [Server thread/INFO]: [CookieClicker] [STDOUT] [CookieClicker] Error on creating the hologram
[21:47:18] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.network.protocol.game.PacketPlayOutSpawnEntity.<init>(net.minecraft.world.entity.EntityLiving)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor0(Class.java:3585)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor(Class.java:2271)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.createHologram(HologramUtil.java:153)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.spawn(HologramUtil.java:109)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.manager.PlayerManager.spawnHolograms(PlayerManager.java:50)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.listener.PlayerConnectionListener.onPlayerJoinEvent(PlayerConnectionListener.java:21)
[21:47:18] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor752.execute(Unknown Source)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[21:47:18] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:47:18] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:47:18] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:339)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[21:47:18] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:602)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1587)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1394)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1171)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[21:47:18] [Server thread/INFO]: [CookieClicker] [STDOUT] [CookieClicker] Error on creating the hologram
[21:47:18] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.network.protocol.game.PacketPlayOutSpawnEntity.<init>(net.minecraft.world.entity.EntityLiving)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor0(Class.java:3585)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor(Class.java:2271)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.createHologram(HologramUtil.java:153)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.spawn(HologramUtil.java:109)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.manager.PlayerManager.spawnHolograms(PlayerManager.java:50)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.listener.PlayerConnectionListener.onPlayerJoinEvent(PlayerConnectionListener.java:21)
[21:47:18] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor752.execute(Unknown Source)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[21:47:18] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:47:18] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:47:18] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:339)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[21:47:18] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:602)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1587)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1394)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1171)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[21:47:18] [Server thread/INFO]: [CookieClicker] [STDOUT] [CookieClicker] Error on creating the hologram
[21:47:18] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.network.protocol.game.PacketPlayOutSpawnEntity.<init>(net.minecraft.world.entity.EntityLiving)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor0(Class.java:3585)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor(Class.java:2271)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.createHologram(HologramUtil.java:153)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.spawn(HologramUtil.java:109)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.manager.PlayerManager.spawnHolograms(PlayerManager.java:50)
[21:47:18] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.listener.PlayerConnectionListener.onPlayerJoinEvent(PlayerConnectionListener.java:21)
[21:47:18] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor752.execute(Unknown Source)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[21:47:18] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:47:18] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:47:18] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[21:47:18] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:339)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[21:47:18] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:602)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1587)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1394)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1171)
[21:47:18] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[21:47:18] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[21:47:18] [Server thread/INFO]: [CookieClicker] [STDOUT] [CookieClicker] Error on creating the hologram
[21:47:18] [Server thread/INFO]: ☠ Miner_SMP ☠ hat den Server betreten.
[21:47:18] [Server thread/INFO]: Miner_SMP[/84.175.43.219:57307] logged in with entity id 2094 at ([Bauwelt]28057.5, 3.0, 144832.5)
[21:47:19] [Server thread/WARN]: [Essentials] Permissions lag notice with (LuckPermsHandler). Response took 102,843630ms. Summary: Getting prefix for Miner_SMP
[21:47:20] [Server thread/INFO]: [Essentials] Created a User for CIT-0134fd4edc99 (0134fd4e-dc99-2374-8360-133a79412f30) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:47:24] [User Authenticator #0/INFO]: UUID of player Sachiko87 is 40c38cf6-17e8-420d-bc85-7fc3e8b51aaa
[21:47:24] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.network.protocol.game.PacketPlayOutSpawnEntity.<init>(net.minecraft.world.entity.EntityLiving)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor0(Class.java:3585)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor(Class.java:2271)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.createHologram(HologramUtil.java:153)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.spawn(HologramUtil.java:109)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.manager.PlayerManager.spawnHolograms(PlayerManager.java:50)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.listener.PlayerConnectionListener.onPlayerJoinEvent(PlayerConnectionListener.java:21)
[21:47:24] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor752.execute(Unknown Source)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[21:47:24] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:47:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:47:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:339)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[21:47:24] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:602)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1587)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1394)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1171)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[21:47:24] [Server thread/INFO]: [CookieClicker] [STDOUT] [CookieClicker] Error on creating the hologram
[21:47:24] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.network.protocol.game.PacketPlayOutSpawnEntity.<init>(net.minecraft.world.entity.EntityLiving)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor0(Class.java:3585)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor(Class.java:2271)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.createHologram(HologramUtil.java:153)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.spawn(HologramUtil.java:109)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.manager.PlayerManager.spawnHolograms(PlayerManager.java:50)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.listener.PlayerConnectionListener.onPlayerJoinEvent(PlayerConnectionListener.java:21)
[21:47:24] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor752.execute(Unknown Source)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[21:47:24] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:47:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:47:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:339)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[21:47:24] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:602)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1587)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1394)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1171)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[21:47:24] [Server thread/INFO]: [CookieClicker] [STDOUT] [CookieClicker] Error on creating the hologram
[21:47:24] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.network.protocol.game.PacketPlayOutSpawnEntity.<init>(net.minecraft.world.entity.EntityLiving)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor0(Class.java:3585)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor(Class.java:2271)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.createHologram(HologramUtil.java:153)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.spawn(HologramUtil.java:109)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.manager.PlayerManager.spawnHolograms(PlayerManager.java:50)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.listener.PlayerConnectionListener.onPlayerJoinEvent(PlayerConnectionListener.java:21)
[21:47:24] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor752.execute(Unknown Source)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[21:47:24] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:47:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:47:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:339)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[21:47:24] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:602)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1587)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1394)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1171)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[21:47:24] [Server thread/INFO]: [CookieClicker] [STDOUT] [CookieClicker] Error on creating the hologram
[21:47:24] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.network.protocol.game.PacketPlayOutSpawnEntity.<init>(net.minecraft.world.entity.EntityLiving)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor0(Class.java:3585)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor(Class.java:2271)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.createHologram(HologramUtil.java:153)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.spawn(HologramUtil.java:109)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.manager.PlayerManager.spawnHolograms(PlayerManager.java:50)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.listener.PlayerConnectionListener.onPlayerJoinEvent(PlayerConnectionListener.java:21)
[21:47:24] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor752.execute(Unknown Source)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[21:47:24] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:47:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:47:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:339)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[21:47:24] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:602)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1587)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1394)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1171)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[21:47:24] [Server thread/INFO]: [CookieClicker] [STDOUT] [CookieClicker] Error on creating the hologram
[21:47:24] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.network.protocol.game.PacketPlayOutSpawnEntity.<init>(net.minecraft.world.entity.EntityLiving)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor0(Class.java:3585)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor(Class.java:2271)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.createHologram(HologramUtil.java:153)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.spawn(HologramUtil.java:109)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.manager.PlayerManager.spawnHolograms(PlayerManager.java:50)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.listener.PlayerConnectionListener.onPlayerJoinEvent(PlayerConnectionListener.java:21)
[21:47:24] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor752.execute(Unknown Source)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[21:47:24] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:47:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:47:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:339)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[21:47:24] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:602)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1587)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1394)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1171)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[21:47:24] [Server thread/INFO]: [CookieClicker] [STDOUT] [CookieClicker] Error on creating the hologram
[21:47:24] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.network.protocol.game.PacketPlayOutSpawnEntity.<init>(net.minecraft.world.entity.EntityLiving)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor0(Class.java:3585)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor(Class.java:2271)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.createHologram(HologramUtil.java:153)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.utils.HologramUtil.spawn(HologramUtil.java:109)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.manager.PlayerManager.spawnHolograms(PlayerManager.java:50)
[21:47:24] [Server thread/WARN]:     at CookieClicker-4.5.jar//de.zillolp.cookieclicker.listener.PlayerConnectionListener.onPlayerJoinEvent(PlayerConnectionListener.java:21)
[21:47:24] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor752.execute(Unknown Source)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[21:47:24] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:47:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:47:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[21:47:24] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:339)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[21:47:24] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:602)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1587)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1394)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1171)
[21:47:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[21:47:24] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[21:47:24] [Server thread/INFO]: [CookieClicker] [STDOUT] [CookieClicker] Error on creating the hologram
[21:47:24] [Server thread/INFO]: ☠ Sachiko87 ☠ hat den Server betreten.
[21:47:24] [Server thread/INFO]: Sachiko87[/93.223.249.141:53092] logged in with entity id 2622 at ([Bauwelt]28057.5, 3.0, 144832.5)
[21:47:29] [Server thread/INFO]: Miner_SMP issued server command: /ec
[21:47:59] [Craft Scheduler Thread - 9 - BetterRTP/INFO]: [BetterRTP] Max attempts to create a Queue reached for default_Farmwelt_das_Nether (amount: 0)
[21:48:00] [Server thread/WARN]: [BetterRTP] Seems like the world `Bauwelt_nether` does not have a `WorldType` declared. Please add/fix this in the config.yml file! This world will be treated as an overworld! If this world is a nether world, configure it to NETHER (example: `- Bauwelt_nether: NETHER`
[21:48:52] [Craft Scheduler Thread - 25 - BetterRTP/INFO]: [BetterRTP] Max attempts to create a Queue reached for default_Farmwelt_das_Nether (amount: 0)
[21:48:52] [Server thread/INFO]: Sachiko87 issued server command: /npc create
[21:48:54] [Server thread/INFO]: Sachiko87 issued server command: /npc create bob
[21:48:54] [Server thread/INFO]: [Essentials] Created a User for bob (296de2d4-83cb-2971-ad1d-d90eef0669be) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[21:49:10] [Server thread/INFO]: ☣ Sachiko87 ☣  ҠI⚔Ͳ  ☠ bob ☠
[21:49:44] [Craft Scheduler Thread - 31 - BetterRTP/INFO]: [BetterRTP] Max attempts to create a Queue reached for default_Farmwelt_das_Nether (amount: 0)