Paste #119520: Full Log of Server

Date: 2024/01/17 06:55:18 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[14:19:03] [ServerMain/WARN]: You specified a resource pack without providing a sha1 hash. Pack will be updated on the client only if you change the name of the pack.
[14:19:03] [ServerMain/WARN]: resource-pack-id missing, using default of 5d8e5f26-a158-34f9-9e0b-909106dac480
[14:19:03] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[14:19:06] [ServerMain/INFO]: Loaded 7 recipes
[14:19:08] [Server thread/INFO]: Starting minecraft server version 1.20.4
[14:19:08] [Server thread/INFO]: Loading properties
[14:19:08] [Server thread/ERROR]: Failed to load help.yml. Verify the yaml indentation is correct. Reverting to default help.yml.
[14:19:08] [Server thread/INFO]: This server is running CraftBukkit version 4001-Spigot-49e36b8-1da8d9a (MC: 1.20.4) (Implementing API version 1.20.4-R0.1-SNAPSHOT)
[14:19:09] [Server thread/INFO]: Server Ping Player Sample Count: 12
[14:19:09] [Server thread/INFO]: Using 4 threads for Netty based IO
[14:19:09] [Server thread/INFO]: Debug logging is disabled
[14:19:09] [Server thread/INFO]: Default game type: SURVIVAL
[14:19:09] [Server thread/INFO]: Generating keypair
[14:19:09] [Server thread/INFO]: Starting Minecraft server on *:25565
[14:19:09] [Server thread/INFO]: Using epoll channel type
[14:19:10] [Server thread/ERROR]: Ambiguous plugin name `Essentials' for files `plugins/EssentialsX.jar' and `plugins/EssentialsX-2.20.1.jar' in `plugins'
[14:19:10] [Server thread/ERROR]: Could not load 'plugins/coords-1.0-1.jar' in folder 'plugins'
org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml
    at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:178) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:144) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.loadPlugins(CraftServer.java:428) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:219) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1000) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: java.util.zip.ZipException: zip END header not found
    at java.util.zip.ZipFile$Source.findEND(ZipFile.java:1633) ~[?:?]
    at java.util.zip.ZipFile$Source.initCEN(ZipFile.java:1641) ~[?:?]
    at java.util.zip.ZipFile$Source.<init>(ZipFile.java:1479) ~[?:?]
    at java.util.zip.ZipFile$Source.get(ZipFile.java:1441) ~[?:?]
    at java.util.zip.ZipFile$CleanableResource.<init>(ZipFile.java:718) ~[?:?]
    at java.util.zip.ZipFile.<init>(ZipFile.java:252) ~[?:?]
    at java.util.zip.ZipFile.<init>(ZipFile.java:181) ~[?:?]
    at java.util.jar.JarFile.<init>(JarFile.java:346) ~[?:?]
    at java.util.jar.JarFile.<init>(JarFile.java:317) ~[?:?]
    at java.util.jar.JarFile.<init>(JarFile.java:283) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:166) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    ... 6 more
[14:19:10] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[14:19:14] [Server thread/WARN]: Legacy plugin PlayTime v3.6 does not specify an api-version.
[14:19:14] [Server thread/WARN]: Legacy plugin WorldBorder v1.8.7 does not specify an api-version.
[14:19:14] [Server thread/ERROR]: Could not load 'plugins/FancyNpcs.jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: Exception initializing main class `de.oliver.fancynpcs.FancyNpcs'
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:96) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:145) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:394) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:301) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.loadPlugins(CraftServer.java:428) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:219) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1000) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: java.lang.reflect.InvocationTargetException
    at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?]
    at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?]
    at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?]
    at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?]
    at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:88) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    ... 8 more
Caused by: java.lang.NoClassDefFoundError: io/papermc/paper/plugin/configuration/PluginMeta
    at de.oliver.fancylib.serverSoftware.ServerSoftware.isFolia(ServerSoftware.java:15) ~[?:?]
    at de.oliver.fancynpcs.FancyNpcs.<init>(FancyNpcs.java:59) ~[?:?]
    at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?]
    at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?]
    at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?]
    at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?]
    at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:88) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    ... 8 more
Caused by: java.lang.ClassNotFoundException: io.papermc.paper.plugin.configuration.PluginMeta
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:160) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:112) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    at de.oliver.fancylib.serverSoftware.ServerSoftware.isFolia(ServerSoftware.java:15) ~[?:?]
    at de.oliver.fancynpcs.FancyNpcs.<init>(FancyNpcs.java:59) ~[?:?]
    at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?]
    at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?]
    at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?]
    at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?]
    at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:88) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    ... 8 more
[14:19:14] [Server thread/WARN]: java.net.UnknownHostException: files.skyrage.de
[14:19:14] [Server thread/WARN]:     at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:572)
[14:19:14] [Server thread/WARN]:     at java.base/java.net.Socket.connect(Socket.java:633)
[14:19:14] [Server thread/WARN]:     at java.base/java.net.Socket.connect(Socket.java:583)
[14:19:14] [Server thread/WARN]:     at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:183)
[14:19:14] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:533)
[14:19:14] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:638)
[14:19:14] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.<init>(HttpClient.java:281)
[14:19:14] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:386)
[14:19:14] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:408)
[14:19:14] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309)
[14:19:14] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)
[14:19:14] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)
[14:19:14] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057)
[14:19:14] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1665)
[14:19:14] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589)
[14:19:14] [Server thread/WARN]:     at com.live.bemmamin.gps.MainPlugin.init(:65)
[14:19:14] [Server thread/WARN]:     at com.live.bemmamin.gps.MainPlugin.<clinit>(:17)
[14:19:14] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[14:19:14] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:467)
[14:19:14] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:68)
[14:19:14] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:145)
[14:19:14] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:394)
[14:19:14] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:301)
[14:19:14] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.loadPlugins(CraftServer.java:428)
[14:19:14] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:219)
[14:19:14] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1000)
[14:19:14] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[14:19:14] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:840)
[14:19:14] [Server thread/ERROR]: Could not load 'plugins/GPS.jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: java.lang.Error: java.net.UnknownHostException: files.skyrage.de
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:149) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:394) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:301) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.loadPlugins(CraftServer.java:428) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:219) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1000) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: java.lang.Error: java.net.UnknownHostException: files.skyrage.de
    at com.live.bemmamin.gps.MainPlugin.init(:123) ~[?:?]
    at com.live.bemmamin.gps.MainPlugin.<clinit>(:17) ~[?:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:467) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:68) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:145) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    ... 7 more
Caused by: java.net.UnknownHostException: files.skyrage.de
    at sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:572) ~[?:?]
    at java.net.Socket.connect(Socket.java:633) ~[?:?]
    at java.net.Socket.connect(Socket.java:583) ~[?:?]
    at sun.net.NetworkClient.doConnect(NetworkClient.java:183) ~[?:?]
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:533) ~[?:?]
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:638) ~[?:?]
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:281) ~[?:?]
    at sun.net.www.http.HttpClient.New(HttpClient.java:386) ~[?:?]
    at sun.net.www.http.HttpClient.New(HttpClient.java:408) ~[?:?]
    at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) ~[?:?]
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) ~[?:?]
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) ~[?:?]
    at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) ~[?:?]
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1665) ~[?:?]
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) ~[?:?]
    at com.live.bemmamin.gps.MainPlugin.init(:65) ~[?:?]
    at com.live.bemmamin.gps.MainPlugin.<clinit>(:17) ~[?:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:467) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:68) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:145) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    ... 7 more
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loading 4 libraries... please wait
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/net/kyori/adventure-platform-bukkit/4.3.0/adventure-platform-bukkit-4.3.0.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/net/kyori/adventure-platform-api/4.3.0/adventure-platform-api-4.3.0.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/net/kyori/adventure-api/4.13.0/adventure-api-4.13.0.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/net/kyori/adventure-key/4.13.0/adventure-key-4.13.0.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/net/kyori/adventure-nbt/4.13.0/adventure-nbt-4.13.0.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/net/kyori/adventure-text-serializer-gson/4.13.0/adventure-text-serializer-gson-4.13.0.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.0/adventure-text-serializer-gson-legacy-impl-4.13.0.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/net/kyori/adventure-platform-facet/4.3.0/adventure-platform-facet-4.3.0.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/net/kyori/adventure-platform-viaversion/4.3.0/adventure-platform-viaversion-4.3.0.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/org/mariadb/jdbc/mariadb-java-client/3.1.2/mariadb-java-client-3.1.2.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.8.10/kotlin-stdlib-1.8.10.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.10/kotlin-stdlib-common-1.8.10.jar
[14:19:15] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded library /home/ftpuser/Minecraft/spigot/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[14:19:15] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.116
[14:19:16] [Server thread/INFO]: [PluginConstructorAPI] Loading PluginConstructorAPI v1.0.50
[14:19:16] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.5
[14:19:16] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.2
[14:19:16] [Server thread/INFO]: [CMILib] Loading CMILib v1.4.4.2
[14:19:16] [Server thread/INFO]: [PlugMan] Loading PlugMan v2.1.7
[14:19:16] [Server thread/INFO]: [PlayTime] Loading PlayTime v3.6
[14:19:16] [Server thread/INFO]: [WorldBorder] Loading WorldBorder v1.8.7
[14:19:16] [Server thread/INFO]: [UltimateFood] Loading UltimateFood v1.1.4
[14:19:16] [Server thread/INFO]: [Blue Slime Core] Loading BlueSlimeCore v2.9.4.402
[14:19:16] [Server thread/ERROR]: Failed to create language folder at path 'plugins/BlueSlimeCore/language'. initializing BlueSlimeCore v2.9.4.402 (Is it up to date?)
java.lang.IllegalStateException: Failed to create language folder at path 'plugins/BlueSlimeCore/language'.
    at com.github.sirblobman.api.language.LanguageManager.saveDefaultLanguageFiles(LanguageManager.java:258) ~[?:?]
    at com.github.sirblobman.api.core.CorePlugin.onLoad(CorePlugin.java:56) ~[?:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.loadPlugins(CraftServer.java:433) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:219) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1000) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[14:19:16] [Server thread/INFO]: [CoordMarker] Loading CoordMarker v1.0
