Date: 2023/03/13 12:53:53 UTC-07:00
Type: Server Log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
[12:52:09] [ServerMain/INFO]: Building unoptimized datafixer
[ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[ServerMain/INFO]: Loaded 7 recipes
[Server thread/INFO]: Starting minecraft server version 1.19.2
[Server thread/INFO]: Loading properties
[Server thread/INFO]: This server is running Paper version git-Paper-307 (MC: 1.19.2) (Implementing API version 1.19.2-R0.1-SNAPSHOT) (Git: 476ef25)
[Server thread/INFO]: Server Ping Player Sample Count: 12
[Server thread/INFO]: Using 4 threads for Netty based IO
[Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 3 worker threads, and gen parallelism of 3 threads
[Server thread/INFO]: Default game type: SURVIVAL
[Server thread/INFO]: Generating keypair
[Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25578
[Server thread/INFO]: Using epoll channel type
[Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[Server thread/ERROR]: Ambiguous plugin name `WorldBorder' for files `plugins/WorldBorder.jar' and `plugins/WorldBorder(2).jar' in `plugins'
[Server thread/ERROR]: [STDERR] [org.bukkit.craftbukkit.v1_19_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[Server thread/WARN]: Legacy plugin VoidWorld v1.0 does not specify an api-version.
[Server thread/WARN]: Legacy plugin RyuCommons v1.0-SNAPSHOT does not specify an api-version.
[Server thread/WARN]: Legacy plugin TDRPlaytime v1.11.5 does not specify an api-version.
[Server thread/WARN]: Legacy plugin NightVision v0.4 does not specify an api-version.
[Server thread/WARN]: Legacy plugin RyuRedis v1.0-SNAPSHOT does not specify an api-version.
[Server thread/INFO]: [NexEngine] Loading 1 libraries... please wait
[Server thread/INFO]: [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[Server thread/INFO]: [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[Server thread/WARN]: Legacy plugin RyuEvents v1.0-RELEASE does not specify an api-version.
[Server thread/INFO]: [Denizen] Loading 2 libraries... please wait
[Server thread/INFO]: [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[Server thread/INFO]: [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[Server thread/INFO]: [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[Server thread/INFO]: [Denizen] Loaded library /home/container/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[Server thread/INFO]: [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[Server thread/INFO]: [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[Server thread/INFO]: [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[Server thread/INFO]: [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[Server thread/INFO]: [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[Server thread/INFO]: [PremiumVanish] Loading 1 libraries... please wait
[Server thread/INFO]: [PremiumVanish] Loaded library /home/container/libraries/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar
[Server thread/INFO]: [PremiumVanish] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar
[Server thread/INFO]: [Boss] Loading 1 libraries... please wait
[Server thread/INFO]: [Boss] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar
[Server thread/INFO]: [Boss] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[Server thread/INFO]: [Boss] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[Server thread/INFO]: [Boss] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[Server thread/INFO]: [Boss] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[Server thread/INFO]: [Boss] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[Server thread/INFO]: [MineMageVoting] Loading MineMageVoting v1.0-SNAPSHOT
[Server thread/INFO]: [VoidWorld] Loading VoidWorld v1.0
[Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[Server thread/INFO]: [UltimateAutoRestart] Loading UltimateAutoRestart vBuild 52c
[Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v3.0.1
[Server thread/INFO]: [ModelEngineMerger] Loading ModelEngineMerger v1.0.0
[Server thread/INFO]: [MineMageAnnouncer] Loading MineMageAnnouncer v1.12.3
[Server thread/INFO]: [DeluxeTags] Loading DeluxeTags v1.8.2-Release
[Server thread/INFO]: [Blue Slime Core] Loading BlueSlimeCore v2.6.1.238
[Server thread/INFO]: [DamageIndicator] Loading DamageIndicator v1.3.4
[Server thread/INFO]: [ServerUtils] Loading ServerUtils v3.5.4
[Server thread/INFO]: [CooldownsX] Loading CooldownsX v5.0.0.214
[Server thread/INFO]: [CrazyVouchers] Loading CrazyVouchers v2.9.14.1+Beta
[Server thread/INFO]: [RyuCommons] Loading RyuCommons v1.0-SNAPSHOT
[Server thread/INFO]: [SimpleTrash] Loading SimpleTrash v2.0
[Server thread/INFO]: [PrettierExplosions] Loading PrettierExplosions v1.0.1
[Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.49
[Server thread/INFO]: [ItemRenamerReloaded] Loading ItemRenamerReloaded v0.6
[Server thread/INFO]: [HarvestEXP] Loading HarvestEXP vBuild 4a
[Server thread/INFO]: [HiveChecker] Loading HiveChecker v3.8.0
[Server thread/INFO]: [spark] Loading spark v1.10.29
[Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
[Server thread/INFO]: [RyuPunishments] Loading RyuPunishments v1.0-SNAPSHOT
[Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
[Server thread/INFO]: [MineMageDamage] Loading MineMageDamage v1.0-SNAPSHOT
[Server thread/INFO]: [LoneLibs] Loading LoneLibs v1.0.23
[Server thread/INFO]: [TDRPlaytime] Loading TDRPlaytime v1.11.5
[Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b588
[Server thread/WARN]: [ProtocolLib] Version (MC: 1.19.2) has not yet been tested! Proceed with caution.
[Server thread/INFO]: [VoidSpawn] Loading VoidSpawn v1.20.0
[Server thread/INFO]: [NightVision] Loading NightVision v0.4
[Server thread/INFO]: [RyuRedis] Loading RyuRedis v1.0-SNAPSHOT
[Server thread/INFO]: [VentedActivity] Loading VentedActivity v1.0-SNAPSHOT
[Server thread/INFO]: [PlayerStats] Loading PlayerStats v2.0
[Server thread/INFO]: [GrapplingHook] Loading GrapplingHook v1.6.5
[Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[Server thread/INFO]: [UltimateHomes] Loading UltimateHomes v2.5
[Server thread/INFO]: [PlayerBounties] Loading PlayerBounties v1.5.5
[Server thread/INFO]: [BankPlus] Loading BankPlus v5.7
[Server thread/INFO]: [ChatItem] Loading ChatItem v2.4.5
[Server thread/INFO]: [NexEngine] Loading NexEngine v2.2.6 build-04/10/2022
[Server thread/INFO]: [MyCommand] Loading MyCommand v5.7.3
[Server thread/INFO]: [SilkSpawners_v2] Loading SilkSpawners_v2 v2.1.9
[Server thread/INFO]: [VentureChat] Loading VentureChat v3.4.4
[Server thread/INFO]: [PlayerKits] Loading PlayerKits v2.24.3
[Server thread/INFO]: [Essentials] Loading Essentials v2.19.7
[Server thread/INFO]: [Trey's Command Blocker] Loading CommandBlocker v2.1.2
[Server thread/INFO]: [DropHeads] Loading DropHeads v3.7.11
[Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v2.5.3-SNAPSHOT-358;b72c690
[Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@423b7b24]
[Server thread/INFO]: [TAB] Loading TAB v3.1.5
[Server thread/INFO]: [Lottery] Loading Lottery v1.4.6
[Server thread/INFO]: [RyuTeams] Loading RyuTeams v1.0-SNAPSHOT
[Server thread/INFO]: [PlayerPoints] Loading PlayerPoints v3.2.5
[Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.7+216b061
[Server thread/INFO]: [CommandPrompter] Loading CommandPrompter v2.0.0
[Server thread/INFO]: [TradePlus] Loading TradePlus v3.82
[Server thread/INFO]: [Multiverse-NetherPortals] Loading Multiverse-NetherPortals v4.2.2-b807
[Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.6.2
[Server thread/INFO]: [HellConomy] Loading HellConomy v0.1.5.0
[Server thread/INFO]: [HellConomy] Loading HellConomy with Java Version: 17.0.6
[Server thread/INFO]: [HellConomy] Hooked into Vault
[Server thread/INFO]: [PvPManager] Loading PvPManager v3.10.9
[Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.20.0-dev+41-4dc994d
[Server thread/INFO]: [CoreProtect] Loading CoreProtect v21.3
[Server thread/INFO]: [RyuDungeons] Loading RyuDungeons v1.0-SNAPSHOT
[Server thread/INFO]: [CMILib] Loading CMILib v1.2.4.6
[Server thread/INFO]: [WorldBorder] Loading WorldBorder v1.19
[Server thread/INFO]: [RyuEvents] Loading RyuEvents v1.0-RELEASE
[Server thread/INFO]: [AdvancedPortals] Loading AdvancedPortals v0.9.3
[Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2793)
[Server thread/INFO]: [ApiaEnvoy] Loading ApiaEnvoy v3.0.30
[Server thread/INFO]: [ExcellentCrates] Loading ExcellentCrates v4.0.6
[Server thread/INFO]: [TradeSystem] Loading TradeSystem v2.2.0
[Server thread/INFO]: [EconomyShopGUI] Loading EconomyShopGUI v4.9.3
[Server thread/INFO]: [LifestealCore] Loading LifestealCore vBuild 7a
[Server thread/INFO]: [BottledExp] Loading BottledExp v3.1.2.2
[Server thread/INFO]: [GCore] Loading GCore v8.43.1
[Server thread/INFO]: [GSlotMachine] Loading GSlotMachine v3.1.1
[Server thread/INFO]: [Denizen] Loading Denizen v1.2.6-SNAPSHOT (build 1787-REL)
[Server thread/INFO]: [PremiumVanish] Loading PremiumVanish v2.8.3
[Server thread/INFO]: [InteractiveChat] Loading InteractiveChat v4.2.5.7
[Server thread/INFO]: [ItemsAdder] Loading ItemsAdder v3.3.1
[Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.7-DEV-155
[Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[Server thread/INFO]: [AdvancedCrates] Loading AdvancedCrates v3.8.3
[Server thread/INFO]: [Boss] Loading Boss v4.6.9
[Server thread/INFO]: [BeautyQuests] Loading BeautyQuests v0.20
[Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[Server thread/INFO]: [VoidWorld] Enabling VoidWorld v1.0*
[Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.6.1.238
[Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.49
[Server thread/INFO]: __
[Server thread/INFO]: | |__) LuckPerms v5.4.49
[Server thread/INFO]: |___ | Running on Bukkit - Paper
[Server thread/INFO]:
[Server thread/INFO]: [LuckPerms] Loading configuration...
[Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[Server thread/INFO]: [LuckPerms] Performing initial data load...
[Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1896ms)
[Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.23
[Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b588
[Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.19.7 which is not a depend or softdepend of this plugin.
[Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.6 build-04/10/2022
[Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R1
[Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[Server thread/INFO]: [NexEngine] Successfully hooked with HellConomy economy
[Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[Server thread/INFO]: [NexEngine] Successfully hooked with Vault!
[Server thread/INFO]: [NexEngine] Plugin loaded in 40 ms!
[Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.5.3-SNAPSHOT-358;b72c690
[Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R1.PaperweightFaweAdapter as the Bukkit adapter
[Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 23 build(s) out of date.
You are running build 358, the latest version is build 381.
Update at https://www.spigotmc.org/resources/13932/
[Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.5
[Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.1.0.42-SNAPSHOT
[Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[Server thread/INFO]: Preparing level "world"
[Server thread/INFO]: -------- World Settings For [world] --------
[Server thread/INFO]: Item Merge Radius: 2.5
[Server thread/INFO]: Item Despawn Rate: 6000
[Server thread/INFO]: View Distance: 10
[Server thread/INFO]: Simulation Distance: 10
[Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[Server thread/INFO]: Zombie Aggressive Towards Villager: true
[Server thread/INFO]: Nerfing mobs spawned from spawners: false
[Server thread/INFO]: Mob Spawn Range: 6
[Server thread/INFO]: Experience Merge Radius: 3.0
[Server thread/INFO]: Cactus Growth Modifier: 100%
[Server thread/INFO]: Cane Growth Modifier: 100%
[Server thread/INFO]: Melon Growth Modifier: 100%
[Server thread/INFO]: Mushroom Growth Modifier: 100%
[Server thread/INFO]: Pumpkin Growth Modifier: 100%
[Server thread/INFO]: Sapling Growth Modifier: 100%
[Server thread/INFO]: Beetroot Growth Modifier: 100%
[Server thread/INFO]: Carrot Growth Modifier: 100%
[Server thread/INFO]: Potato Growth Modifier: 100%
[Server thread/INFO]: Wheat Growth Modifier: 100%
[Server thread/INFO]: NetherWart Growth Modifier: 100%
[Server thread/INFO]: Vine Growth Modifier: 100%
[Server thread/INFO]: Cocoa Growth Modifier: 100%
[Server thread/INFO]: Bamboo Growth Modifier: 100%
[Server thread/INFO]: SweetBerry Growth Modifier: 100%
[Server thread/INFO]: Kelp Growth Modifier: 100%
[Server thread/INFO]: TwistingVines Growth Modifier: 100%
[Server thread/INFO]: WeepingVines Growth Modifier: 100%
[Server thread/INFO]: CaveVines Growth Modifier: 100%
[Server thread/INFO]: GlowBerry Growth Modifier: 100%
[Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[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
[Server thread/INFO]: Max TNT Explosions: 100
[Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[Server thread/INFO]: -------- World Settings For [world_nether] --------
[Server thread/INFO]: Item Merge Radius: 2.5
[Server thread/INFO]: Item Despawn Rate: 6000
[Server thread/INFO]: View Distance: 10
[Server thread/INFO]: Simulation Distance: 10
[Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[Server thread/INFO]: Zombie Aggressive Towards Villager: true
[Server thread/INFO]: Nerfing mobs spawned from spawners: false
[Server thread/INFO]: Mob Spawn Range: 6
[Server thread/INFO]: Experience Merge Radius: 3.0
[Server thread/INFO]: Cactus Growth Modifier: 100%
[Server thread/INFO]: Cane Growth Modifier: 100%
[Server thread/INFO]: Melon Growth Modifier: 100%
[Server thread/INFO]: Mushroom Growth Modifier: 100%
[Server thread/INFO]: Pumpkin Growth Modifier: 100%
[Server thread/INFO]: Sapling Growth Modifier: 100%
[Server thread/INFO]: Beetroot Growth Modifier: 100%
[Server thread/INFO]: Carrot Growth Modifier: 100%
[Server thread/INFO]: Potato Growth Modifier: 100%
[Server thread/INFO]: Wheat Growth Modifier: 100%
[Server thread/INFO]: NetherWart Growth Modifier: 100%
[Server thread/INFO]: Vine Growth Modifier: 100%
[Server thread/INFO]: Cocoa Growth Modifier: 100%
[Server thread/INFO]: Bamboo Growth Modifier: 100%
[Server thread/INFO]: SweetBerry Growth Modifier: 100%
[Server thread/INFO]: Kelp Growth Modifier: 100%
[Server thread/INFO]: TwistingVines Growth Modifier: 100%
[Server thread/INFO]: WeepingVines Growth Modifier: 100%
[Server thread/INFO]: CaveVines Growth Modifier: 100%
[Server thread/INFO]: GlowBerry Growth Modifier: 100%
[Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[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
[Server thread/INFO]: Max TNT Explosions: 100
[Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[Server thread/INFO]: Time elapsed: 77 ms
[Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[Server thread/INFO]: Time elapsed: 18 ms
[Server thread/INFO]: [MineMageVoting] Enabling MineMageVoting v1.0-SNAPSHOT
[Server thread/WARN]: [MineMageVoting] Loaded class com.vexsoftware.votifier.model.VotifierEvent from Votifier v2.7.3 which is not a depend or softdepend of this plugin.
[Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 52c
[Server thread/INFO]: [UltimateAutoRestart] Build 52c, a free resource by Norska - Thanks for downloading!
[Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.1
[Server thread/INFO]: [ModelEngineMerger] Enabling ModelEngineMerger v1.0.0
[Server thread/INFO]: [ModelEngineMerger] Enabling plugin...
[Server thread/INFO]: [ModelEngineMerger] Successfully enabled plugin!
[Server thread/INFO]: [MineMageAnnouncer] Enabling MineMageAnnouncer v1.12.3
[Server thread/INFO]: [MineMageAnnouncer] PlaceholderAPI integration was successful!
[Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[Server thread/INFO]: [DeluxeTags] 14 tags loaded
[Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxetags [1.8.2-Release]
[Server thread/INFO]: [DeluxeTags] ----------------------------
[Server thread/INFO]: [DeluxeTags] DeluxeTags Updater
[Server thread/INFO]: [DeluxeTags]
[Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[Server thread/INFO]: [DeluxeTags] The latest version
[Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[Server thread/INFO]: [DeluxeTags]
[Server thread/INFO]: [DeluxeTags] ----------------------------
[Server thread/INFO]: [DamageIndicator] Enabling DamageIndicator v1.3.4
[Server thread/INFO]: [DamageIndicator] Using server version accessor for v1_19_R1
[Server thread/INFO]: [ServerUtils] Enabling ServerUtils v3.5.4
[Server thread/INFO]: [CooldownsX] Enabling CooldownsX v5.0.0.214
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cooldownsx [5.0.0.214]
[Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v2.9.14.1+Beta
[Server thread/INFO]: [CrazyVouchers] Loading the Config.yml
[Server thread/INFO]: [CrazyVouchers] Successfully loaded Config.yml
[Server thread/INFO]: [CrazyVouchers] Loading the Data.yml
[Server thread/INFO]: [CrazyVouchers] Successfully loaded Data.yml
[Server thread/INFO]: [CrazyVouchers] Loading the Messages.yml
[Server thread/INFO]: [CrazyVouchers] Successfully loaded Messages.yml
[Server thread/INFO]: [CrazyVouchers] Loading the VoucherCodes.yml
[Server thread/INFO]: [CrazyVouchers] Successfully loaded VoucherCodes.yml
[Server thread/INFO]: [CrazyVouchers] Metrics has been enabled.
[Server thread/INFO]: [RyuCommons] Enabling RyuCommons v1.0-SNAPSHOT*
[Server thread/INFO]: [RyuCommons] Loading L2UI
[Server thread/INFO]: [RyuCommons] L2UI is now loaded
[Server thread/INFO]: Hooking NMS & Gson into Spigot v1_19_R1
[Server thread/INFO]: Hooking into RyuTeams.
[Server thread/INFO]: [SimpleTrash] Enabling SimpleTrash v2.0
[Server thread/INFO]: [PrettierExplosions] Enabling PrettierExplosions v1.0.1
[Server thread/INFO]: [ItemRenamerReloaded] Enabling ItemRenamerReloaded v0.6
[Server thread/INFO]: (!) ItemRenamer has been loaded. Version 0.6
[Server thread/INFO]: [HarvestEXP] Enabling HarvestEXP vBuild 4a
[Server thread/INFO]: [HarvestEXP] Build 4a, a free resource by Norska - Thanks for downloading!
[Server thread/INFO]: [HiveChecker] Enabling HiveChecker v3.8.0
[Server thread/INFO]: [HiveChecker] Initializing managers...
[Server thread/INFO]: [HiveChecker] InventoryManager initialized!
[Server thread/INFO]: [HiveChecker] Registering config...
[Server thread/INFO]: [HiveChecker] Registering listeners...
[Server thread/INFO]: [HiveChecker] Registering commands...
[Server thread/INFO]: [HiveChecker] Done and enabled in 7.60ms
[Server thread/INFO]: [spark] Enabling spark v1.10.29
[Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[Server thread/INFO]: [spark] Starting background profiler...
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.29]
[Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[Server thread/INFO]: [BuycraftX] Validating your server key...
[Server thread/WARN]: [BuycraftX] Your server and webstore online mode settings are mismatched. Unless you are using a proxy and server combination (such as BungeeCord/Spigot or LilyPad/Connect) that corrects UUIDs, then you may experience issues with packages not applying.
[Server thread/WARN]: [BuycraftX] If you have verified that your set up is correct, you can suppress this message by setting is-bungeecord=true in your BuycraftX config.properties.
[Server thread/INFO]: [BuycraftX] Fetching all server packages...
[Server thread/INFO]: [RyuPunishments] Enabling RyuPunishments v1.0-SNAPSHOT
[Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@4376d6f9
[Server thread/INFO]: Staff Plugin Database Initialized
[Server thread/WARN]: [RyuPunishments] Loaded class cc.ryujingames.commons.relocations.fasterxml.jackson.databind.ObjectMapper from RyuCommons v1.0-SNAPSHOT which is not a depend or softdepend of this plugin.
[Thread-12/INFO]: [org.eclipse.jetty.util.log] Logging initialized @17214ms to org.eclipse.jetty.util.log.Slf4jLog
[Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[Server thread/INFO]: [Votifier] Loaded token for website: default
[Thread-12/INFO]: [spark.embeddedserver.jetty.EmbeddedJettyServer] == Spark has ignited ...
[Thread-12/INFO]: [spark.embeddedserver.jetty.EmbeddedJettyServer] >> Listening on 0.0.0.0:7879
[Thread-12/INFO]: [org.eclipse.jetty.server.Server] jetty-9.4.z-SNAPSHOT; built: 2019-04-29T20:42:08.989Z; git: e1bc35120a6617ee3df052294e433f3a25ce7097; jvm 17.0.6+10
[Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[Thread-12/INFO]: [org.eclipse.jetty.server.session] DefaultSessionIdManager workerName=node0
[Thread-12/INFO]: [org.eclipse.jetty.server.session] No SessionScavenger set, using defaults
[Thread-12/INFO]: [org.eclipse.jetty.server.session] node0 Scavenging every 600000ms
[Thread-12/INFO]: [org.eclipse.jetty.server.AbstractConnector] Started ServerConnector@5553a760{HTTP/1.1,[http/1.1]}{0.0.0.0:7879}
[Thread-12/INFO]: [org.eclipse.jetty.server.Server] Started @17282ms
[Server thread/INFO]: [Votifier] Receiving votes over PluginMessaging channel 'nuvotifier:votes'.
[Server thread/INFO]: [MineMageDamage] Enabling MineMageDamage v1.0-SNAPSHOT
[Votifier epoll boss/ERROR]: [null] Votifier was not able to bind to /172.18.0.1:8193
com.vexsoftware.votifier.io.netty.channel.unix.Errors$NativeIoException: bind(..) failed: Cannot assign requested address
[Server thread/INFO]: [TDRPlaytime] Enabling TDRPlaytime v1.11.5*
[Server thread/INFO]: [TDRPlaytime] Loading milestones
[Server thread/INFO]: [TDRPlaytime] 0 milestones loaded
[Server thread/INFO]: [TDRPlaytime] Loading repeating milestones
[Server thread/INFO]: [TDRPlaytime] PlaceholderAPI expansion implemented
[ForkJoinPool.commonPool-worker-1/INFO]: [TDRPlaytime] 1 repeating milestones loaded
[Server thread/WARN]: [TDRPlaytime] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.11.2 which is not a depend or softdepend of this plugin.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tdrplaytime [1.11.5]
[Server thread/INFO]: [VoidSpawn] Enabling VoidSpawn v1.20.0
[Server thread/INFO]: [VoidSpawn] No SkyBlock plugins found, disabling island mode support.
[Server thread/INFO]: [VoidSpawn] v1.20.0 by EnderCrest enabled
[Server thread/INFO]: [NightVision] Enabling NightVision v0.4*
[Server thread/INFO]: [NightVision] NightVision v0.4 starting ...
[Server thread/INFO]: [NightVision] NightVision v0.4 started!
[Server thread/INFO]:
[Server thread/INFO]:
[Server thread/INFO]: This plugin has been marked as 'Archived' by BGHDDevelopment LLC.
[Server thread/INFO]: This version will continue to work but will not receive updates or support.
[Server thread/INFO]:
[Server thread/INFO]:
[Server thread/INFO]: [RyuRedis] Enabling RyuRedis v1.0-SNAPSHOT*
[Server thread/INFO]: [VentedActivity] Enabling VentedActivity v1.0-SNAPSHOT
[Server thread/INFO]: [PlayerStats] Enabling PlayerStats v2.0
[pool-26-thread-1/INFO]: [PlayerStats] Loaded 0 excluded players from file (0ms)
[pool-26-thread-1/INFO]: [PlayerStats] Loaded 39 offline players (24ms)
[Server thread/INFO]: [PlayerStats] Enabled PlayerStats!
[Server thread/INFO]: [GrapplingHook] Enabling GrapplingHook v1.6.5
[Server thread/INFO]: [GrapplingHook] Loaded 8 recipes.
[Server thread/INFO]: [UltimateHomes] Enabling UltimateHomes v2.5
[Server thread/INFO]:
[Server thread/INFO]: --------------------------------------
[Server thread/INFO]: UltimateHomes by kixmc
[Server thread/INFO]: Enabled on version 2.5
[Server thread/INFO]: --------------------------------------
[Server thread/INFO]:
[Server thread/INFO]: [PlayerBounties] Enabling PlayerBounties v1.5.5
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerbounties [1.5.5]
[Server thread/INFO]: [PlayerBounties] Starting Metrics. You can opt-out using the global bStats config.
[Server thread/INFO]: [BankPlus] Enabling BankPlus v5.7
[Server thread/INFO]:
[Server thread/INFO]: BankPlus Enabling plugin...
[Server thread/INFO]: Running on version 5.7!
[Server thread/INFO]: Detected server version: git-Paper-307 (MC: 1.19.2)
[Server thread/INFO]: Loaded config files! (84ms)
[Server thread/INFO]: Registered events! (3ms)
[Server thread/INFO]: Loaded plugin command! (1ms)
[Server thread/INFO]: Done! (90 total ms)
[Server thread/INFO]:
[Server thread/INFO]: BankPlus [INFO] Hooked into PlaceholderAPI!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bankplus [5.7]
[Server thread/INFO]: BankPlus [INFO] Hooked into Essentials!
[Server thread/INFO]: [ChatItem] Enabling ChatItem v2.4.5
[Server thread/INFO]: [ChatItem] Detected server version: v1_19
[Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[Server thread/INFO]: [ChatItem] Loaded 5 getter for base components.
[Server thread/INFO]: [ChatItem] Save method founded: b. Use ComponentBuilder's method.
[Server thread/INFO]: [ChatItem] Manager automatically chosen: PacketEditing (packet), ChatListener (chat)
[Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.3
[Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.3*-=-=-=-=-=-=-=-=-=-*
[Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[Server thread/INFO]: | Command file(s) found : 1
[Server thread/INFO]: | Config : Ready.
[Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mycommand [1.0.0]
[Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[Server thread/INFO]: | Custom commands loaded : 8
[Server thread/INFO]: | You're running the latest version of MyCommand.
[Server thread/WARN]: [MyCommand] Loaded class com.comphenix.protocol.events.PacketListener from ProtocolLib v5.0.0-SNAPSHOT-b588 which is not a depend or softdepend of this plugin.
[Server thread/INFO]: | by emmerrei a.k.a. ivanfromitaly.
[Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-* Done! *-=-=-=-=-=-=-=-=-=-=-*
[Server thread/INFO]: [SilkSpawners_v2] Enabling SilkSpawners_v2 v2.1.9
[Server thread/INFO]: [SilkSpawners] [INFO]: Starting SilkSpawners v2.1.9
[pool-27-thread-1/INFO]: [SilkSpawners] [INFO]: Checking for updates
[Server thread/INFO]: [SilkSpawners] [INFO]: Loading Cross-Version support
[Server thread/INFO]: [SilkSpawners] [INFO]: Loading support for NMS-Version v1_19_R1
[Server thread/INFO]: [SilkSpawners] [INFO]: Loading locale file
[Server thread/INFO]: [SilkSpawners] [INFO]: Starting metrics service. You can disable the collection of anonymous usage data by editing the config file under /plugins/bStats/
[Server thread/INFO]: [SilkSpawners] [INFO]: Registering listeners
[Server thread/INFO]: [SilkSpawners] [INFO]: Registering commands
[Server thread/INFO]: [SilkSpawners] [INFO]: Started SilkSpawners v2.1.9
[Server thread/INFO]: [VentureChat] Enabling VentureChat v3.4.4
[Server thread/INFO]: [VentureChat] - Initializing...
[Server thread/INFO]: [VentureChat] - Config found! Loading file.
[Server thread/INFO]: [VentureChat] - Checking for Vault...
[Server thread/INFO]: [VentureChat] - Loading player data
[pool-27-thread-1/INFO]: [SilkSpawners] [INFO]: The plugin is up to date (v2.1.9)
[Server thread/INFO]: [VentureChat] - Registering Listeners
[Server thread/INFO]: [VentureChat] - Attaching to Executors
[Server thread/INFO]: [VentureChat] - Establishing BungeeCord
[Server thread/INFO]: [VentureChat] - Enabling PlaceholderAPI Hook
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: venturechat [3.4.4]
[Server thread/INFO]: [VentureChat] - Enabled Successfully
[Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.24.3
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerkits [2.24.3]
[Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.24.3
[Server thread/INFO]: [PlayerKits] Thanks for using my plugin! ~Ajneb97
[Server thread/INFO]: There is a new version available. (2.25.1)
[Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/75185/
[Server thread/INFO]: [Essentials] Enabling Essentials v2.19.7
[Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsSpawn to the same version.
[Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[Server thread/INFO]: [Essentials] No kits found to migrate.
[Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[Server thread/INFO]: [Essentials] Using locale en_US
[Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[Server thread/INFO]: [Trey's Command Blocker] Enabling CommandBlocker v2.1.2
[Server thread/INFO]: [DropHeads] Enabling DropHeads v3.7.11
[Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[12:52:26] [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.
[Server thread/INFO]: -------- World Settings For [Lobby] --------
[Server thread/INFO]: Item Merge Radius: 2.5
[Server thread/INFO]: Item Despawn Rate: 6000
[Server thread/INFO]: View Distance: 10
[Server thread/INFO]: Simulation Distance: 10
[Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[Server thread/INFO]: Zombie Aggressive Towards Villager: true
[Server thread/INFO]: Nerfing mobs spawned from spawners: false
[Server thread/INFO]: Mob Spawn Range: 6
[Server thread/INFO]: Experience Merge Radius: 3.0
[Server thread/INFO]: Cactus Growth Modifier: 100%
[Server thread/INFO]: Cane Growth Modifier: 100%
[Server thread/INFO]: Melon Growth Modifier: 100%
[Server thread/INFO]: Mushroom Growth Modifier: 100%
[Server thread/INFO]: Pumpkin Growth Modifier: 100%
[Server thread/INFO]: Sapling Growth Modifier: 100%
[Server thread/INFO]: Beetroot Growth Modifier: 100%
[Server thread/INFO]: Carrot Growth Modifier: 100%
[Server thread/INFO]: Potato Growth Modifier: 100%
[Server thread/INFO]: Wheat Growth Modifier: 100%
[Server thread/INFO]: NetherWart Growth Modifier: 100%
[Server thread/INFO]: Vine Growth Modifier: 100%
[Server thread/INFO]: Cocoa Growth Modifier: 100%
[Server thread/INFO]: Bamboo Growth Modifier: 100%
[Server thread/INFO]: SweetBerry Growth Modifier: 100%
[Server thread/INFO]: Kelp Growth Modifier: 100%
[Server thread/INFO]: TwistingVines Growth Modifier: 100%
[Server thread/INFO]: WeepingVines Growth Modifier: 100%
[Server thread/INFO]: CaveVines Growth Modifier: 100%
[Server thread/INFO]: GlowBerry Growth Modifier: 100%
[Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[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
[Server thread/INFO]: Max TNT Explosions: 100
[Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[Server thread/INFO]: Preparing start region for dimension minecraft:lobby
[Server thread/INFO]: Time elapsed: 116 ms
[Server thread/INFO]: -------- World Settings For [Events] --------
[Server thread/INFO]: Item Merge Radius: 2.5
[Server thread/INFO]: Item Despawn Rate: 6000
[Server thread/INFO]: View Distance: 10
[Server thread/INFO]: Simulation Distance: 10
[Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[Server thread/INFO]: Zombie Aggressive Towards Villager: true
[Server thread/INFO]: Nerfing mobs spawned from spawners: false
[Server thread/INFO]: Mob Spawn Range: 6
[Server thread/INFO]: Experience Merge Radius: 3.0
[Server thread/INFO]: Cactus Growth Modifier: 100%
[Server thread/INFO]: Cane Growth Modifier: 100%
[Server thread/INFO]: Melon Growth Modifier: 100%
[Server thread/INFO]: Mushroom Growth Modifier: 100%
[Server thread/INFO]: Pumpkin Growth Modifier: 100%
[Server thread/INFO]: Sapling Growth Modifier: 100%
[Server thread/INFO]: Beetroot Growth Modifier: 100%
[Server thread/INFO]: Carrot Growth Modifier: 100%
[Server thread/INFO]: Potato Growth Modifier: 100%
[Server thread/INFO]: Wheat Growth Modifier: 100%
[Server thread/INFO]: NetherWart Growth Modifier: 100%
[Server thread/INFO]: Vine Growth Modifier: 100%
[Server thread/INFO]: Cocoa Growth Modifier: 100%
[Server thread/INFO]: Bamboo Growth Modifier: 100%
[Server thread/INFO]: SweetBerry Growth Modifier: 100%
[Server thread/INFO]: Kelp Growth Modifier: 100%
[Server thread/INFO]: TwistingVines Growth Modifier: 100%
[Server thread/INFO]: WeepingVines Growth Modifier: 100%
[Server thread/INFO]: CaveVines Growth Modifier: 100%
[Server thread/INFO]: GlowBerry Growth Modifier: 100%
[Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[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
[Server thread/INFO]: Max TNT Explosions: 100
[Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[Server thread/INFO]: Preparing start region for dimension minecraft:events
[Server thread/INFO]: Time elapsed: 58 ms
[Server thread/INFO]: -------- World Settings For [Warzone] --------
[Server thread/INFO]: Item Merge Radius: 2.5
[Server thread/INFO]: Item Despawn Rate: 6000
[Server thread/INFO]: View Distance: 10
[Server thread/INFO]: Simulation Distance: 10
[Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[Server thread/INFO]: Zombie Aggressive Towards Villager: true
[Server thread/INFO]: Nerfing mobs spawned from spawners: false
[Server thread/INFO]: Mob Spawn Range: 6
[Server thread/INFO]: Experience Merge Radius: 3.0
[Server thread/INFO]: Cactus Growth Modifier: 100%
[Server thread/INFO]: Cane Growth Modifier: 100%
[Server thread/INFO]: Melon Growth Modifier: 100%
[Server thread/INFO]: Mushroom Growth Modifier: 100%
[Server thread/INFO]: Pumpkin Growth Modifier: 100%
[Server thread/INFO]: Sapling Growth Modifier: 100%
[Server thread/INFO]: Beetroot Growth Modifier: 100%
[Server thread/INFO]: Carrot Growth Modifier: 100%
[Server thread/INFO]: Potato Growth Modifier: 100%
[Server thread/INFO]: Wheat Growth Modifier: 100%
[Server thread/INFO]: NetherWart Growth Modifier: 100%
[Server thread/INFO]: Vine Growth Modifier: 100%
[Server thread/INFO]: Cocoa Growth Modifier: 100%
[Server thread/INFO]: Bamboo Growth Modifier: 100%
[Server thread/INFO]: SweetBerry Growth Modifier: 100%
[Server thread/INFO]: Kelp Growth Modifier: 100%
[Server thread/INFO]: TwistingVines Growth Modifier: 100%
[Server thread/INFO]: WeepingVines Growth Modifier: 100%
[Server thread/INFO]: CaveVines Growth Modifier: 100%
[Server thread/INFO]: GlowBerry Growth Modifier: 100%
[Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[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
[Server thread/INFO]: Max TNT Explosions: 100
[Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[Server thread/INFO]: Preparing start region for dimension minecraft:warzone
[Server thread/INFO]: Time elapsed: 93 ms
[Server thread/INFO]: -------- World Settings For [portalWorld] --------
[Server thread/INFO]: Item Merge Radius: 2.5
[Server thread/INFO]: Item Despawn Rate: 6000
[Server thread/INFO]: View Distance: 10
[Server thread/INFO]: Simulation Distance: 10
[Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[Server thread/INFO]: Zombie Aggressive Towards Villager: true
[Server thread/INFO]: Nerfing mobs spawned from spawners: false
[Server thread/INFO]: Mob Spawn Range: 6
[Server thread/INFO]: Experience Merge Radius: 3.0
[Server thread/INFO]: Cactus Growth Modifier: 100%
[Server thread/INFO]: Cane Growth Modifier: 100%
[Server thread/INFO]: Melon Growth Modifier: 100%
[Server thread/INFO]: Mushroom Growth Modifier: 100%
[Server thread/INFO]: Pumpkin Growth Modifier: 100%
[Server thread/INFO]: Sapling Growth Modifier: 100%
[Server thread/INFO]: Beetroot Growth Modifier: 100%
[Server thread/INFO]: Carrot Growth Modifier: 100%
[Server thread/INFO]: Potato Growth Modifier: 100%
[Server thread/INFO]: Wheat Growth Modifier: 100%
[Server thread/INFO]: NetherWart Growth Modifier: 100%
[Server thread/INFO]: Vine Growth Modifier: 100%
[Server thread/INFO]: Cocoa Growth Modifier: 100%
[Server thread/INFO]: Bamboo Growth Modifier: 100%
[Server thread/INFO]: SweetBerry Growth Modifier: 100%
[Server thread/INFO]: Kelp Growth Modifier: 100%
[Server thread/INFO]: TwistingVines Growth Modifier: 100%
[Server thread/INFO]: WeepingVines Growth Modifier: 100%
[Server thread/INFO]: CaveVines Growth Modifier: 100%
[Server thread/INFO]: GlowBerry Growth Modifier: 100%
[Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[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
[Server thread/INFO]: Max TNT Explosions: 100
[Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[Server thread/INFO]: Preparing start region for dimension minecraft:portalworld
[Server thread/INFO]: Time elapsed: 121 ms
[Server thread/INFO]: -------- World Settings For [end] --------
[Server thread/INFO]: Item Merge Radius: 2.5
[Server thread/INFO]: Item Despawn Rate: 6000
[Server thread/INFO]: View Distance: 10
[Server thread/INFO]: Simulation Distance: 10
[Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[Server thread/INFO]: Zombie Aggressive Towards Villager: true
[Server thread/INFO]: Nerfing mobs spawned from spawners: false
[Server thread/INFO]: Mob Spawn Range: 6
[Server thread/INFO]: Experience Merge Radius: 3.0
[Server thread/INFO]: Cactus Growth Modifier: 100%
[Server thread/INFO]: Cane Growth Modifier: 100%
[Server thread/INFO]: Melon Growth Modifier: 100%
[Server thread/INFO]: Mushroom Growth Modifier: 100%
[Server thread/INFO]: Pumpkin Growth Modifier: 100%
[Server thread/INFO]: Sapling Growth Modifier: 100%
[Server thread/INFO]: Beetroot Growth Modifier: 100%
[Server thread/INFO]: Carrot Growth Modifier: 100%
[Server thread/INFO]: Potato Growth Modifier: 100%
[Server thread/INFO]: Wheat Growth Modifier: 100%
[Server thread/INFO]: NetherWart Growth Modifier: 100%
[Server thread/INFO]: Vine Growth Modifier: 100%
[Server thread/INFO]: Cocoa Growth Modifier: 100%
[Server thread/INFO]: Bamboo Growth Modifier: 100%
[Server thread/INFO]: SweetBerry Growth Modifier: 100%
[Server thread/INFO]: Kelp Growth Modifier: 100%
[Server thread/INFO]: TwistingVines Growth Modifier: 100%
[Server thread/INFO]: WeepingVines Growth Modifier: 100%
[Server thread/INFO]: CaveVines Growth Modifier: 100%
[Server thread/INFO]: GlowBerry Growth Modifier: 100%
[Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[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
[Server thread/INFO]: Max TNT Explosions: 100
[Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[Server thread/INFO]: Preparing start region for dimension minecraft:end
[Server thread/INFO]: Time elapsed: 177 ms
[Server thread/INFO]: -------- World Settings For [arena] --------
[Server thread/INFO]: Item Merge Radius: 2.5
[Server thread/INFO]: Item Despawn Rate: 6000
[Server thread/INFO]: View Distance: 10
[Server thread/INFO]: Simulation Distance: 10
[Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[Server thread/INFO]: Zombie Aggressive Towards Villager: true
[Server thread/INFO]: Nerfing mobs spawned from spawners: false
[Server thread/INFO]: Mob Spawn Range: 6
[Server thread/INFO]: Experience Merge Radius: 3.0
[Server thread/INFO]: Cactus Growth Modifier: 100%
[Server thread/INFO]: Cane Growth Modifier: 100%
[Server thread/INFO]: Melon Growth Modifier: 100%
[Server thread/INFO]: Mushroom Growth Modifier: 100%
[Server thread/INFO]: Pumpkin Growth Modifier: 100%
[Server thread/INFO]: Sapling Growth Modifier: 100%
[Server thread/INFO]: Beetroot Growth Modifier: 100%
[Server thread/INFO]: Carrot Growth Modifier: 100%
[Server thread/INFO]: Potato Growth Modifier: 100%
[Server thread/INFO]: Wheat Growth Modifier: 100%
[Server thread/INFO]: NetherWart Growth Modifier: 100%
[Server thread/INFO]: Vine Growth Modifier: 100%
[Server thread/INFO]: Cocoa Growth Modifier: 100%
[Server thread/INFO]: Bamboo Growth Modifier: 100%
[Server thread/INFO]: SweetBerry Growth Modifier: 100%
[Server thread/INFO]: Kelp Growth Modifier: 100%
[Server thread/INFO]: TwistingVines Growth Modifier: 100%
[Server thread/INFO]: WeepingVines Growth Modifier: 100%
[Server thread/INFO]: CaveVines Growth Modifier: 100%
[Server thread/INFO]: GlowBerry Growth Modifier: 100%
[Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[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
[Server thread/INFO]: Max TNT Explosions: 100
[Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[Server thread/INFO]: Preparing start region for dimension minecraft:arena
[Server thread/INFO]: Time elapsed: 162 ms
[Server thread/INFO]: -------- World Settings For [Spawn2] --------
[Server thread/INFO]: Item Merge Radius: 2.5
[Server thread/INFO]: Item Despawn Rate: 6000
[Server thread/INFO]: View Distance: 10
[Server thread/INFO]: Simulation Distance: 10
[Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[Server thread/INFO]: Zombie Aggressive Towards Villager: true
[Server thread/INFO]: Nerfing mobs spawned from spawners: false
[Server thread/INFO]: Mob Spawn Range: 6
[Server thread/INFO]: Experience Merge Radius: 3.0
[Server thread/INFO]: Cactus Growth Modifier: 100%
[Server thread/INFO]: Cane Growth Modifier: 100%
[Server thread/INFO]: Melon Growth Modifier: 100%
[Server thread/INFO]: Mushroom Growth Modifier: 100%
[Server thread/INFO]: Pumpkin Growth Modifier: 100%
[Server thread/INFO]: Sapling Growth Modifier: 100%
[Server thread/INFO]: Beetroot Growth Modifier: 100%
[Server thread/INFO]: Carrot Growth Modifier: 100%
[Server thread/INFO]: Potato Growth Modifier: 100%
[Server thread/INFO]: Wheat Growth Modifier: 100%
[Server thread/INFO]: NetherWart Growth Modifier: 100%
[Server thread/INFO]: Vine Growth Modifier: 100%
[Server thread/INFO]: Cocoa Growth Modifier: 100%
[Server thread/INFO]: Bamboo Growth Modifier: 100%
[Server thread/INFO]: SweetBerry Growth Modifier: 100%
[Server thread/INFO]: Kelp Growth Modifier: 100%
[Server thread/INFO]: TwistingVines Growth Modifier: 100%
[Server thread/INFO]: WeepingVines Growth Modifier: 100%
[Server thread/INFO]: CaveVines Growth Modifier: 100%
[Server thread/INFO]: GlowBerry Growth Modifier: 100%
[Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[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
[Server thread/INFO]: Max TNT Explosions: 100
[Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[Server thread/INFO]: Preparing start region for dimension minecraft:spawn2
[Server thread/INFO]: Time elapsed: 43 ms
[Server thread/INFO]: -------- World Settings For [Spawn] --------
[Server thread/INFO]: Item Merge Radius: 2.5
[Server thread/INFO]: Item Despawn Rate: 6000
[Server thread/INFO]: View Distance: 10
[Server thread/INFO]: Simulation Distance: 10
[Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[Server thread/INFO]: Zombie Aggressive Towards Villager: true
[Server thread/INFO]: Nerfing mobs spawned from spawners: false
[Server thread/INFO]: Mob Spawn Range: 6
[Server thread/INFO]: Experience Merge Radius: 3.0
[Server thread/INFO]: Cactus Growth Modifier: 100%
[Server thread/INFO]: Cane Growth Modifier: 100%
[Server thread/INFO]: Melon Growth Modifier: 100%
[Server thread/INFO]: Mushroom Growth Modifier: 100%
[Server thread/INFO]: Pumpkin Growth Modifier: 100%
[Server thread/INFO]: Sapling Growth Modifier: 100%
[Server thread/INFO]: Beetroot Growth Modifier: 100%
[Server thread/INFO]: Carrot Growth Modifier: 100%
[Server thread/INFO]: Potato Growth Modifier: 100%
[Server thread/INFO]: Wheat Growth Modifier: 100%
[Server thread/INFO]: NetherWart Growth Modifier: 100%
[Server thread/INFO]: Vine Growth Modifier: 100%
[Server thread/INFO]: Cocoa Growth Modifier: 100%
[Server thread/INFO]: Bamboo Growth Modifier: 100%
[Server thread/INFO]: SweetBerry Growth Modifier: 100%
[Server thread/INFO]: Kelp Growth Modifier: 100%
[Server thread/INFO]: TwistingVines Growth Modifier: 100%
[Server thread/INFO]: WeepingVines Growth Modifier: 100%
[Server thread/INFO]: CaveVines Growth Modifier: 100%
[Server thread/INFO]: GlowBerry Growth Modifier: 100%
[Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[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
[Server thread/INFO]: Max TNT Explosions: 100
[Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[Server thread/INFO]: Time elapsed: 61 ms
[Server thread/INFO]: -------- World Settings For [Survival] --------
[Server thread/INFO]: Item Merge Radius: 2.5
[Server thread/INFO]: Item Despawn Rate: 6000
[Server thread/INFO]: View Distance: 10
[Server thread/INFO]: Simulation Distance: 10
[Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[Server thread/INFO]: Zombie Aggressive Towards Villager: true
[Server thread/INFO]: Nerfing mobs spawned from spawners: false
[Server thread/INFO]: Mob Spawn Range: 6
[Server thread/INFO]: Experience Merge Radius: 3.0
[Server thread/INFO]: Cactus Growth Modifier: 100%
[Server thread/INFO]: Cane Growth Modifier: 100%
[Server thread/INFO]: Melon Growth Modifier: 100%
[Server thread/INFO]: Mushroom Growth Modifier: 100%
[Server thread/INFO]: Pumpkin Growth Modifier: 100%
[Server thread/INFO]: Sapling Growth Modifier: 100%
[Server thread/INFO]: Beetroot Growth Modifier: 100%
[Server thread/INFO]: Carrot Growth Modifier: 100%
[Server thread/INFO]: Potato Growth Modifier: 100%
[Server thread/INFO]: Wheat Growth Modifier: 100%
[Server thread/INFO]: NetherWart Growth Modifier: 100%
[Server thread/INFO]: Vine Growth Modifier: 100%
[Server thread/INFO]: Cocoa Growth Modifier: 100%
[Server thread/INFO]: Bamboo Growth Modifier: 100%
[Server thread/INFO]: SweetBerry Growth Modifier: 100%
[Server thread/INFO]: Kelp Growth Modifier: 100%
[Server thread/INFO]: TwistingVines Growth Modifier: 100%
[Server thread/INFO]: WeepingVines Growth Modifier: 100%
[Server thread/INFO]: CaveVines Growth Modifier: 100%
[Server thread/INFO]: GlowBerry Growth Modifier: 100%
[Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[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
[Server thread/INFO]: Max TNT Explosions: 100
[Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[Server thread/INFO]: Preparing start region for dimension minecraft:survival
[Server thread/INFO]: Time elapsed: 26 ms
[Server thread/INFO]: [Multiverse-Core] 11 - World(s) loaded.
[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.
[Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[Server thread/INFO]: [TAB] Enabling TAB v3.1.5
[Server thread/INFO]: [TAB] Server version: 1.19.2 (v1_19_R1)
[Server thread/INFO]: [TAB] Loaded NMS hook in 15ms
[Server thread/INFO]: [TAB] Enabled in 217ms
[Server thread/INFO]: [Lottery] Enabling Lottery v1.4.6
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: lottery [1.0.0]
[Server thread/INFO]: [RyuTeams] Enabling RyuTeams v1.0-SNAPSHOT
[Server thread/WARN]: [RyuTeams] Loaded class cc.ryujingames.commons.items.ItemUtils from RyuCommons v1.0-SNAPSHOT which is not a depend or softdepend of this plugin.
[Server thread/WARN]: [RyuTeams] Loaded class com.comphenix.protocol.events.PacketListener from ProtocolLib v5.0.0-SNAPSHOT-b588 which is not a depend or softdepend of this plugin.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ryuteams [1.0-SNAPSHOT]
[Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[Server thread/INFO]: [WorldGuard] (Lobby) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (Lobby) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (Lobby) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (Lobby) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Lobby'
[Server thread/INFO]: [WorldGuard] (Events) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (Events) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (Events) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (Events) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Events'
[Server thread/INFO]: [WorldGuard] (Warzone) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (Warzone) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (Warzone) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (Warzone) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Warzone'
[Server thread/INFO]: [WorldGuard] (portalWorld) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (portalWorld) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (portalWorld) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (portalWorld) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'portalWorld'
[Server thread/INFO]: [WorldGuard] (end) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (end) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (end) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (end) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'end'
[Server thread/INFO]: [WorldGuard] (arena) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (arena) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (arena) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (arena) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'arena'
[Server thread/INFO]: [WorldGuard] (Spawn2) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (Spawn2) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (Spawn2) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (Spawn2) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn2'
[Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[Server thread/INFO]: [WorldGuard] (Survival) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (Survival) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (Survival) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (Survival) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Survival'
[Server thread/INFO]: [WorldGuard] Loading region data...
[Server thread/WARN]: [NexEngine] Loaded class com.sk89q.worldguard.WorldGuard from WorldGuard v7.0.7+216b061 which is not a depend or softdepend of this plugin.
[Server thread/INFO]: [NexEngine] Successfully hooked with WorldGuard!
[Server thread/INFO]: [CommandPrompter] Enabling CommandPrompter v2.0.0
[12:52:29] [Server thread/INFO]: [38;2;1;88;181mC[38;2;17;96;169mo[38;2;34;104;157mm[38;2;50;112;145mm[38;2;66;119;133ma[38;2;83;127;121mn[38;2;99;135;109md[38;2;115;143;97mP[38;2;132;151;84mr[38;2;148;159;72mo[38;2;164;167;60mm[38;2;181;175;48mp[38;2;197;182;36mt[38;2;213;190;24me[38;2;230;198;12mr [38;2;153;214;90m>> Registered [38;2;153;214;90mChatPrompt
[12:52:29] [Server thread/INFO]: [38;2;1;88;181mC[38;2;17;96;169mo[38;2;34;104;157mm[38;2;50;112;145mm[38;2;66;119;133ma[38;2;83;127;121mn[38;2;99;135;109md[38;2;115;143;97mP[38;2;132;151;84mr[38;2;148;159;72mo[38;2;164;167;60mm[38;2;181;175;48mp[38;2;197;182;36mt[38;2;213;190;24me[38;2;230;198;12mr [38;2;153;214;90m>> Registered [38;2;153;214;90mAnvilPrompt
[12:52:29] [Server thread/INFO]: [38;2;1;88;181mC[38;2;17;96;169mo[38;2;34;104;157mm[38;2;50;112;145mm[38;2;66;119;133ma[38;2;83;127;121mn[38;2;99;135;109md[38;2;115;143;97mP[38;2;132;151;84mr[38;2;148;159;72mo[38;2;164;167;60mm[38;2;181;175;48mp[38;2;197;182;36mt[38;2;213;190;24me[38;2;230;198;12mr [38;2;153;214;90m>> Registered [38;2;153;214;90mPlayerUIPrompt
[12:52:29] [Server thread/INFO]: [38;2;1;88;181mC[38;2;17;96;169mo[38;2;34;104;157mm[38;2;50;112;145mm[38;2;66;119;133ma[38;2;83;127;121mn[38;2;99;135;109md[38;2;115;143;97mP[38;2;132;151;84mr[38;2;148;159;72mo[38;2;164;167;60mm[38;2;181;175;48mp[38;2;197;182;36mt[38;2;213;190;24me[38;2;230;198;12mr [38;2;153;214;90m>> Registered [38;2;153;214;90mSignPrompt
[Server thread/INFO]: [TradePlus] Enabling TradePlus v3.82
[Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.2-b807
[Server thread/INFO]: [Multiverse-NetherPortals 4.2.2-b807] Enabled - By Rigby and fernferret
[Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.2
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.2]
[Server thread/INFO]: [HellConomy] Enabling HellConomy v0.1.5.0
[Server thread/INFO]: [net.tnemc.libs.org.javalite.activejdbc.Configuration] Reading properties from: /database.properties. Will try classpath, then file system.
[Server thread/INFO]: [HellConomy] HellConomy has been enabled!
[Server thread/INFO]: [PvPManager] Enabling PvPManager v3.10.9
[Server thread/INFO]: [PvPManager] Loaded 9 players from users file
[Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pvpmanager [3.10.9]
[Server thread/INFO]: [PvPManager] PvPManager Enabled (34 ms)
[Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0-dev+41-4dc994d
[Server thread/WARN]: [EssentialsSpawn] ⚠ | Version mismatch! Please update all Essentials jars to the same version.
[Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled!
[Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[Server thread/INFO]: --------------------
[Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[Server thread/INFO]: --------------------
[Server thread/INFO]: [RyuDungeons] Enabling RyuDungeons v1.0-SNAPSHOT
[Server thread/INFO]: [CMILib] Enabling CMILib v1.2.4.6
[Server thread/INFO]: Server version: v1_19_R1 - 1.19.2 - paper
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.4.6]
[Server thread/INFO]: PlaceholderAPI hooked.
[Server thread/INFO]: Updated (EN) language file. Took 21ms
[Server thread/INFO]: [WorldBorder] Enabling WorldBorder v1.19
[Server thread/INFO]: [WorldBorder] This is a continuation of the original by Puremin0rez
[Server thread/INFO]: [WorldBorder] [CONFIG] Using rectangular/square border, knockback of 3.0 blocks, and timer delay of 5.
[Server thread/INFO]: [WorldBorder] [CONFIG] Border-checking timed task started.
[Server thread/INFO]: [WorldBorder] For reference, the main world's spawn location is at X: -528.0 Y: 80.0 Z: -144.0
[Server thread/INFO]: [RyuEvents] Enabling RyuEvents v1.0-RELEASE*
[Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v0.9.3
[Server thread/INFO]: [AdvancedPortals] BLOCK_PORTAL_TRAVEL found
[Server thread/INFO]: [AdvancedPortals] Bungee detected. Enabling proxy features.
[Server thread/INFO]: Advanced portals have been successfully enabled!
[Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2793)
[Server thread/INFO]: [Citizens] Loading external libraries
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[Server thread/WARN]: [NexEngine] Loaded class net.citizensnpcs.api.event.NPCRightClickEvent from Citizens v2.0.30-SNAPSHOT (build 2793) which is not a depend or softdepend of this plugin.
[Server thread/INFO]: [NexEngine] Successfully hooked with Citizens!
[Server thread/INFO]: [ApiaEnvoy] Enabling ApiaEnvoy v3.0.30
[Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.0.6
[Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[Server thread/INFO]: [ExcellentCrates] Successfully hooked with HolographicDisplays!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.0.6]
[Server thread/INFO]: [ExcellentCrates] Successfully hooked with PlaceholderAPI!
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@6acea4a9
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[Server thread/INFO]: [ExcellentCrates] Loaded 5 animation configs.
[Server thread/INFO]: [ExcellentCrates] Loaded 3 crate keys.
[Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[Server thread/INFO]: [ExcellentCrates] Plugin loaded in 91 ms!
[Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.2.0
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.1]
[Server thread/INFO]:
[Server thread/INFO]: __________________________________________________________
[Server thread/INFO]:
[Server thread/INFO]: TradeSystem [2.2.0]
[Server thread/INFO]:
[Server thread/INFO]: Status:
[Server thread/INFO]:
[Server thread/INFO]: MC-Version: 1.19.2 (R0.1-SNAPSHOT, Paper)
[Server thread/INFO]:
[Server thread/INFO]: > Loading sounds
[Server thread/INFO]: > Loading blacklist
[Server thread/INFO]: ...got 3 blocked item(s)
[Server thread/INFO]: > Loading layouts
[Server thread/INFO]: ...got 4 layout(s)
[Server thread/INFO]: > Database logging is disabled
[Server thread/INFO]:
[Server thread/INFO]: Finished (151ms)
[Server thread/INFO]:
[Server thread/INFO]: __________________________________________________________
[Server thread/INFO]:
[Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v4.9.3
[Server thread/INFO]: [EconomyShopGUI] Using lang-en.yml as language file.
[Server thread/INFO]: [EconomyShopGUI] Shops.yml has been found!
[Server thread/INFO]: [EconomyShopGUI] Sections.yml has been found!
[Server thread/INFO]: [EconomyShopGUI] Successfully hooked into Vault
[Server thread/INFO]: [EconomyShopGUI] Using minecraft version 1.19.2...
[Server thread/INFO]: [EconomyShopGUI] Using plugin default spawners...
[Server thread/INFO]: [EconomyShopGUI] Debug mode is enabled.
[Server thread/INFO]: [EconomyShopGUI] Updating Shop settings...
[Server thread/INFO]: [EconomyShopGUI] Loading all items...
[Server thread/INFO]: [EconomyShopGUI] Initialized - Took 99ms to complete
[Server thread/INFO]: [LifestealCore] Enabling LifestealCore vBuild 7a
[Server thread/INFO]: [LifestealCore] Build 7a, a premium resource by Norska - Thanks for purchasing!
[Server thread/INFO]: [BottledExp] Enabling BottledExp v3.1.2.2
[Server thread/INFO]: [BottledExp] Version 3.1.2.2 has been enabled
[Server thread/INFO]: [BottledExp] Using LuckPerms via Vault.
[Server thread/INFO]: [GCore] Enabling GCore v8.43.1
[Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (config)
[Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (data)
[Server thread/INFO]: [GCore-migration] Already processed v8.4 -> v8.5
[Server thread/INFO]: [GCore-migration] Already processed v8.8 -> v8.9
[Server thread/INFO]: [GCore-migration] Already processed v8.23 -> v8.24
[Server thread/INFO]: [GCore-migration] Already processed v8.24 -> v8.25
[Server thread/INFO]: [GCore-migration] Already processed v8.29 -> v8.30
[Server thread/INFO]: [GCore-8.43.1] Found server version MC_1_19_R1
[Server thread/INFO]: [GCore-8.43.1] Loading materials...
[Server thread/INFO]: [GCore-8.43.1] Loading sounds...
[Server thread/INFO]: [GCore-8.43.1] Loading particles...
[Server thread/INFO]: [GCore-8.43.1] Enabled currency VAULT
[Server thread/INFO]: [GCore-8.43.1] Enabled currency XP_LEVEL
[Server thread/INFO]: [GCore-8.43.1] Enabled currency XP
[Server thread/INFO]: [GCore-8.43.1] Enabled currency PLAYER_POINTS
[Server thread/INFO]: [GCore-8.43.1] Loading texts...
[Server thread/INFO]: [GCore-8.43.1] Enabled integration for Citizens
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gcore [1.0.0]
[Server thread/INFO]: [GCore-8.43.1] Enabled integration for PlaceholderAPI
[Server thread/INFO]: [GCore-8.43.1] Initializing worker and caches
[Server thread/INFO]: [GCore-8.43.1] Enabled NPC manager with ProtocolLib
[Server thread/INFO]: [GCore-8.43.1] Registering integrations
[Server thread/INFO]: [GCore-8.43.1] Initializing tasks and listeners
[Server thread/INFO]: [GCore-8.43.1] Successfully enabled
[Server thread/INFO]: [GSlotMachine] Enabling GSlotMachine v3.1.1
[Server thread/INFO]: [GSlotMachine-migration] Already processed v2 -> v3 (config)
[Server thread/INFO]: [GSlotMachine-migration] Already processed v2 -> v3 (data)
[Server thread/INFO]: [GSlotMachine-3.1.1] Successfully loaded 1 machine type : default
[Server thread/INFO]: [GSlotMachine-3.1.1] Loading texts...
[Server thread/INFO]: [GSlotMachine-3.1.1] Successfully enabled
[Server thread/INFO]: [Denizen] Enabling Denizen v1.2.6-SNAPSHOT (build 1787-REL)
[Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1317), impl for Spigot v1.2.6-SNAPSHOT (build 1787-REL)
[Server thread/INFO]: +> [Denizen] Running on java version: 17.0.6
[Server thread/INFO]: +> [Denizen] Running on fully supported Java 17.
[Server thread/ERROR]: Error occurred while enabling Denizen v1.2.6-SNAPSHOT (build 1787-REL) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_19_R2/inventory/CraftInventoryCustom
at com.denizenscript.denizen.nms.v1_19.Handler.<clinit>(Handler.java:232) ~[Denizen-1.2.6-b1787-REL.jar:?]
at java.lang.Class.forName0(Native Method) ~[?:?]
at java.lang.Class.forName(Class.java:375) ~[?:?]
at com.denizenscript.denizen.nms.NMSHandler.initialize(NMSHandler.java:55) ~[Denizen-1.2.6-b1787-REL.jar:?]
at com.denizenscript.denizen.Denizen.onEnable(Denizen.java:154) ~[Denizen-1.2.6-b1787-REL.jar:?]
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565) ~[paper-1.19.2.jar:git-Paper-307]
at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479) ~[paper-1.19.2.jar:git-Paper-307]
at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636) ~[paper-1.19.2.jar:git-Paper-307]
at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422) ~[paper-1.19.2.jar:git-Paper-307]
at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:306) ~[paper-1.19.2.jar:git-Paper-307]
at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-307]
at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_19_R2.inventory.CraftInventoryCustom
at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:177) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
... 16 more
[Server thread/INFO]: [Denizen] Disabling Denizen v1.2.6-SNAPSHOT (build 1787-REL)
[Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.8.3
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: premiumvanish [2.8.3]
[Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI
[Server thread/INFO]: [PremiumVanish] Hooked into Essentials
[Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.5.7
[Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[Server thread/INFO]: [InteractiveChat] InteractiveChat has injected into VentureChat!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactivechat [4.2.5.7]
[Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.3.1
[Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[12:52:34] [Server thread/INFO]: [ItemsAdder]
___ ___ __ __ __ ___ __ ItemsAdder 3.3.1
| | |__ |\/| /__` /\ | \ | \ |__ |__) LoneLibs 1.0.23
| | |___ | | .__/ /--\ |__/ |__/ |___ | \ Paper git-Paper-307 (MC: 1.19.2)
[12:52:34] [Server thread/INFO]: [ItemsAdder] LightAPI not installed, please install it to see blocks emitting light: https://a.devs.beer/lightapi-new
[12:52:34] [Server thread/ERROR]: [ItemsAdder] Error while hooking into Denizen
[12:52:34] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-DEV-155
[Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[Server thread/WARN]: [DeluxeMenus] command: rules specified for menu: gameplayrules already exists for another menu!
Skipping command: rules in menu: gameplayrules
[Server thread/INFO]: [DeluxeMenus] 23 GUI menus loaded!
[Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.7-DEV-155]
[Server thread/INFO]: [AdvancedCrates] Enabling AdvancedCrates v3.8.3
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedcrates [3.8.3]
[Thread-30/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[Server thread/INFO]: [Boss] Enabling Boss v4.6.9
[Server thread/INFO]: ___ ___ __ __
[Server thread/INFO]: | |_) / / \ ( (` ( (`
[Server thread/INFO]: |_|_) \_\_/ _)_) _)_)
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: boss [4.6.9]
[Server thread/INFO]:
[Server thread/INFO]: Tutorial:
[Server thread/INFO]: https://github.com/kangarko/boss/wiki
[Server thread/INFO]:
[Server thread/INFO]: Get help:
[Server thread/INFO]: https://github.com/kangarko/boss/issues
[Server thread/INFO]: ______________________________________________________________
[Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v0.20
[Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_19_R1.
[Server thread/INFO]: [BeautyQuests] Loaded language en_US (0.014s)!
[Server thread/INFO]: [BeautyQuests] Loaded start particles: REDSTONE in shape POINT with color R255 G255 B0
[Server thread/INFO]: [BeautyQuests] Loaded talk particles: VILLAGER_HAPPY in shape BAR
[Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE_NORMAL in shape SPOT
[Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: beautyquests [0.20]
[Server thread/INFO]: [BeautyQuests] Placeholders registered !
[Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[12:52:37] [Server thread/INFO]: [38;2;1;88;181mC[38;2;17;96;169mo[38;2;34;104;157mm[38;2;50;112;145mm[38;2;66;119;133ma[38;2;83;127;121mn[38;2;99;135;109md[38;2;115;143;97mP[38;2;132;151;84mr[38;2;148;159;72mo[38;2;164;167;60mm[38;2;181;175;48mp[38;2;197;182;36mt[38;2;213;190;24me[38;2;230;198;12mr [38;2;153;214;90m>> [38;2;153;214;90m✓ VentureChatHook contained
[12:52:37] [Server thread/INFO]: [38;2;1;88;181mC[38;2;17;96;169mo[38;2;34;104;157mm[38;2;50;112;145mm[38;2;66;119;133ma[38;2;83;127;121mn[38;2;99;135;109md[38;2;115;143;97mP[38;2;132;151;84mr[38;2;148;159;72mo[38;2;164;167;60mm[38;2;181;175;48mp[38;2;197;182;36mt[38;2;213;190;24me[38;2;230;198;12mr [38;2;153;214;90m>> [38;2;255;96;109m- SuperVanishHook contained
[12:52:37] [Server thread/INFO]: [38;2;1;88;181mC[38;2;17;96;169mo[38;2;34;104;157mm[38;2;50;112;145mm[38;2;66;119;133ma[38;2;83;127;121mn[38;2;99;135;109md[38;2;115;143;97mP[38;2;132;151;84mr[38;2;148;159;72mo[38;2;164;167;60mm[38;2;181;175;48mp[38;2;197;182;36mt[38;2;213;190;24me[38;2;230;198;12mr [38;2;153;214;90m>> [38;2;255;96;109m- PuerkasChatHook contained
[Server thread/INFO]: Running delayed init tasks
[ForkJoinPool.commonPool-worker-9/WARN]: [PlaceholderAPI] Loaded class net.ess3.api.IEssentials from Essentials v2.19.7 which is not a depend or softdepend of this plugin.
[Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.0.7+216b061 which is not a depend or softdepend of this plugin.
[Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerpoints [3.2.5]
[Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[Craft Scheduler Thread - 5 - ServerUtils/INFO]: [ServerUtils] Checking for updates...
[Craft Scheduler Thread - 0 - CrazyVouchers/INFO]: [CrazyVouchers] Plugin is up to date! - v2.9.14.1+Beta
[Craft Scheduler Thread - 0 - Essentials/INFO]: [Essentials] Fetching version information...
[Craft Scheduler Thread - 8 - PvPManager/INFO]: [PvPManager] Checking for updates...
[12:52:38] [Craft Scheduler Thread - 2 - ChatItem/INFO]: [ChatItem] A new version of ChatItem is available. Click here to download.
[12:52:38] [Craft Scheduler Thread - 3 - CommandPrompter/INFO]: [38;2;1;88;181mC[38;2;17;96;169mo[38;2;34;104;157mm[38;2;50;112;145mm[38;2;66;119;133ma[38;2;83;127;121mn[38;2;99;135;109md[38;2;115;143;97mP[38;2;132;151;84mr[38;2;148;159;72mo[38;2;164;167;60mm[38;2;181;175;48mp[38;2;197;182;36mt[38;2;213;190;24me[38;2;230;198;12mr [38;2;153;214;90m>> [32mA new update is available! (2.0.1)[0m
[Craft Scheduler Thread - 11 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[Craft Scheduler Thread - 8 - PvPManager/INFO]: [PvPManager] No update found
[12:52:38] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] [License] Spigot product licensed to: foxyi (1719143)
[12:52:38] [Craft Scheduler Thread - 3 - ItemsAdder/INFO]: [ItemsAdder]
[12:52:38] [Craft Scheduler Thread - 3 - ItemsAdder/INFO]: [ItemsAdder] UPDATE available: https://www.spigotmc.org/resources/73355/
[12:52:38] [Craft Scheduler Thread - 3 - ItemsAdder/INFO]: [ItemsAdder] Current version: 3.3.1 | Online version: 3.4.0c-beta
[12:52:38] [Craft Scheduler Thread - 3 - ItemsAdder/INFO]: [ItemsAdder]
[Craft Scheduler Thread - 17 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[Craft Scheduler Thread - 12 - Vault/INFO]: [Vault] Checking for Updates ...
[Craft Scheduler Thread - 12 - Vault/INFO]: [Vault] No new version available
[Craft Scheduler Thread - 4 - ApiaEnvoy/INFO]: [ApiaEnvoy] Hooked to WorldGuard
[Craft Scheduler Thread - 8 - BlueSlimeCore/INFO]: [Blue Slime Core]
[Craft Scheduler Thread - 8 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'CooldownsX'.
[Craft Scheduler Thread - 8 - BlueSlimeCore/INFO]: [Blue Slime Core]
[Craft Scheduler Thread - 8 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'BlueSlimeCore'.
[Craft Scheduler Thread - 5 - ServerUtils/INFO]: [ServerUtils] We are up-to-date!
[Craft Scheduler Thread - 4 - ApiaEnvoy/INFO]: [ApiaEnvoy] Hooked to MiniMessage (Adventure API)! For more info: https://docs.adventure.kyori.net/minimessage#the-components
[Craft Scheduler Thread - 4 - ApiaEnvoy/INFO]: [ApiaEnvoy] Hooked to HolographicDisplays! HolographicDisplays will be used for holograms.
[Server thread/INFO]: [ExcellentCrates] Loaded 6 crates.
[12:52:38] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[12:52:38] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting internal contents from .jar
[Craft Scheduler Thread - 4 - ApiaEnvoy/INFO]: [ApiaEnvoy] ApiaEnvoy v3.0.30 by bertek41 enabled in 427ms!
[Craft Scheduler Thread - 4 - ApiaEnvoy/INFO]: [ApiaEnvoy] An update is available. New version: 3.0.31 current version: 3.0.30
[Server thread/INFO]: [Citizens] Could not find a name for ID 12.
[Server thread/INFO]: [Citizens] Loaded 12 NPCs.
[Server thread/INFO]: ᴘʟᴀʏᴇʀ ʙᴏᴜɴᴛɪᴇs | Plugin version outdated! Your version: 1.5.5, Latest version: 0.0.0
[Server thread/INFO]: ᴘʟᴀʏᴇʀ ʙᴏᴜɴᴛɪᴇs | A new update is available at: https://www.spigotmc.org/resources/playerbounties.90754/
[Server thread/INFO]: [PremiumVanish] Your current version of PremiumVanish is outdated - New version: '2.8.4'; Currently: '2.8.3'
[Server thread/INFO]: [BeautyQuests] You are using the latest version of BeautyQuests.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ApiaEnvoy [3.0]
[Server thread/INFO]: [ApiaEnvoy] Hooked to PlaceholderAPI! Placeholders are: %apiaenvoy_time%, %apiaenvoy_dates_time_next%, %apiaenvoy_dates_time_<id>%, %apiaenvoy_global_time_next%, %apiaenvoy_global_time_<world>_<id>%, %apiaenvoy_global_dates_time_next% and %apiaenvoy_global_dates_time_<id>%
[Server thread/INFO]: Done (26.918s)! For help, type "help"
[Server thread/INFO]: Timings Reset
[12:52:38] [Craft Scheduler Thread - 4 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:plastic' for recipe 'blank_disc'. File: /contents/iamusic/configs/recipes.yml
[Server thread/WARN]: [BeautyQuests] The NPC 6 does not exist for stage -1(NPC) of quest 18, branch 0
[12:52:38] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] Loaded 45 items
[12:52:38] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[12:52:38] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] Used 0/750 REAL_NOTE block IDs
[12:52:38] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[12:52:38] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[12:52:38] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[12:52:38] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] Used 697/6608 font_images
[Server thread/WARN]: [BeautyQuests] The NPC 1 does not exist for stage -1(NPC) of quest 19, branch 0
[Server thread/INFO]: [BeautyQuests] 52 quests loaded (0.119s)!
[12:52:39] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 4 categories
[Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 244
[12:52:39] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: img [1.0.1]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: iaplayerstat [1.0.1]
[12:52:39] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs
[Server thread/INFO]: [Citizens] Could not find a name for ID 12.
[Server thread/WARN]: [BeautyQuests] Citizens has been reloaded whereas it is highly not recommended for plugins compatibilities. Unexpected behaviors may happen.
[Craft Scheduler Thread - 18 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[12:52:39] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL is valid (auto-external-host), LastEdit: 2023-03-13_12-01. Url: http://resourcepack.host/dl/pvyt9pMxWCDiYAHXE99VsDVl1erzC2xv/pack.zip
[Server thread/WARN]: [AdvancedCrates] Task #176 for AdvancedCrates v3.8.3 generated an exception
org.bukkit.command.CommandException: Unhandled exception executing command 'team' in plugin RyuTeams v1.0-SNAPSHOT
at org.bukkit.command.PluginCommand.execute(PluginCommand.java:47) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.v1_19_R1.CraftServer.dispatchCommand(CraftServer.java:916) ~[paper-1.19.2.jar:git-Paper-307]
at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:980) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
at me.PM2.AdvancedCrates.MonthlyCrate$1.run(MonthlyCrate.java:242) ~[AdvancedCrates-3.8.3.jar:?]
at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-307]
at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.2.jar:git-Paper-307]
at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473) ~[paper-1.19.2.jar:git-Paper-307]
at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-307]
at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-307]
at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-307]
at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot invoke "java.util.function.Function.apply(Object)" because "this.consoleFunction" is null
at cc.ryujingames.commons.command.spigotexecutor.L2CommandExecutor.getExecutor(L2CommandExecutor.java:35) ~[RyuCommons-1.0-SNAPSHOT.jar:?]
at cc.ryujingames.commons.command.spigotexecutor.L2CommandExecutor.onCommand(L2CommandExecutor.java:21) ~[RyuCommons-1.0-SNAPSHOT.jar:?]
at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
... 12 more
[Craft Scheduler Thread - 16 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[Server thread/INFO]: ʟᴏᴛᴛᴇʀʏ | Plugin successfully linked with vault!
[Craft Scheduler Thread - 16 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultimateautorestart [Build 52c]
[Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[Server thread/INFO]: [HarvestEXP] Attempting hooks...
[Server thread/INFO]: [HarvestEXP] Hooked into PlaceholderAPI!
[Server thread/INFO]: [HarvestEXP] Successfully performed 1 hooks!
[Server thread/INFO]: [LifestealCore] Attempting hooks...
[Server thread/INFO]: [LifestealCore] Hooked into PlaceholderAPI!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: lifesteal [Build 7a]
[Server thread/INFO]: [LifestealCore] Hooked into WorldGuard!
[Server thread/INFO]: [LifestealCore] Hooked into PvPManager!
[Server thread/INFO]: [LifestealCore] Successfully performed 3 hooks!
[Server thread/WARN]: [PlaceholderAPI] Loaded class com.artemis.the.gr8.playerstats.api.PlayerStats from PlayerStats v2.0 which is not a depend or softdepend of this plugin.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerstats [2.0.0]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: localtime [1.2]
[Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.49 which is not a depend or softdepend of this plugin.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[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.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.2]
[Server thread/WARN]: [PlaceholderAPI] Cannot load expansion killstats due to a missing plugin: killStats
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[Server thread/INFO]: 8 placeholder hook(s) registered! 2 placeholder hook(s) have an update available.
[Craft Scheduler Thread - 18 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[Craft Scheduler Thread - 18 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).