[14:19:16] [Server thread/INFO]: [EpicPluginLib] Loading EpicPluginLib v2.6
[14:19:16] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[14:19:16] [Server thread/INFO]: [PlayMoreSounds] Loading PlayMoreSounds v4.2
[14:19:16] [Server thread/INFO]: [MyCommand] Loading MyCommand v5.7.4
[14:19:16] [Server thread/INFO]: [PowerBoard] Loading PowerBoard v3.6.1
[14:19:16] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.18+6616-abda4e0
[14:19:17] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@63fa3c05]
[14:19:17] [Server thread/INFO]: [Essentials] Loading Essentials v2.21.0-dev+24-0af4436
[14:19:17] [Server thread/INFO]: [Vehicles] Loading Vehicles v14.3
[14:19:18] [Server thread/INFO]: [BankPlus] Loading BankPlus v6.1
[14:19:18] [Server thread/INFO]: [Freeze] Loading Freeze v2.5.0.165
[14:19:18] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.9+5934e49
[14:19:18] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.12
[14:19:18] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.33-SNAPSHOT (build 3301)
[14:19:18] [Server thread/INFO]: [ChestCommands] Loading ChestCommands v4.0.4
[14:19:18] [Server thread/INFO]: [EssentialsProtect] Loading EssentialsProtect v2.21.0-dev+24-0af4436
[14:19:18] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.14.0-Release
[14:19:18] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[14:19:18] [Server thread/INFO]: [EssentialsGeoIP] Loading EssentialsGeoIP v2.21.0-dev+24-0af4436
[14:19:18] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.21.0-dev+24-0af4436
[14:19:18] [Server thread/INFO]: [EssentialsAntiBuild] Loading EssentialsAntiBuild v2.21.0-dev+24-0af4436
[14:19:18] [Server thread/INFO]: [WorldGuardEvents] Loading WorldGuardEvents v1.18.1
[14:19:18] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.2.2
[14:19:18] [Server thread/INFO]: [WorldGuardRegionProtect] Loading WorldGuardRegionProtect v0.9.5
[14:19:18] [Server thread/INFO]: [AdvancedRegionMarket] Loading AdvancedRegionMarket v3.2.6
[14:19:18] [Server thread/INFO]: [EssentialsDiscord] Loading EssentialsDiscord v2.21.0-dev+24-0af4436
[14:19:18] [Server thread/INFO]: [AuthMe] Loading AuthMe v5.6.0-beta2-b2453
[14:19:18] [Server thread/INFO]: [Jobs] Loading Jobs v5.2.2.2
[14:19:18] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading EconomyShopGUI-Premium v5.6.3
[14:19:18] [Server thread/ERROR]: Cannot load help.yml
org.bukkit.configuration.InvalidConfigurationException: Top level is not a Map.
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:107) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:308) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.help.HelpYamlReader.<init>(HelpYamlReader.java:32) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at org.bukkit.craftbukkit.v1_20_R3.help.SimpleHelpMap.initializeGeneralTopics(SimpleHelpMap.java:98) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:446) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:220) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1000) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[14:19:18] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.116
[14:19:19] [Server thread/INFO]:         __    
[14:19:19] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.116
[14:19:19] [Server thread/INFO]:   |___ |      Running on Bukkit - CraftBukkit
[14:19:19] [Server thread/INFO]: 
[14:19:19] [Server thread/INFO]: [LuckPerms] Loading configuration...
[14:19:20] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[14:19:21] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[14:19:21] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[14:19:21] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2915ms)
[14:19:21] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.4.402
[14:19:21] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 0 language(s).
[14:19:21] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[14:19:22] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[14:19:22] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.21.0-dev+24-0af4436 which is not a depend or softdepend of this plugin.
[14:19:22] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[14:19:22] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[14:19:22] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[14:19:22] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[14:19:22] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.18+6616-abda4e0
[14:19:22] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[14:19:22] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[14:19:22] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_20_R3.PaperweightAdapter as the Bukkit adapter
[14:19:23] [Server thread/INFO]: [WorldEdit] ====================================================
[14:19:23] [Server thread/INFO]: [WorldEdit]  WorldEdit works better if you use Paper 
[14:19:23] [Server thread/INFO]: [WorldEdit]  as your server software. 
[14:19:23] [Server thread/INFO]: [WorldEdit]   
[14:19:23] [Server thread/INFO]: [WorldEdit]  Paper offers significant performance improvements,
[14:19:23] [Server thread/INFO]: [WorldEdit]  bug fixes, security enhancements and optional
[14:19:23] [Server thread/INFO]: [WorldEdit]  features for server owners to enhance their server.
[14:19:23] [Server thread/INFO]: [WorldEdit]   
[14:19:23] [Server thread/INFO]: [WorldEdit]  Paper includes Timings v2, which is significantly
[14:19:23] [Server thread/INFO]: [WorldEdit]  better at diagnosing lag problems over v1.
[14:19:23] [Server thread/INFO]: [WorldEdit]   
[14:19:23] [Server thread/INFO]: [WorldEdit]  All of your plugins should still work, and the
[14:19:23] [Server thread/INFO]: [WorldEdit]  Paper community will gladly help you fix any issues.
[14:19:23] [Server thread/INFO]: [WorldEdit]   
[14:19:23] [Server thread/INFO]: [WorldEdit]  Join the Paper Community @ https://papermc.io
[14:19:23] [Server thread/INFO]: [WorldEdit] ====================================================
[14:19:23] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[14:19:23] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[14:19:23] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[14:19:23] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[14:19:23] [Server thread/INFO]: Preparing level "harta1"
[14:19:23] [Server thread/INFO]: -------- World Settings For [harta1] --------
[14:19:23] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: Cane Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: Carrot Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: Potato Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: Vine Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: Kelp Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[14:19:23] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[14:19:23] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[14:19:23] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[14:19:23] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[14:19:23] [Server thread/INFO]: Max TNT Explosions: 100
[14:19:23] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[14:19:23] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:19:23] [Server thread/INFO]: Mob Spawn Range: 6
[14:19:23] [Server thread/INFO]: View Distance: 12
[14:19:23] [Server thread/INFO]: Simulation Distance: 10
[14:19:23] [Server thread/INFO]: Item Despawn Rate: 6000
[14:19:23] [Server thread/INFO]: Item Merge Radius: 2.5
[14:19:23] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:19:23] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[14:19:23] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:19:23] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[14:19:24] [Server thread/INFO]: -------- World Settings For [harta1_nether] --------
[14:19:24] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: Cane Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: Carrot Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: Potato Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: Vine Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: Kelp Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[14:19:24] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[14:19:24] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[14:19:24] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[14:19:24] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[14:19:24] [Server thread/INFO]: Max TNT Explosions: 100
[14:19:24] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[14:19:24] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:19:24] [Server thread/INFO]: Mob Spawn Range: 6
[14:19:24] [Server thread/INFO]: View Distance: 12
[14:19:24] [Server thread/INFO]: Simulation Distance: 10
[14:19:24] [Server thread/INFO]: Item Despawn Rate: 6000
[14:19:24] [Server thread/INFO]: Item Merge Radius: 2.5
[14:19:24] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:19:24] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[14:19:24] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:19:24] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[14:19:26] [Server thread/INFO]: -------- World Settings For [harta1_the_end] --------
[14:19:26] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: Cane Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: Carrot Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: Potato Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: Vine Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: Kelp Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[14:19:26] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[14:19:26] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[14:19:26] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[14:19:26] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[14:19:26] [Server thread/INFO]: Max TNT Explosions: 100
[14:19:26] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[14:19:26] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:19:26] [Server thread/INFO]: Mob Spawn Range: 6
[14:19:26] [Server thread/INFO]: View Distance: 12
[14:19:26] [Server thread/INFO]: Simulation Distance: 10
[14:19:26] [Server thread/INFO]: Item Despawn Rate: 6000
[14:19:26] [Server thread/INFO]: Item Merge Radius: 2.5
[14:19:26] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:19:26] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[14:19:26] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:19:26] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[14:19:26] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[14:19:30] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:30] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:30] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:30] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:31] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:31] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:31] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:31] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:31] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:31] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[14:19:31] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:32] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[14:19:32] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:33] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:33] [Worker-Main-2/INFO]: Preparing spawn area: 4%
[14:19:34] [Worker-Main-2/INFO]: Preparing spawn area: 64%
[14:19:34] [Server thread/INFO]: Time elapsed: 8031 ms
[14:19:34] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[14:19:37] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:37] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:37] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:37] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:37] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:37] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:37] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:38] [Worker-Main-1/INFO]: Preparing spawn area: 22%
[14:19:38] [Worker-Main-1/INFO]: Preparing spawn area: 96%
[14:19:38] [Server thread/INFO]: Time elapsed: 4071 ms
[14:19:38] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[14:19:40] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:40] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[14:19:40] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[14:19:40] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[14:19:40] [Worker-Main-3/INFO]: Preparing spawn area: 1%
[14:19:41] [Worker-Main-2/INFO]: Preparing spawn area: 34%
[14:19:42] [Worker-Main-1/INFO]: Preparing spawn area: 85%
[14:19:42] [Server thread/INFO]: Time elapsed: 3170 ms
[14:19:42] [Server thread/INFO]: [PluginConstructorAPI] Enabling PluginConstructorAPI v1.0.50
[14:19:42] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[14:19:42] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[14:19:42] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[14:19:42] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[14:19:42] [Server thread/INFO]: [ClearLag] Loading modules...
[14:19:42] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_20_R3.MinecraftServer)
[14:19:42] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[14:19:42] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[14:19:42] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[14:19:42] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.4.2
[14:19:42] [Thread-14/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.20]...
[14:19:42] [Thread-14/INFO]: [ClearLag] No updates found!
[14:19:43] [Server thread/INFO]: Server version: v1_20_R3 - 1.20.4 - spigot
[14:19:43] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[14:19:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.4.4.2]
[14:19:43] [Server thread/INFO]: PlaceholderAPI hooked.
[14:19:44] [Server thread/INFO]: Updated (EN) language file. Took 57ms
[14:19:44] [Server thread/INFO]: [PlugMan] Enabling PlugMan v2.1.7
[14:19:44] [Server thread/INFO]: [PlayTime] Enabling PlayTime v3.6
[14:19:44] [Server thread/INFO]: [PlayTime] PlaceholderAPI was found! Registering Placeholders.
[14:19:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playtime [3.6]
[14:19:44] [Server thread/INFO]: [WorldBorder] Enabling WorldBorder v1.8.7
[14:19:44] [Server thread/INFO]: [WorldBorder] [CONFIG] Using elliptic/round border, knockback of 1.0 blocks, and timer delay of 5.
[14:19:44] [Server thread/INFO]: [WorldBorder] [CONFIG] Border-checking timed task started.
[14:19:44] [Server thread/INFO]: [WorldBorder] For reference, the main world's spawn location is at X: 32.0 Y: 64.0 Z: -381.0
[14:19:44] [Server thread/INFO]: [UltimateFood] Enabling UltimateFood v1.1.4
[14:19:44] [Server thread/INFO]: Failed to load Food_Waffles.json
[14:19:44] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "Object.getClass()" because "conf" is null
[14:19:44] [Server thread/WARN]:     at dev.juligame.Jconfig.JConfig.load(JConfig.java:56)
[14:19:44] [Server thread/WARN]:     at net.juligame.ultimatefoods.UltimateFoods.loadAll(UltimateFoods.java:69)
[14:19:44] [Server thread/WARN]:     at net.juligame.ultimatefoods.UltimateFoods.onEnable(UltimateFoods.java:110)
[14:19:44] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[14:19:44] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[14:19:44] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[14:19:44] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:539)
[14:19:44] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:453)
[14:19:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:623)
[14:19:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:409)
[14:19:44] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[14:19:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1000)
[14:19:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[14:19:44] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:840)
[14:19:44] [Server thread/ERROR]: Could not load food Waffles in category Desserts!
[14:19:44] [Server thread/WARN]: [UltimateFood] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[14:19:44] [Server thread/INFO]: [CoordMarker] Enabling CoordMarker v1.0
[14:19:44] [Server thread/WARN]: [CoordMarker] Loaded class com.earth2me.essentials.IUser from Essentials v2.21.0-dev+24-0af4436 which is not a depend or softdepend of this plugin.
[14:19:44] [Server thread/WARN]: [CoordMarker] Loaded class com.onarandombox.MultiverseCore.MultiverseCore from Multiverse-Core v4.3.12 which is not a depend or softdepend of this plugin.
[14:19:44] [Server thread/WARN]: [CoordMarker] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.11.5 which is not a depend or softdepend of this plugin.
[14:19:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: coordmarker [1.0]
[14:19:44] [Server thread/WARN]: [CoordMarker] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[14:19:44] [Server thread/WARN]: [CoordMarker] Loaded class com.sk89q.worldedit.world.World from WorldEdit v7.2.18+6616-abda4e0 which is not a depend or softdepend of this plugin.
[14:19:44] [Server thread/WARN]: [CoordMarker] Loaded class net.citizensnpcs.api.trait.Trait from Citizens v2.0.33-SNAPSHOT (build 3301) which is not a depend or softdepend of this plugin.
[14:19:44] [Server thread/INFO]: [CoordMarker] Data Folder not Created.
[14:19:44] [Server thread/INFO]: [CoordMarker] Connected to database.
[14:19:44] [Server thread/INFO]: [EpicPluginLib] Enabling EpicPluginLib v2.6
[14:19:44] [Server thread/INFO]: [EpicPluginLib] Dependency found: PlayMoreSounds.
[14:19:44] [Server thread/INFO]: [EpicPluginLib] Lib enabled successfully.
[14:19:44] [Server thread/INFO]: [EpicPluginLib] EpicPluginLib is using bStats as metrics collector.
[14:19:44] [Server thread/INFO]: [PlayMoreSounds] Enabling PlayMoreSounds v4.2
[14:19:44] [Server thread/INFO]: [PlayMoreSounds] -> Configurations loaded.
[14:19:45] [Server thread/INFO]: [PlayMoreSounds] -> 8 listeners loaded.
[14:19:45] [Server thread/INFO]: [PlayMoreSounds] -> Commands loaded.
[14:19:45] [Server thread/INFO]: [PlayMoreSounds] ============================================
[14:19:45] [Server thread/INFO]: [PlayMoreSounds] PlayMoreSounds has been enabled
[14:19:45] [Server thread/INFO]: [PlayMoreSounds] 1202 sounds available on 1.20.4
[14:19:45] [Server thread/INFO]: [PlayMoreSounds] ============================================
[14:19:45] [Server thread/WARN]: [PlayMoreSounds] PlayMoreSounds detected you are on version 1.20.4. This version was not tested and might throw errors.
[14:19:45] [Server thread/INFO]: [PlayMoreSounds] PlayMoreSounds is using bStats as metrics collector.
[14:19:45] [Server thread/INFO]: [PlayMoreSounds] Checking for updates...
[14:19:45] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[14:19:45] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[14:19:45] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[14:19:45] [Server thread/ERROR]: Cannot load plugins/MyCommand/commands/menus copy.yml
org.bukkit.configuration.InvalidConfigurationException: Top level is not a Map.
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:107) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:308) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at it.emmerrei.mycommand.InitializeConfigFiles.LoadCommandsFiles(InitializeConfigFiles.java:329) ~[?:?]
    at it.emmerrei.mycommand.InitializeConfigFiles.checkConfig(InitializeConfigFiles.java:158) ~[?:?]
    at it.emmerrei.mycommand.Main.onEnable(Main.java:331) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:539) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:453) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:623) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:409) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1000) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[14:19:45] [Server thread/INFO]: | Command file(s) found : 8
[14:19:45] [Server thread/INFO]: | Config : Ready.
[14:19:45] [Server thread/INFO]: | ProtocolLib not found.
[14:19:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[14:19:45] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[14:19:45] [Server thread/INFO]: | Custom commands loaded : 13
[14:19:45] [Server thread/INFO]: | You're running the latest version of MyCommand.
[14:19:45] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[14:19:45] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[14:19:45] [Server thread/INFO]: [PowerBoard] Enabling PowerBoard v3.6.1
[14:19:45] [Server thread/INFO]: [PowerBoard] --------------------------------------------------
[14:19:45] [Server thread/INFO]: [PowerBoard] --------------- Loading PowerBoard ---------------
[14:19:45] [Server thread/INFO]: [PowerBoard]  
[14:19:45] [Server thread/INFO]: [PowerBoard] Loading configs..
[14:19:45] [EPL Update Checker/INFO]: [PlayMoreSounds] No updates available.
[14:19:45] [Server thread/INFO]: [PowerBoard]  
[14:19:45] [Server thread/INFO]: [PowerBoard] (SelfCheck) config.yml -> Loading...
[14:19:45] [Server thread/INFO]: [PowerBoard] (SelfCheck) config.yml -> Finished!
[14:19:45] [Server thread/INFO]: [PowerBoard]  
[14:19:45] [Server thread/INFO]: [PowerBoard] Configs loaded!
[14:19:45] [Server thread/INFO]: [PowerBoard]  
[14:19:45] [Server thread/WARN]: [PowerBoard] You have changed the rank permissions system from LuckPerms to something different. LuckPerms cannot be completely disabled with a PB reload. Please restart your server soon.
[14:19:45] [Server thread/INFO]: [PowerBoard] Registered tablist.
[14:19:45] [Server thread/INFO]: [PowerBoard]  
[14:19:45] [Server thread/INFO]: [PowerBoard] --------------- PowerBoard  loaded ---------------
[14:19:45] [Server thread/INFO]: [PowerBoard] --------------------------------------------------
[14:19:45] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+24-0af4436
[14:19:45] [Server thread/INFO]: You are running a server with limited API functionality. EssentialsX will still work, but certain features may be disabled.
[14:19:45] [Server thread/INFO]: Attempting to convert old kits in config.yml to new kits.yml
[14:19:45] [Server thread/INFO]: No kits found to migrate.
[14:19:45] [Server thread/INFO]: Loaded 39095 items from items.json.
[14:19:45] [Server thread/INFO]: Using locale en_US
[14:19:45] [Server thread/INFO]: ServerListPingEvent: Spigot iterator API
[14:19:46] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[14:19:46] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[14:19:46] [Server thread/INFO]: Using Vault based permissions (LuckPerms)
[14:19:46] [Server thread/INFO]: [Vehicles] Enabling Vehicles v14.3
[14:19:47] [Server thread/INFO]: Vehicles >> lang.yml loaded.
[14:19:47] [Server thread/INFO]: [BankPlus] Enabling BankPlus v6.1
[14:19:47] [Server thread/INFO]: 
[14:19:47] [Server thread/INFO]:     BankPlus Enabling plugin...
[14:19:47] [Server thread/INFO]:     Running on version 6.1!
[14:19:47] [Server thread/INFO]:     Detected server version: 4001-Spigot-49e36b8-1da8d9a (MC: 1.20.4)
[14:19:47] [Server thread/INFO]:     Setting up the plugin...
[14:19:48] [Server thread/INFO]: BankPlus [INFO] MySQL setup finished!
[14:19:48] [Server thread/INFO]: BankPlus [INFO] Database successfully connected!
[14:19:48] [Server thread/INFO]:     Done! (341ms)
[14:19:48] [Server thread/INFO]: 
[14:19:48] [Server thread/INFO]: BankPlus [INFO] Hooked into PlaceholderAPI!
[14:19:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bankplus [6.1]
[14:19:48] [Server thread/INFO]: BankPlus [INFO] Hooked into Essentials!
[14:19:48] [Server thread/INFO]: BankPlus [INFO] Found playerdata folder, starting to convert the files to the new format.
[14:19:48] [Server thread/INFO]: BankPlus [INFO] Conversion finished!
[14:19:48] [Server thread/INFO]: [Freeze] Enabling Freeze v2.5.0.165
[14:19:48] [Server thread/INFO]: [Freeze] Successfully loaded 1 language(s).
[14:19:48] [Server thread/INFO]: [Freeze] Detected server as regular SpigotMC/PaperMC (not Folia)
[14:19:48] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[14:19:48] [Server thread/INFO]: [WorldGuard] (harta1) TNT ignition is PERMITTED.
[14:19:48] [Server thread/INFO]: [WorldGuard] (harta1) Lighters are PERMITTED.
[14:19:48] [Server thread/INFO]: [WorldGuard] (harta1) Lava fire is PERMITTED.
[14:19:48] [Server thread/INFO]: [WorldGuard] (harta1) Fire spread is UNRESTRICTED.
[14:19:48] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'harta1'
[14:19:48] [Server thread/INFO]: [WorldGuard] (harta1_nether) TNT ignition is PERMITTED.
[14:19:48] [Server thread/INFO]: [WorldGuard] (harta1_nether) Lighters are PERMITTED.
[14:19:48] [Server thread/INFO]: [WorldGuard] (harta1_nether) Lava fire is PERMITTED.
[14:19:48] [Server thread/INFO]: [WorldGuard] (harta1_nether) Fire spread is UNRESTRICTED.
[14:19:48] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'harta1_nether'
[14:19:48] [Server thread/INFO]: [WorldGuard] (harta1_the_end) TNT ignition is PERMITTED.
[14:19:48] [Server thread/INFO]: [WorldGuard] (harta1_the_end) Lighters are PERMITTED.
[14:19:48] [Server thread/INFO]: [WorldGuard] (harta1_the_end) Lava fire is PERMITTED.
[14:19:48] [Server thread/INFO]: [WorldGuard] (harta1_the_end) Fire spread is UNRESTRICTED.
[14:19:48] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'harta1_the_end'
[14:19:48] [Server thread/INFO]: [WorldGuard] Loading region data...
[14:19:48] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[14:19:48] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" 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--].
[14:19:48] [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.
[14:19:48] [Server thread/INFO]: -------- World Settings For [ResourceWorld] --------
[14:19:48] [Server thread/INFO]: Cactus Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: Cane Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: Melon Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: Sapling Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: Carrot Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: Potato Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: Wheat Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: Vine Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: Kelp Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[14:19:48] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[14:19:48] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[14:19:48] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[14:19:48] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[14:19:48] [Server thread/INFO]: Max TNT Explosions: 100
[14:19:48] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[14:19:48] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:19:48] [Server thread/INFO]: Mob Spawn Range: 6
[14:19:48] [Server thread/INFO]: View Distance: 12
[14:19:48] [Server thread/INFO]: Simulation Distance: 10
[14:19:48] [Server thread/INFO]: Item Despawn Rate: 6000
[14:19:48] [Server thread/INFO]: Item Merge Radius: 2.5
[14:19:48] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:19:48] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[14:19:48] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:19:48] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[14:19:48] [Server thread/INFO]: Preparing start region for dimension minecraft:resourceworld
[14:19:54] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:54] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:54] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:54] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:54] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:54] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:54] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:54] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:54] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[14:19:54] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[14:19:54] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[14:19:54] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[14:19:54] [Worker-Main-3/INFO]: Preparing spawn area: 30%
[14:19:55] [Worker-Main-1/INFO]: Preparing spawn area: 91%
[14:19:55] [Server thread/INFO]: Time elapsed: 6536 ms
[14:19:55] [Server thread/INFO]: [WorldGuard] (ResourceWorld) TNT ignition is PERMITTED.
[14:19:55] [Server thread/INFO]: [WorldGuard] (ResourceWorld) Lighters are PERMITTED.
[14:19:55] [Server thread/INFO]: [WorldGuard] (ResourceWorld) Lava fire is PERMITTED.
[14:19:55] [Server thread/INFO]: [WorldGuard] (ResourceWorld) Fire spread is UNRESTRICTED.
[14:19:55] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'ResourceWorld'
[14:19:55] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[14:19:55] [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.
[14:19:55] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[14:19:55] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3301)
[14:19:55] [Server thread/INFO]: [Citizens] Loading external libraries
[14:19:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[14:19:56] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[14:19:56] [Server thread/INFO]: [ChestCommands] Enabling ChestCommands v4.0.4
[14:19:56] [Server thread/INFO]: [ChestCommands] Hooked Vault
[14:19:56] [Server thread/INFO]: [ChestCommands] Hooked PlaceholderAPI
[14:19:56] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.21.0-dev+24-0af4436
[14:19:56] [Server thread/INFO]: Continuing to enable Protect.
[14:19:56] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[14:19:56] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[14:19:56] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[14:19:56] [Server thread/INFO]: [DeluxeMenus] 2 GUI menus loaded!
[14:19:56] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[14:19:56] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[14:19:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[14:19:56] [Server thread/INFO]: [EssentialsGeoIP] Enabling EssentialsGeoIP v2.21.0-dev+24-0af4436
[14:19:56] [Server thread/ERROR]: No license key found! Please visit https://essentialsx.net/geoip for first time setup instructions.
[14:19:56] [Server thread/ERROR]: Failed to read GeoIP database!
java.io.FileNotFoundException: plugins/EssentialsGeoIP/GeoIP2-Country.mmdb (No such file or directory)
    at java.io.RandomAccessFile.open0(Native Method) ~[?:?]
    at java.io.RandomAccessFile.open(RandomAccessFile.java:344) ~[?:?]
    at java.io.RandomAccessFile.<init>(RandomAccessFile.java:259) ~[?:?]
    at java.io.RandomAccessFile.<init>(RandomAccessFile.java:213) ~[?:?]
    at com.earth2me.essentials.geoip.libs.maxmind.db.BufferHolder.<init>(BufferHolder.java:19) ~[?:?]
    at com.earth2me.essentials.geoip.libs.maxmind.db.Reader.<init>(Reader.java:116) ~[?:?]
    at com.earth2me.essentials.geoip.libs.maxmind.geoip2.DatabaseReader.<init>(DatabaseReader.java:66) ~[?:?]
    at com.earth2me.essentials.geoip.libs.maxmind.geoip2.DatabaseReader.<init>(DatabaseReader.java:54) ~[?:?]
    at com.earth2me.essentials.geoip.libs.maxmind.geoip2.DatabaseReader$Builder.build(DatabaseReader.java:160) ~[?:?]
    at com.earth2me.essentials.geoip.EssentialsGeoIPPlayerListener.reloadConfig(EssentialsGeoIPPlayerListener.java:175) ~[?:?]
    at com.earth2me.essentials.geoip.EssentialsGeoIPPlayerListener.<init>(EssentialsGeoIPPlayerListener.java:51) ~[?:?]
    at com.earth2me.essentials.geoip.EssentialsGeoIP.onEnable(EssentialsGeoIP.java:33) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:539) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:453) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:623) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:409) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1000) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[14:19:56] [Server thread/INFO]: This product includes GeoLite2 data created by MaxMind, available from http://www.maxmind.com/.
[14:19:56] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[14:19:56] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+24-0af4436
[14:19:56] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[14:19:56] [Server thread/INFO]: [EssentialsAntiBuild] Enabling EssentialsAntiBuild v2.21.0-dev+24-0af4436
[14:19:56] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[14:19:56] [Server thread/INFO]: [WorldGuardEvents] Enabling WorldGuardEvents v1.18.1
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.raidstone.wgevents.Entry
[14:19:56] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.2
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[14:19:56] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[14:19:56] [Server thread/INFO]: [WorldGuardRegionProtect] Enabling WorldGuardRegionProtect v0.9.5
[14:19:56] [Server thread/INFO]: You are running on Spigot
[14:19:56] [Server thread/ERROR]: Error occurred while enabling WorldGuardRegionProtect v0.9.5 (Is it up to date?)
java.lang.NoClassDefFoundError: net/kyori/adventure/text/minimessage/MiniMessage
    at net.ritasister.wgrp.rslibs.rsteamcore.config.ComponentWrapper.<init>(ComponentWrapper.kt:18) ~[?:?]
    at net.ritasister.wgrp.rslibs.rsteamcore.config.ComponentWrapper.<init>(ComponentWrapper.kt:12) ~[?:?]
    at net.ritasister.wgrp.rslibs.rsteamcore.config.Container.<init>(Container.kt:8) ~[?:?]
    at net.ritasister.wgrp.util.config.loader.MessageLoader.initMessages(MessageLoader.java:24) ~[?:?]
    at net.ritasister.wgrp.util.config.loader.ConfigLoader.initConfig(ConfigLoader.java:25) ~[?:?]
    at net.ritasister.wgrp.WorldGuardRegionProtectBukkitPlugin.load(WorldGuardRegionProtectBukkitPlugin.java:64) ~[?:?]
    at net.ritasister.wgrp.WorldGuardRegionProtectBukkitPlugin.<init>(WorldGuardRegionProtectBukkitPlugin.java:57) ~[?:?]
    at net.ritasister.wgrp.WorldGuardRegionProtectBukkitBase.onEnable(WorldGuardRegionProtectBukkitBase.java:14) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:539) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:453) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:623) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:409) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1000) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.kyori.adventure.text.minimessage.MiniMessage
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:160) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:112) ~[spigot-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 19 more
[14:19:56] [Server thread/INFO]: [AdvancedRegionMarket] Enabling AdvancedRegionMarket v3.2.6
[14:19:56] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldGuard7 adapter
[14:19:56] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldEdit7 adapter
[14:19:56] [Server thread/INFO]: [AdvancedRegionMarket] Using MC 1.14 sign adapter
[14:19:57] [Server thread/INFO]: [AdvancedRegionMarket] Regions loaded!
[14:19:57] [Server thread/INFO]: [AdvancedRegionMarket] Programmed by Alex9849
[14:19:57] [Server thread/INFO]: [AdvancedRegionMarket] I'm always searching for better translations of AdvancedRegionMarket. If you've translated the plugin it would be very nice if you would send me your translation via spigot private message! :)
[14:19:57] [Server thread/INFO]: [EssentialsDiscord] Enabling EssentialsDiscord v2.21.0-dev+24-0af4436
[14:19:57] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[14:19:57] [Server thread/INFO]: Attempting to login to Discord...
[14:19:58] [Server thread/INFO]: Login Successful!
[14:19:58] [JDA MainWS-ReadThread/INFO]: Connected to WebSocket
[14:19:59] [JDA MainWS-ReadThread/INFO]: Finished Loading!
[14:19:59] [Server thread/INFO]: Successfully logged in as MC_Bot#4574
[14:19:59] [Server thread/INFO]: [AuthMe] Enabling AuthMe v5.6.0-beta2-b2453
[14:19:59] [Server thread/INFO]: [AuthMe] Connection arguments loaded, Hikari ConnectionPool ready!
[14:19:59] [Server thread/WARN]: [Server thread] INFO fr.xephi.authme.libs.com.zaxxer.hikari.HikariDataSource - AuthMeMYSQLPool - Starting...
[14:19:59] [Server thread/WARN]: [Server thread] INFO fr.xephi.authme.libs.com.zaxxer.hikari.HikariDataSource - AuthMeMYSQLPool - Start completed.
[14:19:59] [Server thread/INFO]: [AuthMe] MySQL setup finished
[14:19:59] [Server thread/INFO]: [AuthMe] Hooked into LuckPerms!
[14:19:59] [Server thread/INFO]: [AuthMe] [LICENSE] This product includes GeoLite2 data created by MaxMind, available at https://www.maxmind.com
[14:19:59] [Server thread/INFO]: [AuthMe] Hooked successfully into Essentials
[14:19:59] [Server thread/INFO]: [AuthMe] Hooked successfully into Multiverse-Core
[14:19:59] [Server thread/INFO]: [AuthMe] Essentials spawn file not found: '/home/ftpuser/Minecraft/spigot/plugins/Essentials/spawn.yml'
[14:20:00] [Server thread/WARN]: [AuthMe] WARNING! The protectInventory feature requires ProtocolLib! Disabling it...
[14:20:00] [Server thread/INFO]: [AuthMe] AuthMe 5.6.0-beta2 build n.2453 successfully enabled!
[14:20:00] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.2.2
[14:20:00] [Server thread/INFO]: ------------- Jobs -------------
[14:20:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.2.2]
[14:20:00] [Server thread/INFO]: PlaceholderAPI hooked.
[14:20:00] [Server thread/INFO]: Connected to database (SqLite)
[14:20:00] [Server thread/INFO]: Loaded 8 titles
[14:20:00] [Server thread/INFO]: Loaded 68 protected blocks timers
[14:20:00] [Server thread/INFO]: Loaded 1403 custom item names
[14:20:00] [Server thread/INFO]: Loaded 81 custom entity names
[14:20:00] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[14:20:00] [Server thread/INFO]: Loaded 38 custom enchant names
[14:20:00] [Server thread/INFO]: Loaded 43 custom enchant names
[14:20:00] [Server thread/INFO]: Loaded 16 custom color names
[14:20:00] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[14:20:00] [Server thread/INFO]: Loaded 4 shop items
[14:20:00] [Server thread/INFO]: Loaded 1 quests for Crafter
[14:20:00] [Server thread/INFO]: Loaded 1 quests for Builder
[14:20:00] [Server thread/INFO]: Loaded 1 quests for Fisherman
[14:20:00] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[14:20:00] [Server thread/INFO]: Loaded 1 quests for Digger
[14:20:00] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
[14:20:00] [Server thread/INFO]: Loaded 1 quests for Enchanter
[14:20:00] [Server thread/INFO]: Loaded 1 quests for Explorer
[14:20:00] [Server thread/INFO]: Loaded 1 quests for Brewer
[14:20:00] [Server thread/INFO]: Loaded 1 quests for Farmer
[14:20:00] [Server thread/INFO]: Loaded 1 quests for Miner
[14:20:00] [Server thread/INFO]: Loaded 1 quests for Hunter
[14:20:00] [Server thread/INFO]: Loaded 12 jobs
[14:20:00] [Server thread/INFO]: Loaded 0 boosted items
[14:20:00] [Server thread/INFO]: Loaded 6 furnace for reassigning.
[14:20:00] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[14:20:00] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[14:20:00] [Server thread/INFO]: Preloaded 4 players data in 0.01
[14:20:00] [Server thread/INFO]: WorldGuard detected.
[14:20:00] [Server thread/INFO]: Plugin has been enabled successfully.
[14:20:00] [Server thread/INFO]: ------------------------------------
[14:20:00] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium v5.6.3
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using lang-en.yml as language file.
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 20 section configs from /sections/
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 20 shop configs from /shops/
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Updating Shop settings...
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using minecraft version 1.20.4...
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully hooked into Vault
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 1 economy provider(s) for all 18 shop sections.
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Spawner provider set to AUTO in config
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Automatically searching for compatible spawner provider....
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Failed to automatically find compatible spawner provider, using default...
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled PlaceholderAPI hook...
[14:20:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.0.0]
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Debug mode is enabled.
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading item stock provider...
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading limited selling provider...
[14:20:01] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading all items...
[14:20:02] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loaded cached schedule for rotating shop RotatingShop with next rotation in 1m 30s...
[14:20:02] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully enabled rotating shop RotatingShop, with a rotating interval of 1h
[14:20:02] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Initialized - Took 1090ms to complete
[14:20:02] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[14:20:02] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[14:20:02] [Server thread/INFO]: Done (38.751s)! For help, type "help"
[14:20:02] [Craft Scheduler Thread - 0/INFO]: [Blue Slime Core]  
[14:20:02] [Craft Scheduler Thread - 0/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'Freeze'.
[14:20:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: PowerBoard [3.6.1]
[14:20:02] [Server thread/INFO]: Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[14:20:02] [Craft Scheduler Thread - 2/INFO]: Fetching version information...
[14:20:02] [Craft Scheduler Thread - 3/INFO]: [PlayTime] Latest version is installed! - v3.6
[14:20:02] [Craft Scheduler Thread - 0/INFO]: New version of CMILib was detected. Please update it
[14:20:02] [Craft Scheduler Thread - 6/INFO]: BankPlus [INFO] The plugin is updated!
[14:20:02] [Craft Scheduler Thread - 1/INFO]: [Blue Slime Core]  
[14:20:02] [Craft Scheduler Thread - 1/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'BlueSlimeCore'.
[14:20:03] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
[14:20:03] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[14:20:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.7]
[14:20:03] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[14:20:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[14:20:03] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.onarandombox.MultiverseCore.MultiverseCore from Multiverse-Core v4.3.12 which is not a depend or softdepend of this plugin.
[14:20:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: multiverse [1.0.1]
[14:20:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: world [1.2.2]
[14:20:03] [Server thread/INFO]: 4 placeholder hook(s) registered!
[14:20:03] [Craft Scheduler Thread - 5/INFO]: BankPlus The BankTop has been updated!
[14:20:03] [Server thread/WARN]: [Citizens] Task #56 for Citizens v2.0.33-SNAPSHOT (build 3301) generated an exception
java.lang.ClassCastException: class net.citizensnpcs.nms.v1_20_R3.entity.nonliving.ItemFrameController$EntityItemFrameNPC cannot be cast to class net.minecraft.world.entity.decoration.GlowItemFrame (net.citizensnpcs.nms.v1_20_R3.entity.nonliving.ItemFrameController$EntityItemFrameNPC is in unnamed module of loader org.bukkit.plugin.java.PluginClassLoader @623a549a; net.minecraft.world.entity.decoration.GlowItemFrame is in unnamed module of loader java.net.URLClassLoader @31221be2)
    at net.citizensnpcs.nms.v1_20_R3.entity.nonliving.GlowItemFrameController.createEntity(GlowItemFrameController.java:40) ~[?:?]
    at net.citizensnpcs.npc.AbstractEntityController.create(AbstractEntityController.java:24) ~[?:?]
    at net.citizensnpcs.npc.CitizensNPC.spawn(CitizensNPC.java:301) ~[?:?]
    at net.citizensnpcs.npc.CitizensNPC.load(CitizensNPC.java:184) ~[?:?]
    at net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:59) ~[?:?]
    at net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:610) ~[?:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:82) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:415) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1339) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:387) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1242) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1054) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.20.4-R0.1-SNAPSHOT.jar:4001-Spigot-49e36b8-1da8d9a]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[14:20:03] [Craft Scheduler Thread - 0/INFO]: [Vault] Checking for Updates ... 
[14:20:03] [Craft Scheduler Thread - 0/INFO]: [Vault] No new version available
[14:20:03] [Craft Scheduler Thread - 2/WARN]: You're 1 EssentialsX dev build(s) out of date!
[14:20:03] [Craft Scheduler Thread - 2/WARN]: Download it here: https://essentialsx.net/downloads.html
[14:20:03] [Craft Scheduler Thread - 5/INFO]: Found a new version of PluginConstructorAPI: v1.1.53 downloading now!!
[14:20:04] [Server thread/INFO]: [PowerBoard] Registering players...
[14:20:04] [Server thread/INFO]: [PowerBoard] All players have been registered.
[14:20:07] [Server thread/INFO]: [MyCmd] Spawning NPCs...
[14:20:11] [User Authenticator #1/INFO]: UUID of player aN0rmaLy is 75a7c398-b8b0-3db6-8347-70d997d93268
[14:20:15] [Server thread/INFO]: aN0rmaLy joined the game
[14:20:15] [Server thread/INFO]: aN0rmaLy[/86.126.173.87:61182] logged in with entity id 424 at ([ResourceWorld]-144.91327125648226, 72.0, 1405.7661358207984)
[14:20:15] [Craft Scheduler Thread - 2/INFO]: [AuthMe] aN0rmaLy logged in 86.126.173.87
[14:20:18] [Craft Scheduler Thread - 2/WARN]: Unable to fetch GeoIP data for aN0rmaLy. Please ensure that your license key and configuration are correct.
[14:20:18] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2732ms or 54 ticks behind
[14:20:18] [Craft Scheduler Thread - 2/WARN]: [PowerBoard] The player aN0rmaLy has no Rank! Make sure that he has the correct permissions.
[14:20:18] [User Authenticator #2/INFO]: UUID of player Cici is 010f6b39-58a7-3195-8c6d-3d0868d2fa14
[14:20:18] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'harta1' have been background saved
[14:20:21] [Server thread/INFO]: Cici joined the game
[14:20:21] [Server thread/INFO]: Cici[/86.126.172.68:52500] logged in with entity id 521 at ([ResourceWorld]-148.0735642670576, 76.0, 1404.6446608856722)
[14:20:21] [Craft Scheduler Thread - 5/WARN]: Unable to fetch GeoIP data for Cici. Please ensure that your license key and configuration are correct.
[14:20:21] [Craft Scheduler Thread - 2/INFO]: [AuthMe] Cici logged in 86.126.172.68
[14:20:21] [Craft Scheduler Thread - 2/WARN]: [PowerBoard] The player Cici has no Rank! Make sure that he has the correct permissions.
[14:21:35] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Loading next rotation items for shop RotatingShop
[14:21:35] [Server thread/INFO]: Shop >> New items were just added to Magic shop, check out /shop RotatingShop. Next items in 1h 0m 0s
[14:21:51] [Server thread/INFO]: aN0rmaLy issued server command: /shop RotatingShop
[14:22:04] [Server thread/INFO]: aN0rmaLy issued server command: /shop
[14:22:06] [Server thread/INFO]: Cici issued server command: /shop rotatingshop
[14:25:30] [User Authenticator #3/INFO]: UUID of player FaneCG is 78b646a8-7ab9-37f8-b00d-3cae5fdcadc7
[14:25:31] [Server thread/INFO]: FaneCG joined the game
[14:25:31] [Server thread/INFO]: FaneCG[/82.79.231.252:58879] logged in with entity id 1665 at ([harta1]-187.95002125742, 70.5, -333.2084981697337)
[14:25:31] [Craft Scheduler Thread - 1/WARN]: Unable to fetch GeoIP data for FaneCG. Please ensure that your license key and configuration are correct.
[14:25:31] [Craft Scheduler Thread - 5/INFO]: [AuthMe] The user FaneCG has 2 accounts:
[14:25:31] [Craft Scheduler Thread - 5/INFO]: [AuthMe] stefancg, FaneCG.
[14:25:31] [Craft Scheduler Thread - 5/INFO]: [AuthMe] FaneCG logged in 82.79.231.252
[14:25:42] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2525ms or 50 ticks behind
[14:26:01] [Server thread/INFO]: FaneCG issued server command: /taxi
[14:26:01] [Server thread/INFO]: Opening the menu taxi.yml to FaneCG.
[14:26:02] [Server thread/INFO]: MyCmd> Edit Complete. Info : 
[14:26:02] [Server thread/INFO]: MyCmd> 78b646a8-7ab9-37f8-b00d-3cae5fdcadc7 :
[14:26:02] [Server thread/INFO]: MyCmd>   taxi_travel_cmd: 1
[14:26:02] [Server thread/INFO]: FaneCG issued server command: /taxi-travel port_bus_station Port FaneCG 450 taxi
[14:26:02] [Server thread/INFO]: FaneCG issued mycmd (taxi-travel) command /taxi-travel port_bus_station Port FaneCG 450 taxi
[14:26:04] [Server thread/INFO]: CONSOLE issued server command: /warp port_bus_station FaneCG
[14:26:05] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2514ms or 50 ticks behind
[14:26:21] [Server thread/INFO]: Opening the menu sailer.yml to FaneCG.
[14:26:23] [Server thread/INFO]: MyCmd> Edit Complete. Info : 
[14:26:23] [Server thread/INFO]: MyCmd> 78b646a8-7ab9-37f8-b00d-3cae5fdcadc7 :
[14:26:23] [Server thread/INFO]: MyCmd>   sailrw_cmd: 1
[14:26:23] [Server thread/INFO]: FaneCG issued server command: /sailrw
[14:26:23] [Server thread/INFO]: FaneCG issued mycmd (flyrw) command /sailrw
[14:26:23] [Server thread/INFO]: [WorldBorder] [CONFIG] Configuration saved.
[14:26:23] [Server thread/INFO]: [WorldBorder] Border bypass for player "FaneCG" is enabled.
[14:26:24] [Server thread/INFO]: CONSOLE issued server command: /tp FaneCG -29989 64 19989
[14:26:24] [Server thread/INFO]: Teleporting...
[14:26:25] [Server thread/INFO]: [PlayMoreSounds] Playing the sound minecraft:ship_horn with volume 10.0 and pitch 1.0 to FaneCG.
[14:26:57] [Server thread/INFO]: [WorldBorder] [CONFIG] Configuration saved.
[14:26:57] [Server thread/INFO]: [WorldBorder] Border bypass for player "FaneCG" is disabled.
[14:27:15] [Server thread/INFO]: CONSOLE issued server command: /tp FaneCG an0rmaly
[14:28:20] [Server thread/INFO]: FaneCG issued server command: /spawn
[14:30:06] [Server thread/INFO]: aN0rmaLy issued server command: /balance
[14:30:06] [Server thread/INFO]: aN0rmaLy was denied access to command.
[14:30:10] [Craft Scheduler Thread - 0/INFO]: BankPlus The BankTop has been updated!
[14:31:28] [Server thread/INFO]: FaneCG issued server command: /sethome
[14:32:22] [Server thread/INFO]: command. Type "/help" for help.
[14:32:26] [Server thread/INFO]: CONSOLE issued server command: /ess reload
[14:32:26] [Server thread/INFO]: Loaded 39098 items from items.json.
[14:32:26] [Server thread/INFO]: Using locale en_US
[14:32:26] [Server thread/INFO]: ServerListPingEvent: Spigot iterator API
[14:32:26] [Server thread/INFO]: Essentials reloaded 2.21.0-dev+24-0af4436.
[14:32:36] [Server thread/INFO]: FaneCG issued server command: /sethome
[14:33:01] [Server thread/INFO]: FaneCG issued server command: /homes
[14:33:13] [Server thread/INFO]: FaneCG issued server command: /sailback
[14:33:13] [Server thread/INFO]: CONSOLE issued server command: /tp FaneCG 277 665 -318
[14:33:13] [Server thread/INFO]: Teleporting...
[14:33:13] [Server thread/INFO]: Error: The teleport destination is unsafe and teleport-safety is disabled.
[14:33:16] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2961ms or 59 ticks behind
[14:33:26] [Server thread/INFO]: FaneCG issued server command: /taxi
[14:33:26] [Server thread/INFO]: Opening the menu taxi.yml to FaneCG.
[14:33:31] [Server thread/INFO]: MyCmd> Edit Complete. Info : 
[14:33:31] [Server thread/INFO]: MyCmd> 78b646a8-7ab9-37f8-b00d-3cae5fdcadc7 :
[14:33:31] [Server thread/INFO]: MyCmd>   taxi_travel_cmd: 1
[14:33:31] [Server thread/INFO]: FaneCG issued server command: /taxi-travel residences_bus_station Residences FaneCG 450 taxi
[14:33:31] [Server thread/INFO]: FaneCG issued mycmd (taxi-travel) command /taxi-travel residences_bus_station Residences FaneCG 450 taxi
[14:33:33] [Server thread/INFO]: CONSOLE issued server command: /warp residences_bus_station FaneCG
[14:33:33] [Server thread/INFO]: Error: The teleport destination is unsafe and teleport-safety is disabled.
[14:34:32] [Server thread/INFO]: CONSOLE issued server command: /ess reload
[14:34:32] [Server thread/INFO]: Loaded 39098 items from items.json.
[14:34:32] [Server thread/INFO]: Using locale en_US
[14:34:32] [Server thread/INFO]: ServerListPingEvent: Spigot iterator API
[14:34:32] [Server thread/INFO]: Essentials reloaded 2.21.0-dev+24-0af4436.
[14:34:38] [Server thread/INFO]: FaneCG issued server command: /taxi
[14:34:38] [Server thread/INFO]: Opening the menu taxi.yml to FaneCG.
[14:34:40] [Server thread/INFO]: MyCmd> Edit Complete. Info : 
[14:34:40] [Server thread/INFO]: MyCmd> 78b646a8-7ab9-37f8-b00d-3cae5fdcadc7 :
[14:34:40] [Server thread/INFO]: MyCmd>   taxi_travel_cmd: 1
[14:34:40] [Server thread/INFO]: FaneCG issued server command: /taxi-travel residences_bus_station Residences FaneCG 450 taxi
[14:34:40] [Server thread/INFO]: FaneCG issued mycmd (taxi-travel) command /taxi-travel residences_bus_station Residences FaneCG 450 taxi
[14:34:42] [Server thread/INFO]: CONSOLE issued server command: /warp residences_bus_station FaneCG
[14:34:42] [Server thread/INFO]: Error: The teleport destination is unsafe and teleport-safety is disabled.
[14:35:07] [Server thread/INFO]: CONSOLE issued server command: /ess reload
[14:35:07] [Server thread/INFO]: Loaded 39098 items from items.json.
[14:35:07] [Server thread/INFO]: Using locale en_US
[14:35:07] [Server thread/INFO]: ServerListPingEvent: Spigot iterator API
[14:35:07] [Server thread/INFO]: Essentials reloaded 2.21.0-dev+24-0af4436.
[14:35:20] [Server thread/INFO]: CONSOLE issued server command: /warp residences_bus_station FaneCG
[14:35:24] [Server thread/INFO]: Cici issued server command: /homew
[14:35:26] [Server thread/INFO]: Cici issued server command: /home
[14:35:27] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2537ms or 50 ticks behind
[14:35:45] [Server thread/INFO]: Cici issued server command: /hme
[14:35:46] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 3213ms or 64 ticks behind
[14:35:47] [Server thread/INFO]: Cici issued server command: /home
[14:36:05] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2509ms or 50 ticks behind
[14:36:36] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2507ms or 50 ticks behind
[14:37:27] [Server thread/INFO]: aN0rmaLy was slain by Zombie
[14:37:47] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2524ms or 50 ticks behind
[14:38:08] [Server thread/INFO]: aN0rmaLy issued server command: /pay FaneCG 1000
[14:38:14] [Server thread/INFO]: FaneCG issued server command: /taxi
[14:38:14] [Server thread/INFO]: Opening the menu taxi.yml to FaneCG.
[14:38:16] [Server thread/INFO]: MyCmd> Edit Complete. Info : 
[14:38:16] [Server thread/INFO]: MyCmd> 78b646a8-7ab9-37f8-b00d-3cae5fdcadc7 :
[14:38:16] [Server thread/INFO]: MyCmd>   taxi_travel_cmd: 1
[14:38:16] [Server thread/INFO]: FaneCG issued server command: /taxi-travel port_bus_station Port FaneCG 450 taxi
[14:38:16] [Server thread/INFO]: FaneCG issued mycmd (taxi-travel) command /taxi-travel port_bus_station Port FaneCG 450 taxi
[14:38:17] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2539ms or 50 ticks behind
[14:38:18] [Server thread/INFO]: CONSOLE issued server command: /warp port_bus_station FaneCG
[14:38:30] [Server thread/INFO]: Opening the menu sailer.yml to FaneCG.
[14:38:31] [Server thread/INFO]: MyCmd> Edit Complete. Info : 
[14:38:31] [Server thread/INFO]: MyCmd> 78b646a8-7ab9-37f8-b00d-3cae5fdcadc7 :
[14:38:31] [Server thread/INFO]: MyCmd>   sailrw_cmd: 1
[14:38:31] [Server thread/INFO]: FaneCG issued server command: /sailrw
[14:38:31] [Server thread/INFO]: FaneCG issued mycmd (flyrw) command /sailrw
[14:38:31] [Server thread/INFO]: [WorldBorder] [CONFIG] Configuration saved.
[14:38:31] [Server thread/INFO]: [WorldBorder] Border bypass for player "FaneCG" is enabled.
[14:38:32] [Server thread/INFO]: CONSOLE issued server command: /tp FaneCG -29989 64 19989
[14:38:32] [Server thread/INFO]: Teleporting...
[14:38:33] [Server thread/INFO]: [PlayMoreSounds] Playing the sound minecraft:ship_horn with volume 10.0 and pitch 1.0 to FaneCG.
[14:39:05] [Server thread/INFO]: [WorldBorder] [CONFIG] Configuration saved.
[14:39:05] [Server thread/INFO]: [WorldBorder] Border bypass for player "FaneCG" is disabled.
[14:39:07] [Server thread/INFO]: FaneCG issued server command: /home
[14:39:43] [Server thread/INFO]: CONSOLE issued server command: /tp FaneCG an0rmaly
[14:39:53] [Server thread/INFO]: FaneCG issued server command: /sethome
[14:40:28] [Craft Scheduler Thread - 2/INFO]: BankPlus The BankTop has been updated!
[14:40:41] [Server thread/INFO]: Saving the game (this may take a moment!)
[14:40:41] [Server thread/INFO]: Saved the game
[14:41:27] [Server thread/INFO]: Cici lost connection: Disconnected
[14:41:27] [Server thread/INFO]: Cici left the game
[14:41:39] [Server thread/INFO]: aN0rmaLy lost connection: Disconnected
[14:41:39] [Server thread/INFO]: aN0rmaLy left the game
[14:48:16] [Server thread/INFO]: FaneCG lost connection: Disconnected
[14:48:17] [Server thread/INFO]: FaneCG left the game
[14:50:28] [Craft Scheduler Thread - 9/INFO]: BankPlus The BankTop has been updated!
[14:55:17] [User Authenticator #4/INFO]: UUID of player FaneCG is 78b646a8-7ab9-37f8-b00d-3cae5fdcadc7
[14:55:19] [Server thread/INFO]: FaneCG joined the game
[14:55:19] [Server thread/INFO]: FaneCG[/82.79.231.252:55293] logged in with entity id 11918 at ([ResourceWorld]-143.30000001192093, 71.9375, 1409.699999988079)
[14:55:19] [Craft Scheduler Thread - 2/WARN]: Unable to fetch GeoIP data for FaneCG. Please ensure that your license key and configuration are correct.
[14:55:20] [Craft Scheduler Thread - 2/WARN]: [PowerBoard] The player FaneCG has no Rank! Make sure that he has the correct permissions.
[14:55:20] [Craft Scheduler Thread - 9/INFO]: [AuthMe] The user FaneCG has 2 accounts:
[14:55:20] [Craft Scheduler Thread - 9/INFO]: [AuthMe] stefancg, FaneCG.
[14:55:20] [Craft Scheduler Thread - 9/INFO]: [AuthMe] FaneCG logged in 82.79.231.252
[15:00:28] [Craft Scheduler Thread - 0/INFO]: BankPlus The BankTop has been updated!
[15:10:28] [Craft Scheduler Thread - 9/INFO]: BankPlus The BankTop has been updated!
[15:12:35] [Server thread/INFO]: FaneCG was blown up by Creeper
[15:12:40] [Server thread/INFO]: FaneCG issued server command: /home
[15:16:51] [User Authenticator #5/INFO]: UUID of player Cici is 010f6b39-58a7-3195-8c6d-3d0868d2fa14
[15:16:55] [Server thread/INFO]: Cici joined the game
[15:16:55] [Server thread/INFO]: Cici[/86.126.172.68:52836] logged in with entity id 16504 at ([ResourceWorld]-570.3000000119209, -16.0, 151.33215782860952)
[15:16:55] [Craft Scheduler Thread - 9/WARN]: Unable to fetch GeoIP data for Cici. Please ensure that your license key and configuration are correct.
[15:16:55] [Craft Scheduler Thread - 9/INFO]: [AuthMe] Cici logged in 86.126.172.68
[15:16:55] [Craft Scheduler Thread - 9/WARN]: [PowerBoard] The player Cici has no Rank! Make sure that he has the correct permissions.
[15:17:23] [User Authenticator #6/INFO]: UUID of player aN0rmaLy is 75a7c398-b8b0-3db6-8347-70d997d93268
[15:17:27] [Server thread/INFO]: aN0rmaLy joined the game
[15:17:27] [Server thread/INFO]: aN0rmaLy[/86.126.173.87:61589] logged in with entity id 16833 at ([ResourceWorld]-145.5711125524578, 76.0, 1405.0247113301414)
[15:17:27] [Craft Scheduler Thread - 1/WARN]: Unable to fetch GeoIP data for aN0rmaLy. Please ensure that your license key and configuration are correct.
[15:17:27] [Craft Scheduler Thread - 2/INFO]: [AuthMe] aN0rmaLy logged in 86.126.173.87
[15:17:27] [Craft Scheduler Thread - 2/WARN]: [PowerBoard] The player aN0rmaLy has no Rank! Make sure that he has the correct permissions.
[15:18:51] [Server thread/INFO]: Reloading Citizens...
[15:18:51] [Server thread/WARN]: java.lang.ClassCastException: class net.citizensnpcs.nms.v1_20_R3.entity.nonliving.ItemFrameController$EntityItemFrameNPC cannot be cast to class net.minecraft.world.entity.decoration.GlowItemFrame (net.citizensnpcs.nms.v1_20_R3.entity.nonliving.ItemFrameController$EntityItemFrameNPC is in unnamed module of loader org.bukkit.plugin.java.PluginClassLoader @623a549a; net.minecraft.world.entity.decoration.GlowItemFrame is in unnamed module of loader java.net.URLClassLoader @31221be2)
[15:18:51] [Server thread/WARN]:     at net.citizensnpcs.nms.v1_20_R3.entity.nonliving.GlowItemFrameController.createEntity(GlowItemFrameController.java:40)
[15:18:51] [Server thread/WARN]:     at net.citizensnpcs.npc.AbstractEntityController.create(AbstractEntityController.java:24)
[15:18:51] [Server thread/WARN]:     at net.citizensnpcs.npc.CitizensNPC.spawn(CitizensNPC.java:301)
[15:18:51] [Server thread/WARN]:     at net.citizensnpcs.npc.CitizensNPC.load(CitizensNPC.java:184)
[15:18:51] [Server thread/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:59)
[15:18:51] [Server thread/WARN]:     at net.citizensnpcs.Citizens.reload(Citizens.java:480)
[15:18:51] [Server thread/WARN]:     at net.citizensnpcs.commands.AdminCommands.reload(AdminCommands.java:56)
[15:18:51] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[15:18:51] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
[15:18:51] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[15:18:51] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568)
[15:18:51] [Server thread/WARN]:     at net.citizensnpcs.api.command.CommandManager.executeCommand(CommandManager.java:193)
[15:18:51] [Server thread/WARN]:     at net.citizensnpcs.api.command.CommandManager.execute(CommandManager.java:104)
[15:18:51] [Server thread/WARN]:     at net.citizensnpcs.api.command.CommandManager.executeSafe(CommandManager.java:234)
[15:18:51] [Server thread/WARN]:     at net.citizensnpcs.Citizens.onCommand(Citizens.java:341)
[15:18:51] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[15:18:51] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:149)
[15:18:51] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.dispatchCommand(CraftServer.java:875)
[15:18:51] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.dispatchServerCommand(CraftServer.java:860)
[15:18:51] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.bk(DedicatedServer.java:412)
[15:18:51] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:388)
[15:18:51] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1242)
[15:18:51] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1054)
[15:18:51] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[15:18:51] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:840)