Paste #123170: LOOOOOOG

Date: 2024/05/28 11:36:00 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[20:07:43] [ServerMain/INFO]: [SparkProviderSource] Purpur: Using user-provided spark plugin instead of our own.
[20:07:45] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[20:07:47] [ServerMain/INFO]: Loaded 1174 recipes
[20:07:47] [ServerMain/INFO]: Loaded 1271 advancements
[20:07:47] [Server thread/INFO]: Starting minecraft server version 1.20.4
[20:07:47] [Server thread/INFO]: Loading properties
[20:07:47] [Server thread/INFO]: This server is running Purpur version git-Purpur-2176 (MC: 1.20.4) (Implementing API version 1.20.4-R0.1-SNAPSHOT) (Git: 6b1ee98 on HEAD)
[20:07:48] [Server thread/INFO]: Server Ping Player Sample Count: 12
[20:07:48] [Server thread/INFO]: Using 4 threads for Netty based IO
[20:07:48] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 8 worker threads, and gen parallelism of 8 threads
[20:07:48] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (int)
[20:07:48] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (float)
[20:07:48] [Server thread/INFO]: [Pufferfish] SIMD operations detected as functional. Will replace some operations with faster versions.
[20:07:48] [Server thread/INFO]: Default game type: SURVIVAL
[20:07:48] [Server thread/INFO]: Generating keypair
[20:07:48] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25587
[20:07:48] [Server thread/INFO]: Using epoll channel type
[20:07:48] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[20:07:48] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 1 libraries... please wait
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[20:07:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[20:07:49] [Server thread/INFO]: [eco] Initializing eco
[20:07:49] [Server thread/INFO]: [com.willfp.eco.libs.hikari.HikariDataSource] HikariPool-1 - Starting...
[20:07:49] [Server thread/INFO]: [com.willfp.eco.libs.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@2abd9049
[20:07:49] [Server thread/INFO]: [com.willfp.eco.libs.hikari.HikariDataSource] HikariPool-1 - Start completed.
[20:07:49] [Server thread/INFO]: [EcoItems] Initializing EcoItems
[20:07:52] [Server thread/INFO]: [EcoEnchants] Initializing EcoEnchants
[20:07:52] [Server thread/INFO]: [Reforges] Initializing Reforges
[20:07:54] [Server thread/INFO]: [Talismans] Initializing Talismans
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loading 4 libraries... please wait
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/mariadb/jdbc/mariadb-java-client/3.3.3/mariadb-java-client-3.3.3.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/github/waffle/waffle-jna/3.3.0/waffle-jna-3.3.0.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/net/java/dev/jna/jna/5.13.0/jna-5.13.0.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/slf4j/jcl-over-slf4j/2.0.7/jcl-over-slf4j-2.0.7.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.32.0/checker-qual-3.32.0.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/mysql/mysql-connector-j/8.3.0/mysql-connector-j-8.3.0.jar
[20:07:54] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/3.25.1/protobuf-java-3.25.1.jar
[20:07:54] [Server thread/INFO]: [ItemEffects] Initializing ItemEffects
[20:07:56] [Server thread/INFO]: REGISTERING ARG PARSER
[20:07:56] [Server thread/INFO]: [EcoBits] Initializing EcoBits
[20:07:56] [Server thread/INFO]: [EcoShop] Initializing EcoShop
[20:07:56] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[20:07:56] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[20:07:56] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[20:07:56] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[20:07:56] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[20:07:56] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[20:07:56] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[20:07:56] [Server thread/INFO]: [Boosters] Initializing Boosters
[20:07:56] [Server thread/INFO]: [EcoMobs] Initializing EcoMobs
[20:07:58] [Server thread/INFO]: Loaded 1174 recipes
[20:07:58] [Server thread/INFO]: Loaded 1271 advancements
[20:07:58] [Server thread/INFO]: [EcoPets] Initializing EcoPets
[20:08:00] [Server thread/INFO]: [EcoCrates] Initializing EcoCrates
[20:08:02] [Server thread/INFO]: [EcoArmor] Initializing EcoArmor
[20:08:04] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[20:08:05] [Server thread/WARN]: Legacy plugin FriendSystemGUI v4.2 does not specify an api-version.
[20:08:05] [Server thread/INFO]: [EcoQuests] Initializing EcoQuests
[20:08:05] [Server thread/INFO]: [EcoJobs] Initializing EcoJobs
[20:08:07] [Server thread/INFO]: [EcoSkills] Initializing EcoSkills
[20:08:09] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.121
[20:08:09] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[20:08:09] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.10.1-SNAPSHOT-776;3dc949e
[20:08:10] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@368d6392]
[20:08:10] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.1-SNAPSHOT-689
[20:08:10] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[20:08:10] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[20:08:10] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3382)
[20:08:10] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
[20:08:10] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[20:08:10] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.15.0
[20:08:10] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.2
[20:08:10] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.45
[20:08:10] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1
[20:08:10] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.6.1
[20:08:10] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.6.3-beta-14
[20:08:10] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[20:08:10] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[20:08:10] [Server thread/INFO]: [Multiverse-Inventories] Loading server plugin Multiverse-Inventories v4.2.6
[20:08:10] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.8
[20:08:10] [Server thread/INFO]: [eco] Loading server plugin eco v6.70.1
[20:08:10] [Server thread/INFO]: [EcoItems] Loading server plugin EcoItems v5.45.0
[20:08:10] [Server thread/INFO]: [libreforge] Initializing libreforge
[20:08:10] [Server thread/INFO]: [libreforge] Loading server plugin libreforge v4.59.0
[20:08:11] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.27.0
[20:08:11] [Server thread/INFO]: [EcoEnchants] Loading server plugin EcoEnchants v12.6.0
[20:08:11] [Server thread/INFO]: [Reforges] Loading server plugin Reforges v6.58.0
[20:08:11] [Server thread/INFO]: [Talismans] Loading server plugin Talismans v6.57.0
[20:08:11] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[20:08:11] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.136
[20:08:11] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.4
[20:08:11] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[20:08:11] [Server thread/INFO]: [ChatControlRed] Loading server plugin ChatControlRed v10.26.0
[20:08:11] [Server thread/INFO]: [AntiPopup] Loading server plugin AntiPopup v8
[20:08:13] [Server thread/INFO]: [AntiPopup] Loaded PacketEvents.
[20:08:13] [Server thread/INFO]: [NamelessMC] Loading server plugin NamelessMC v3.4.0
[20:08:13] [Server thread/INFO]: [Pl-Hide-Pro] Loading server plugin Pl-Hide-Pro v2.9.4
[20:08:13] [Server thread/INFO]: [FarmControl] Loading server plugin FarmControl v1.3.0
[20:08:13] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.12.4
[20:08:13] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: v1_20_R3! Trying to find NMS support
[20:08:13] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[20:08:13] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[20:08:13] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.2
[20:08:13] [Server thread/INFO]: [Insights] Loading server plugin Insights v6.17.2
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Loading server plugin OreAnnouncer v2.8.5
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Loading libraries of OreAnnouncer v2.8.5, this may take a while
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jar-relocator
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for asm
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for asm-commons
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for gson
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-core
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for geantyref
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for caffeine
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-stringtemplate4
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for ST4
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for antlr-runtime
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-sqlobject
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for slf4j-api
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for slf4j-simple
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for HikariCP
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for mariadb-java-client
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for mysql-connector-j
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for postgresql
[20:08:13] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for h2
[20:08:13] [Server thread/INFO]: [EasyArmorStands] Loading server plugin EasyArmorStands v2.0.3
[20:08:13] [Thread-15/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[20:08:13] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.1
[20:08:13] [Server thread/INFO]: [ItemEffects] Loading server plugin ItemEffects v2.0.0
[20:08:13] [Server thread/INFO]: [CosmeticsCore] Loading server plugin CosmeticsCore v1.2.3d
[20:08:13] [Server thread/INFO]: [AntiAFKPlus] Loading server plugin AntiAFKPlus v3.2.4
[20:08:13] [Server thread/INFO]: [Sentinel] Loading server plugin Sentinel v2.8.1-SNAPSHOT (build 518)
[20:08:13] [Server thread/INFO]: [EcoBits] Loading server plugin EcoBits v1.8.4
[20:08:13] [Server thread/INFO]: [BetterHud] Loading server plugin BetterHud vbeta-23
[20:08:13] [Server thread/INFO]: [EcoShop] Loading server plugin EcoShop v1.18.0
[20:08:13] [Server thread/INFO]: [RealisticSeasons] Loading server plugin RealisticSeasons v10.8.1
[20:08:13] [Server thread/INFO]: [RealisticSeasons] Loading GriefPrevention integration
[20:08:13] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.1.0
[20:08:13] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.61
[20:08:13] [Server thread/INFO]: [TerraformGenerator] Loading server plugin TerraformGenerator v14.1.1
[20:08:13] [Server thread/INFO]: [PAPIProxyBridge] Loading server plugin PAPIProxyBridge v1.6.1
[20:08:13] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.16.2
[20:08:13] [Server thread/INFO]: [Boosters] Loading server plugin Boosters v5.57.0
[20:08:13] [Server thread/INFO]: [ChunkyBorder] Loading server plugin ChunkyBorder v1.1.59
[20:08:13] [Server thread/INFO]: [Polymart] Loading server plugin Polymart v1.2.10
[20:08:13] [Server thread/INFO]: [GPFlags] Loading server plugin GPFlags v5.12.11
[20:08:13] [Server thread/INFO]: [CinematicStudio] Loading server plugin CinematicStudio v2.0.0-indev-8
[20:08:13] [Server thread/INFO]: [EcoMobs] Loading server plugin EcoMobs v10.4.0
[20:08:13] [Server thread/INFO]: [TreasureMapsPlus] Loading server plugin TreasureMapsPlus v0.5.0
[20:08:13] [Server thread/INFO]: [GrimAC] Loading server plugin GrimAC v2.3.62
[20:08:13] [Server thread/INFO]: [GrimAC] Loading PacketEvents...
[20:08:13] [Server thread/INFO]: [EcoPets] Loading server plugin EcoPets v2.58.0
[20:08:13] [Server thread/INFO]: [EcoCrates] Loading server plugin EcoCrates v1.13.10
[20:08:13] [Server thread/INFO]: [EcoArmor] Loading server plugin EcoArmor v8.58.0
[20:08:13] [Server thread/INFO]: [UpgradeableHoppers] Loading server plugin UpgradeableHoppers v4.15.4
[20:08:13] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[20:08:13] [Server thread/INFO]: [FriendSystemGUI] Loading server plugin FriendSystemGUI v4.2
[20:08:13] [Server thread/INFO]: [Plan] Loading server plugin Plan v5.6 build 2820
[20:08:13] [Server thread/INFO]: [EcoQuests] Loading server plugin EcoQuests v1.30.0
[20:08:13] [Server thread/INFO]: [EcoJobs] Loading server plugin EcoJobs v3.57.0
[20:08:13] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.2.3
[20:08:13] [Server thread/INFO]: [VanillaCustomizer] Loading server plugin VanillaCustomizer v0.2
[20:08:13] [Server thread/INFO]: [EcoSkills] Loading server plugin EcoSkills v3.47.0
[20:08:13] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[20:08:13] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.121
[20:08:14] [Server thread/INFO]:         __    
[20:08:14] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.121
[20:08:14] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[20:08:14] [Server thread/INFO]: 
[20:08:14] [Server thread/INFO]: [LuckPerms] Loading configuration...
[20:08:14] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[20:08:14] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[20:08:14] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[20:08:15] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[20:08:15] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[20:08:15] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[20:08:15] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1826ms)
[20:08:15] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[20:08:15] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[20:08:15] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[20:08:15] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[20:08:15] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[20:08:15] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.10.1-SNAPSHOT-776;3dc949e
[20:08:15] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[20:08:15] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[20:08:15] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[20:08:15] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[20:08:16] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R3.PaperweightFaweAdapter as the Bukkit adapter
[20:08:16] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.1-SNAPSHOT-689
[20:08:16] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.45
[20:08:16] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.6.1
[20:08:16] [Server thread/INFO]: [eco] Enabling eco v6.70.1
[20:08:16] [Server thread/INFO]: [eco] Loading eco
[20:08:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eco [6.70.1]
[20:08:16] [Server thread/INFO]: [eco] Loaded integrations: Denizen, DecentHolograms, ModelEngine, Essentials, Vault, Multiverse-Inventories, GriefPrevention, PlaceholderAPI, WorldGuard, ItemsAdder
[20:08:16] [Server thread/INFO]: [eco] Scanning for conflicts...
[20:08:16] [ForkJoinPool.commonPool-worker-3/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 6 build(s) out of date.
You are running build 776, the latest version is build 782.
Update at https://www.spigotmc.org/resources/13932/
[20:08:16] [Server thread/INFO]: [eco] No conflicts found!
[20:08:16] [Server thread/INFO]: [EcoEnchants] Enabling EcoEnchants v12.6.0
[20:08:16] [Server thread/INFO]: [EcoEnchants] Loading EcoEnchants
[20:08:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoenchants [12.6.0]
[20:08:16] [Server thread/INFO]: [EcoEnchants] Loaded integrations: Essentials
[20:08:16] [Server thread/INFO]: [EcoBits] Enabling EcoBits v1.8.4
[20:08:16] [Server thread/INFO]: [EcoBits] Loading EcoBits
[20:08:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecobits [1.8.4]
[20:08:16] [Server thread/INFO]: [TerraformGenerator] Enabling TerraformGenerator v14.1.1
[20:08:16] [Server thread/INFO]: [TerraformGenerator] Custom Logger Initialized
[20:08:16] [Server thread/INFO]: [TerraformGenerator] bStats Metrics enabled.
[20:08:16] [Server thread/INFO]: [TerraformGenerator] Detected version: v1_20_R3, number: 20.3
[20:08:16] [Server thread/INFO]: [Polymart] Enabling Polymart v1.2.10
[20:08:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: polymart [git-Purpur-2176 (MC: 1.20.4)]
[20:08:16] [Server thread/INFO]: Polymart> Checking for updates...
[20:08:16] [Server thread/INFO]: [CinematicStudio] Enabling CinematicStudio v2.0.0-indev-8
[20:08:17] [Server thread/INFO]: [TreasureMapsPlus] Enabling TreasureMapsPlus v0.5.0
[20:08:17] [Server thread/INFO]: [TreasureMapsPlus] Found and replaced 3 loot tables with a treasure map
[20:08:17] [Server thread/INFO]: [TreasureMapsPlus] Found and replaced 2 villager trades with a treasure map
[20:08:17] [Server thread/INFO]: [EcoQuests] Enabling EcoQuests v1.30.0
[20:08:17] [Server thread/INFO]: [EcoQuests] Loading EcoQuests
[20:08:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoquests [1.30.0]
[20:08:17] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[20:08:17] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[20:08:17] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[20:08:17] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[20:08:17] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[20:08:17] [Server thread/INFO]: Preparing level "TheBlossomingForest"
[20:08:17] [Server thread/INFO]: [TerraformGenerator] Detected world: TheBlossomingForest, commencing injection... 
[20:08:17] [Server thread/INFO]: [TerraformGenerator] Injection success! Proceeding with generation.
[20:08:17] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[20:08:17] [Server thread/INFO]: Time elapsed: 117 ms
[20:08:17] [Server thread/INFO]: [TerraformGenerator] TheBlossomingForest loaded.
[20:08:17] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[20:08:17] [Server thread/INFO]: Time elapsed: 17 ms
[20:08:17] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[20:08:17] [Server thread/INFO]: [WorldGuard] (TheBlossomingForest) TNT ignition is PERMITTED.
[20:08:17] [Server thread/INFO]: [WorldGuard] (TheBlossomingForest) Lighters are PERMITTED.
[20:08:17] [Server thread/INFO]: [WorldGuard] (TheBlossomingForest) Lava fire is PERMITTED.
[20:08:17] [Server thread/INFO]: [WorldGuard] (TheBlossomingForest) Fire spread is UNRESTRICTED.
[20:08:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TheBlossomingForest'
[20:08:17] [Server thread/INFO]: [WorldGuard] (TheBlossomingForest_nether) TNT ignition is PERMITTED.
[20:08:17] [Server thread/INFO]: [WorldGuard] (TheBlossomingForest_nether) Lighters are PERMITTED.
[20:08:17] [Server thread/INFO]: [WorldGuard] (TheBlossomingForest_nether) Lava fire is PERMITTED.
[20:08:17] [Server thread/INFO]: [WorldGuard] (TheBlossomingForest_nether) Fire spread is UNRESTRICTED.
[20:08:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TheBlossomingForest_nether'
[20:08:17] [Server thread/INFO]: [WorldGuard] (TheBlossomingForest_the_end) TNT ignition is PERMITTED.
[20:08:17] [Server thread/INFO]: [WorldGuard] (TheBlossomingForest_the_end) Lighters are PERMITTED.
[20:08:17] [Server thread/INFO]: [WorldGuard] (TheBlossomingForest_the_end) Lava fire is PERMITTED.
[20:08:17] [Server thread/INFO]: [WorldGuard] (TheBlossomingForest_the_end) Fire spread is UNRESTRICTED.
[20:08:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TheBlossomingForest_the_end'
[20:08:17] [Server thread/INFO]: [WorldGuard] Loading region data...
[20:08:18] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[20:08:18] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[20:08:18] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3382)
[20:08:18] [Server thread/INFO]: [Citizens] Loading external libraries
[20:08:18] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[20:08:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[20:08:18] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[20:08:18] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[20:08:18] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[20:08:18] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[20:08:18] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[20:08:19] [Server thread/INFO]: [WorldGuard] (Flatworld) TNT ignition is PERMITTED.
[20:08:19] [Server thread/INFO]: [WorldGuard] (Flatworld) Lighters are PERMITTED.
[20:08:19] [Server thread/INFO]: [WorldGuard] (Flatworld) Lava fire is PERMITTED.
[20:08:19] [Server thread/INFO]: [WorldGuard] (Flatworld) Fire spread is UNRESTRICTED.
[20:08:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Flatworld'
[20:08:19] [Server thread/INFO]: [TerraformGenerator] Detected world: TheRift, commencing injection... 
[20:08:19] [Server thread/INFO]: [TerraformGenerator] Injection success! Proceeding with generation.
[20:08:19] [Server thread/INFO]: [TerraformGenerator] TheRift loaded.
[20:08:19] [Server thread/INFO]: [WorldGuard] (TheRift) TNT ignition is PERMITTED.
[20:08:19] [Server thread/INFO]: [WorldGuard] (TheRift) Lighters are PERMITTED.
[20:08:19] [Server thread/INFO]: [WorldGuard] (TheRift) Lava fire is PERMITTED.
[20:08:19] [Server thread/INFO]: [WorldGuard] (TheRift) Fire spread is UNRESTRICTED.
[20:08:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TheRift'
[20:08:19] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[20:08:19] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1378), impl for Spigot v1.3.0-SNAPSHOT (build 1804-REL) 
[20:08:19] [Server thread/INFO]: +> [Denizen] Running on java version: 21.0.2 
[20:08:19] [Server thread/INFO]: +> [Denizen] Running on unrecognized (future?) Java version. May or may not work. 
[20:08:19] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[20:08:19] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[20:08:19] [Server thread/INFO]: +> [Denizen]  
[20:08:19] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[20:08:19] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[20:08:19] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[20:08:19] [Server thread/INFO]: +> [Denizen] version: 1.3.0-SNAPSHOT (build 1804-REL) 
[20:08:19] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[20:08:19] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[20:08:20] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[20:08:20] [Server thread/INFO]: +> [Denizen] Loaded 153 core commands and 30 core object types, at 942ms from start. 
[20:08:20] [Server thread/INFO]: +> [ScriptRegistry] Loading 1 script files... 
[20:08:20] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 3ms, processing 5ms. 
[20:08:20] [Server thread/INFO]: +> [Denizen] Final full init took 978ms. 
[20:08:20] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.15.0
[20:08:20] [Server thread/INFO]: [LiteBans] Using configured locale (sk)
[20:08:20] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[20:08:20] [Server thread/INFO]: [LiteBans] Loading SQL driver: mysql 8.0.29 (com.mysql.cj.jdbc.Driver)
[20:08:20] [Server thread/INFO]: [LiteBans] Connecting to database...
[20:08:20] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[20:08:20] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[20:08:20] [Server thread/INFO]: [LiteBans] Connected to MySQL database successfully (62.5 ms).
[20:08:20] [Server thread/INFO]: [LiteBans] Database connection fully initialized (81.6 ms).
[20:08:20] [Server thread/INFO]: [LiteBans] v2.15.0 enabled. Startup took 187 ms.
[20:08:20] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.2
[20:08:20] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[20:08:20] [Server thread/INFO]: [GriefPrevention] 2 total claims loaded.
[20:08:20] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[20:08:20] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[20:08:20] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[20:08:20] [Server thread/INFO]: [GriefPrevention] Boot finished.
[20:08:20] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
[20:08:20] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[20:08:20] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[20:08:20] [Server thread/INFO]: [Essentials] No kits found to migrate.
[20:08:20] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[20:08:20] [Server thread/INFO]: [Essentials] Using locale sk
[20:08:20] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[20:08:20] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[20:08:20] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[20:08:20] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[20:08:20] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.6.3-beta-14
[20:08:20] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[20:08:20] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[20:08:21] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.6.3-beta-14
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.45
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Purpur git-Purpur-2176 (MC: 1.20.4)
                                               
[20:08:21] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[20:08:21] [Server thread/INFO]: [ItemsAdder] [Host] Starting self-host webserver on port: 8001
[20:08:21] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[20:08:21] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[20:08:21] [Server thread/INFO]: [DeluxeMenus] 13 GUI menus loaded!
[20:08:21] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[20:08:21] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[20:08:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[20:08:21] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.6
[20:08:21] [Server thread/INFO]: [Multiverse-Inventories 4.2.6] enabled.
[20:08:21] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.8
[20:08:21] [Server thread/INFO]: [EcoItems] Enabling EcoItems v5.45.0
[20:08:21] [Server thread/INFO]: [EcoItems] Loading EcoItems
[20:08:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoitems [5.45.0]
[20:08:21] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.27.0
[20:08:21] [Server thread/INFO]: [Reforges] Enabling Reforges v6.58.0
[20:08:21] [Server thread/INFO]: [Reforges] Loading Reforges
[20:08:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: reforges [6.58.0]
[20:08:21] [Server thread/INFO]: [Talismans] Enabling Talismans v6.57.0
[20:08:21] [Server thread/INFO]: [Talismans] Loading Talismans
[20:08:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: talismans [6.57.0]
[20:08:22] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[20:08:22] [Server thread/INFO]: [Votifier] Loaded token for website: default
[20:08:22] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[20:08:22] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[20:08:22] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:8002.
[20:08:22] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.136
[20:08:22] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.4
[20:08:22] [Server thread/INFO]: [net.coreprotect.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@aa2b9e0
[20:08:22] [Server thread/INFO]: [CoreProtect] CoreProtect je teraz povolené! 
[20:08:22] [Server thread/INFO]: [CoreProtect] Použitím MySQL na ukladanie dát.
[20:08:22] [Server thread/INFO]: --------------------
[20:08:22] [Server thread/INFO]: [CoreProtect] Užite si to CoreProtect? Pridajte sa k nám Discord!
[20:08:22] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[20:08:22] [Server thread/INFO]: --------------------
[20:08:22] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[20:08:22] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[20:08:22] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[20:08:22] [Server thread/INFO]: | Command file(s) found : 1
[20:08:22] [Server thread/INFO]: | Config : Ready.
[20:08:22] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[20:08:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[20:08:22] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[20:08:22] [Server thread/INFO]: | Custom commands loaded : 5
[20:08:22] [Server thread/INFO]: | You're running the latest version of MyCommand.
[20:08:22] [Server thread/INFO]: | Using MySQL database for PlayerData storage.
[20:08:22] [Server thread/INFO]: | Connecting to database (MySQL) ...
[20:08:22] [Server thread/INFO]: | Connected.
[20:08:22] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[20:08:22] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[20:08:22] [Server thread/INFO]: [ChatControlRed] Enabling ChatControlRed v10.26.0
[20:08:22] [Server thread/INFO]:  ____ _  _ ____ ___ ____ ____ _  _ ___ ____ ____ _
[20:08:22] [Server thread/INFO]:  |    |__| |__|  |  |    |  | |\ |  |  |__/ |  | |
[20:08:22] [Server thread/INFO]:  |___ |  | |  |  |  |___ |__| | \|  |  |  \ |__| |___
[20:08:22] [Server thread/INFO]:   
[20:08:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatcontrolred [10.26.0]
[20:08:22] [Server thread/INFO]: Registering initial bungee for channel: BungeeCord
[20:08:22] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[20:08:22] [Server thread/INFO]: Connecting to external database...
[20:08:22] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@1b7804c9
[20:08:22] [pool-71-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (6405e850eea61a4b9bf4f0d0cbb80fe20b3cfb90)
[20:08:22] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[20:08:23] [Server thread/INFO]: Note: Hooked into Essentials (set Tag.Backward_Compatible to enable nick support)
[20:08:23] [Server thread/INFO]: [DiscordSRV] API listener org.mineacademy.chatcontrol.lib.model.DiscordListener$DiscordListenerImpl unsubscribed
[20:08:23] [Server thread/INFO]: [DiscordSRV] API listener org.mineacademy.chatcontrol.lib.model.DiscordListener$DiscordListenerImpl subscribed (3 methods)
[20:08:23] [Server thread/INFO]: [AntiPopup] Enabling AntiPopup v8
[20:08:23] [Server thread/INFO]: [AntiPopup] Config enabled.
[20:08:23] [Server thread/INFO]: [AntiPopup] Loaded optional metrics.
[20:08:23] [Server thread/INFO]: [AntiPopup] Initiated PacketEvents.
[20:08:23] [Server thread/INFO]: [AntiPopup] Hooked on 1.20.4
[20:08:23] [Server thread/INFO]: [AntiPopup] Commands registered.
[20:08:23] [Server thread/INFO]: [AntiPopup] Logger filter enabled.
[20:08:23] [Server thread/INFO]: [NamelessMC] Enabling NamelessMC v3.4.0
[20:08:23] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:CraftTale(1094337204412760114)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《📜》pravidlá(1094340359460503722)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《👋》privítanie(1094338641519722537)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《👋》lúčenie(1229078663165906944)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《📰》adminnovinky(1094343820470140938)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《👥》a-team(1210527658539089961)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《💬》admin-chat(1210528934110830662)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《💬》admin-chat-server(1207377195933110305)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《📖》wiki(1209884836421042176)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《🗞》logging(1160632617427808396)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《🤖》anti-cheatvpn(1191099468964188190)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《🥊》tresty(1094551694886576178)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bot-spam(1228440995134308373)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《📜》pravidlá(1230070123080056863)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《👤》chat(1230073408557940808)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《📊》hodnotenie(1230073490120638495)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《🧠》no-iq-play(1230073752688136266)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《📃》transcripty(1229078858255302718)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《🥳》novinky(1094340254737117194)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《🛠》nábor(1094353048362565762)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《👍》hlasovanie(1094544319559512095)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《🎁》giveaways(1229078417467641970)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《🚩》začíname(1225143957906784256)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《✅》overenie(1184157832065581176)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《🔒》povolenie-prístupu(1229413248789381201)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《💬》crafttale-chat(1094551644924035072)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《💬》hub-chat(1228425322253389915)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《💬》volný-chat(1204488781915496519)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《😭》kto-umrel(1097880406533079090)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《🎫》tickety(1191362074392145980)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《🤖》bot-spam(1229023910733938688)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《📷》screenshoty(1193151437044199534)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《🤣》memes(1094582001559949474)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《🍌》nsfw(1094582441420791848)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《👾》lonedevs-plugins(1241408145759272990)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:licencie(1232013269322043444)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:《🐦🔥》fenixcraft-server(1242431968969232454)
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[20:08:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nameless [3.4.0]
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] JDBC tables passed validation, using JDBC account backend
[20:08:23] [Server thread/INFO]: [Pl-Hide-Pro] Enabling Pl-Hide-Pro v2.9.4
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[20:08:23] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[20:08:23] [Server thread/INFO]: [FarmControl] Enabling FarmControl v1.3.0
[20:08:23] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.12.4
[20:08:23] [Server thread/INFO]: [NBTAPI] Adding listeners...
[20:08:23] [Server thread/INFO]: [NBTAPI] Checking bindings...
[20:08:23] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[20:08:23] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[20:08:23] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[20:08:23] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[20:08:23] [Server thread/INFO]: [TAB] Enabling TAB v4.1.2
[20:08:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.2]
[20:08:23] [Server thread/INFO]: [TAB] Enabled in 91ms
[20:08:23] [Server thread/INFO]: [Insights] Enabling Insights v6.17.2
[20:08:23] [Server thread/INFO]: [Insights] Loaded limit 'redstone-limit.yml'
[20:08:23] [Server thread/INFO]: [Insights] Loaded limit 'tile-limit.yml'
[20:08:23] [Server thread/INFO]: [Insights] Loaded limit 'bed-limit.yml'
[20:08:23] [Server thread/INFO]: [Insights] Loaded limit 'player-entities-limit.yml'
[20:08:24] [Server thread/INFO]: [Insights] Unregistered listener of 'BlockFromToEvent'
[20:08:24] [Server thread/INFO]: [Insights] Unregistered listener of 'LeavesDecayEvent'
[20:08:24] [Server thread/INFO]: [Insights] Unregistered listener of 'FluidLevelChangeEvent'
[20:08:24] [Server thread/INFO]: [Insights] Unregistered listener of 'SpongeAbsorbEvent'
[20:08:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: insights [6.17.2]
[20:08:24] [Server thread/INFO]: [OreAnnouncer] Enabling OreAnnouncer v2.8.5
[20:08:24] [Server thread/INFO]: [OreAnnouncer] Initializing OreAnnouncer v2.8.5
[20:08:24] [Server thread/ERROR]: [OreAnnouncer] [Server thread] INFO com.alessiodp.oreannouncer.libs.hikari.pool.HikariPool - HikariPool-1 - Added connection com.alessiodp.oreannouncer.libs.mysql.cj.jdbc.ConnectionImpl@27ab74e0
[20:08:24] [Server thread/INFO]: [OreAnnouncer] Hooked into DiscordSRV
[20:08:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oreannouncer [2.8.5]
[20:08:24] [Server thread/INFO]: [OreAnnouncer] Hooked into PlaceholderAPI
[20:08:24] [Server thread/INFO]: [OreAnnouncer] OreAnnouncer v2.8.5 enabled
[20:08:24] [Server thread/INFO]: [EasyArmorStands] Enabling EasyArmorStands v2.0.3
[20:08:24] [Server thread/INFO]: [EasyArmorStands] Enabling WorldGuard integration
[20:08:24] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.1
[20:08:24] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[20:08:24] [Server thread/INFO]: [ItemEffects] Enabling ItemEffects v2.0.0
[20:08:24] [Server thread/INFO]: [ItemEffects] Loading ItemEffects
[20:08:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemeffects [2.0.0]
[20:08:25] [Server thread/INFO]: [CosmeticsCore] Enabling CosmeticsCore v1.2.3d
[20:08:25] [Server thread/INFO]: [AntiAFKPlus] Enabling AntiAFKPlus v3.2.4
[20:08:25] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.8.1-SNAPSHOT (build 518)
[20:08:25] [Server thread/INFO]: [Sentinel] Sentinel loading...
[20:08:25] [Server thread/INFO]: [Sentinel] Running on java version: 21.0.2
[20:08:25] [Server thread/INFO]: [Sentinel] Sentinel loaded on a fully supported Minecraft version. If you encounter any issues or need to ask a question, please join our Discord at https://discord.gg/Q6pZGSR and post in the '#sentinel' channel.
[20:08:25] [Server thread/INFO]: [Sentinel] Vault linked! Group targets will work.
[20:08:25] [Server thread/INFO]: [Sentinel] Sentinel found WorldGuard! Adding support for it!
[20:08:25] [Server thread/INFO]: [Sentinel] Sentinel loaded!
[20:08:25] [Server thread/INFO]: [BetterHud] Enabling BetterHud vbeta-23
[20:08:25] [Server thread/INFO]: [BetterHud] Getting minecraft default version...
[20:08:25] [Server thread/INFO]: [BetterHud] Current minecraft version: 1.20.4
[20:08:25] [Server thread/INFO]: [BetterHud] Unzip textures...
[20:08:25] [Server thread/INFO]: [EcoShop] Enabling EcoShop v1.18.0
[20:08:25] [Server thread/INFO]: [EcoShop] Loading EcoShop
[20:08:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoshop [1.18.0]
[20:08:25] [Server thread/INFO]: [RealisticSeasons] Enabling RealisticSeasons v10.8.1
[20:08:25] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.1.0
[20:08:26] [Server thread/INFO]: [spark] Enabling spark v1.10.61
[20:08:26] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[20:08:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.61]
[20:08:26] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[20:08:26] [Server thread/INFO]: [PAPIProxyBridge] Enabling PAPIProxyBridge v1.6.1
[20:08:26] [Server thread/INFO]: [PAPIProxyBridge] PAPIProxyBridge (Purpur 1.6.1) has been enabled!
[20:08:26] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.16.2
[20:08:26] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[20:08:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[20:08:26] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[20:08:27] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[20:08:27] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.16.2
[20:08:27] [Server thread/INFO]: [Boosters] Enabling Boosters v5.57.0
[20:08:27] [Server thread/INFO]: [Boosters] Loading Boosters
[20:08:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: boosters [5.57.0]
[20:08:27] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.1.59
[20:08:27] [Server thread/INFO]: [GPFlags] Enabling GPFlags v5.12.11
[20:08:27] [Server thread/INFO]: [GPFlags] Finished loading configuration.
[20:08:27] [Server thread/INFO]: [GPFlags] Finished loading data.
[20:08:27] [Server thread/INFO]: [GPFlags] Successfully loaded in 0.23 seconds
[20:08:27] [Server thread/INFO]: [EcoMobs] Enabling EcoMobs v10.4.0
[20:08:27] [Server thread/INFO]: [EcoMobs] Loading EcoMobs
[20:08:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecomobs [10.4.0]
[20:08:27] [Server thread/INFO]: [EcoMobs] Loaded integrations: ModelEngine
[20:08:27] [Server thread/INFO]: [GrimAC] Enabling GrimAC v2.3.62
[20:08:27] [Server thread/INFO]: [GrimAC] Registering singular bukkit event... (PistonEvent)
[20:08:27] [Server thread/INFO]: [GrimAC] Registering packets...
[20:08:27] [Server thread/INFO]: [GrimAC] Registering an outgoing plugin channel...
[20:08:27] [Server thread/INFO]: [GrimAC] Registering tick schedulers...
[20:08:27] [Server thread/INFO]: [GrimAC] [ACF] Enabled Asynchronous Tab Completion Support!
[20:08:27] [Server thread/INFO]: [EcoPets] Enabling EcoPets v2.58.0
[20:08:27] [Server thread/INFO]: [EcoPets] Loading EcoPets
[20:08:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecopets [2.58.0]
[20:08:27] [Server thread/INFO]: [EcoPets] Loaded integrations: ModelEngine
[20:08:27] [Server thread/INFO]: [EcoCrates] Enabling EcoCrates v1.13.10
[20:08:27] [Server thread/INFO]: [EcoCrates] Loading EcoCrates
[20:08:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecocrates [1.13.10]
[20:08:27] [Server thread/INFO]: [EcoArmor] Enabling EcoArmor v8.58.0
[20:08:27] [Server thread/INFO]: [EcoArmor] Loading EcoArmor
[20:08:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoarmor [8.58.0]
[20:08:27] [Server thread/INFO]: [UpgradeableHoppers] Enabling UpgradeableHoppers v4.15.4
[20:08:27] [Server thread/INFO]: [UpgradeableHoppers] Version: 4.15.4 Previous: 4.15.4
[20:08:27] [Server thread/INFO]: [UpgradeableHoppers] Server: 1.20.x running Paper
[20:08:27] [Server thread/INFO]: [UpgradeableHoppers] Licensed to: BM
[20:08:27] [Server thread/INFO]: [UpgradeableHoppers] Experiencing issues or having questions? Join our Discord!
[20:08:27] [Server thread/INFO]: [UpgradeableHoppers] Discord: https://discord.gg/B4MAJVk
[20:08:27] [Server thread/INFO]: [UpgradeableHoppers] Wiki: https://github.com/Angeschossen/UpgradeableHoppers/wiki
[20:08:27] [Server thread/INFO]: [UpgradeableHoppers]  
[20:08:27] [Server thread/INFO]: [UpgradeableHoppers] Using SQLITE as database driver.
[20:08:27] [Server thread/INFO]: [UpgradeableHoppers] Successful connected to SQL database.
[20:08:27] [Server thread/INFO]: [UpgradeableHoppers] Database is ready.
[20:08:27] [Server thread/INFO]: [FriendSystemGUI] Enabling FriendSystemGUI v4.2*
[20:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: friendsystem [4.2]
[20:08:28] [Server thread/INFO]: [Plan] Enabling Plan v5.6 build 2820
[20:08:28] [Server thread/INFO]: [Plan] 
[20:08:28] [Server thread/INFO]: [Plan]            ██▌
[20:08:28] [Server thread/INFO]: [Plan]      ██▌   ██▌
[20:08:28] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  Player Analytics
[20:08:28] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  v5.6 build 2820
[20:08:28] [Server thread/INFO]: [Plan] 
[20:08:28] [Server thread/INFO]: [Plan] Locale: 'English' by AuroraLS3
[20:08:28] [Server thread/INFO]: [Plan] Downloading MySQL Driver, this may take a while...
[20:08:28] [Server thread/INFO]: [Plan] MySQL-database connection established.
[20:08:28] [Server thread/WARN]: [Plan] WebServer was not initialized. (WebServer.DisableWebServer: true)
[20:08:28] [Server thread/INFO]: [Plan] Loading server identifying information
[20:08:28] [Server thread/INFO]: [Plan] Server identifier loaded: 61fba1d3-4d29-4e13-bde6-b23e161e7f43
[20:08:28] [Plan MySQLDB-transaction-thread-1/INFO]: [Plan] Database: Making sure schema is up to date..
[20:08:28] [Server thread/INFO]: [Plan] Registered extension: DiscordSRV
[20:08:28] [Server thread/INFO]: [DiscordSRV] API listener net.playeranalytics.extension.discordsrv.DiscordSRVListener subscribed (2 methods)
[20:08:28] [Server thread/INFO]: [Plan] Registered extension: Essentials
[20:08:28] [Server thread/INFO]: [Plan] Registered extension: GriefPrevention
[20:08:28] [Plan Non critical-pool-5/INFO]: [Plan] Proxy server detected in the database - Proxy Webserver address is 'https://plan.crafttale.eu'.
[20:08:28] [Server thread/INFO]: [Plan] Registered extension: LuckPerms
[20:08:28] [Server thread/INFO]: [Plan] Registered extension: nuVotifier
[20:08:28] [Server thread/INFO]: [Plan] Registered extension: PlaceholderAPI
[20:08:28] [Server thread/INFO]: [Plan] Registered extension: Economy (Vault)
[20:08:28] [Server thread/INFO]: [Plan] Registered extension: Permission Groups (Vault)
[20:08:28] [Server thread/INFO]: [Plan] Player Analytics Enabled.
[20:08:28] [Server thread/INFO]: [EcoJobs] Enabling EcoJobs v3.57.0
[20:08:28] [Server thread/INFO]: [EcoJobs] Loading EcoJobs
[20:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecojobs [3.57.0]
[20:08:28] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.3
[20:08:28] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.3]  Enabled - By Rigby and fernferret
[20:08:28] [Server thread/INFO]: [VanillaCustomizer] Enabling VanillaCustomizer v0.2
[20:08:28] [Server thread/INFO]: [EcoSkills] Enabling EcoSkills v3.47.0
[20:08:28] [Server thread/INFO]: [EcoSkills] Loading EcoSkills
[20:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoskills [3.47.0]
[20:08:28] [Server thread/INFO]: [libreforge] Enabling libreforge v4.59.0
[20:08:28] [Server thread/INFO]: [libreforge] Loading libreforge
[20:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libreforge [4.59.0]
[20:08:28] [Server thread/INFO]: [libreforge] Loaded integrations: Citizens, TAB, TerraformGenerator, ModelEngine, Vault, WorldGuard
[20:08:29] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[20:08:29] [Server thread/INFO]: Starting GS4 status listener
[20:08:29] [Server thread/INFO]: Thread Query Listener started
[20:08:29] [Query Listener #1/INFO]: Query running on 0.0.0.0:8004
[20:08:29] [Server thread/INFO]: Running delayed init tasks
[20:08:29] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[20:08:29] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[20:08:29] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefPreventionFeature] Plugin 'GriefPrevention' found. Using it now.
[20:08:29] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefPrevention'
[20:08:29] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:08:29] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[20:08:29] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:08:29] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing gift_pet.bbmodel.
[20:08:29] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[20:08:29] [Craft Scheduler Thread - 5 - Essentials/INFO]: [Essentials] Získavanie informácií o verzii...
[20:08:29] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] [License] Store product licensed to: ImPSYCHEER (29126)
[20:08:29] [Craft Scheduler Thread - 9 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[20:08:29] [Craft Scheduler Thread - 9 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[20:08:29] [Craft Scheduler Thread - 6 - CosmeticsCore/INFO]: [CosmeticsCore] [License] Store product licensed to: impsycheer (464271)
[20:08:29] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:08:29] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing parasite_crate.bbmodel.
[20:08:29] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[20:08:29] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[20:08:29] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing wraith.bbmodel.
[20:08:29] [Craft Scheduler Thread - 17 - EasyArmorStands/INFO]: [EasyArmorStands] EasyArmorStands v2.1.0 is available
[20:08:29] [Craft Scheduler Thread - 17 - EasyArmorStands/INFO]: [EasyArmorStands] https://www.spigotmc.org/resources/108349
[20:08:29] [Craft Scheduler Thread - 10 - ItemsAdder/INFO]: [ItemsAdder]  
[20:08:29] [Craft Scheduler Thread - 10 - ItemsAdder/INFO]: [ItemsAdder] UPDATE available: https://www.spigotmc.org/resources/73355/
[20:08:29] [Craft Scheduler Thread - 10 - ItemsAdder/INFO]: [ItemsAdder] Current version: 3.6.3-beta-14 | Online version: 3.6.4-release-2
[20:08:29] [Craft Scheduler Thread - 10 - ItemsAdder/INFO]: [ItemsAdder]  
[20:08:29] [Craft Scheduler Thread - 19 - Plan/INFO]: [Plan] ----------------------------------------
[20:08:29] [Craft Scheduler Thread - 19 - Plan/INFO]: [Plan] New Release (5.6.2883) is available https://github.com/plan-player-analytics/Plan/releases
[20:08:29] [Craft Scheduler Thread - 19 - Plan/INFO]: [Plan] ----------------------------------------
[20:08:30] [Server thread/INFO]: [CoreProtect] FastAsyncWorldEdit úspešné prihlásenie inicializované.
[20:08:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rs [1.0.0]
[20:08:30] [Server thread/INFO]: [RealisticSeasons] Total biomes registered on server: 285
[20:08:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plan [5.6 build 2820]
[20:08:30] [Plan MySQLDB-transaction-thread-1/INFO]: [Plan] All database patches applied successfully.
[20:08:30] [Server thread/INFO]: [Citizens] Loaded 9 NPCs.
[20:08:30] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[20:08:30] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[20:08:30] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2024/05/28 20:08:19 
[20:08:31] [Server thread/INFO]: [Insights] Registered listener of addon 'GriefPrevention'
[20:08:31] [Server thread/INFO]: [Insights] Loaded addon 'GriefPrevention' v2.1.0
[20:08:31] [Server thread/INFO]: [UpgradeableHoppers] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[20:08:31] [Server thread/INFO]: [UpgradeableHoppers] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[20:08:31] [Server thread/INFO]: [UpgradeableHoppers] Successfully added region provider: WorldGuard Type: SERVER
[20:08:31] [Server thread/WARN]: [UpgradeableHoppers] You configured server-bank in config.yml, but your economy plugin doesn't support banks.
[20:08:31] [Server thread/INFO]: [UpgradeableHoppers] Successful integrated Vault economy into economy system. Name: EcoBits dublony
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: multiverse [1.0.1]
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: griefprevention [1.7.0]
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[20:08:32] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion votingplugin. Identifier is already in use.
[20:08:32] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to an unknown issue.
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: otherplayer [2.1.0]
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: ascii [1.0.0]
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.2]
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: world [1.2.2]
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[20:08:32] [Server thread/INFO]: 12 placeholder hook(s) registered!
[20:08:32] [Server thread/WARN]: [EcoItems] Task #801 for EcoItems v5.45.0 generated an exception
java.lang.IllegalArgumentException: Recipe must have non-AIR result.
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.inventory.CraftingRecipe.<init>(CraftingRecipe.java:21) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:49) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe.register(ShapedCraftingRecipe.java:95) ~[eco-6.70.1-all.jar:?]
    at com.willfp.eco.core.recipe.Recipes.createAndRegisterRecipe(Recipes.java:135) ~[eco-6.70.1-all.jar:?]
    at com.willfp.ecoitems.items.EcoItemsRecipes.acceptConfig$lambda$0(EcoItemsRecipes.kt:29) ~[EcoItems v5.45.0.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1157) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:08:32] [Server thread/WARN]: [EcoItems] Task #802 for EcoItems v5.45.0 generated an exception
java.lang.IllegalArgumentException: Recipe must have non-AIR result.
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.inventory.CraftingRecipe.<init>(CraftingRecipe.java:21) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:49) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe.register(ShapedCraftingRecipe.java:95) ~[eco-6.70.1-all.jar:?]
    at com.willfp.eco.core.recipe.Recipes.createAndRegisterRecipe(Recipes.java:135) ~[eco-6.70.1-all.jar:?]
    at com.willfp.ecoitems.items.EcoItemsRecipes.acceptConfig$lambda$0(EcoItemsRecipes.kt:29) ~[EcoItems v5.45.0.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1157) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:08:32] [Server thread/WARN]: [EcoItems] Task #805 for EcoItems v5.45.0 generated an exception
java.lang.IllegalArgumentException: Recipe must have non-AIR result.
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.inventory.CraftingRecipe.<init>(CraftingRecipe.java:21) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:49) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe.register(ShapedCraftingRecipe.java:95) ~[eco-6.70.1-all.jar:?]
    at com.willfp.eco.core.recipe.Recipes.createAndRegisterRecipe(Recipes.java:135) ~[eco-6.70.1-all.jar:?]
    at com.willfp.ecoitems.items.EcoItemsRecipes.acceptConfig$lambda$0(EcoItemsRecipes.kt:29) ~[EcoItems v5.45.0.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1157) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:08:32] [Server thread/WARN]: [EcoItems] Task #806 for EcoItems v5.45.0 generated an exception
java.lang.IllegalArgumentException: Recipe must have non-AIR result.
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.inventory.CraftingRecipe.<init>(CraftingRecipe.java:21) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:49) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe.register(ShapedCraftingRecipe.java:95) ~[eco-6.70.1-all.jar:?]
    at com.willfp.eco.core.recipe.Recipes.createAndRegisterRecipe(Recipes.java:135) ~[eco-6.70.1-all.jar:?]
    at com.willfp.ecoitems.items.EcoItemsRecipes.acceptConfig$lambda$0(EcoItemsRecipes.kt:29) ~[EcoItems v5.45.0.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1157) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:08:32] [Server thread/WARN]: [EcoItems] Task #809 for EcoItems v5.45.0 generated an exception
java.lang.IllegalArgumentException: Recipe must have non-AIR result.
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.inventory.CraftingRecipe.<init>(CraftingRecipe.java:21) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:49) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe.register(ShapedCraftingRecipe.java:95) ~[eco-6.70.1-all.jar:?]
    at com.willfp.eco.core.recipe.Recipes.createAndRegisterRecipe(Recipes.java:135) ~[eco-6.70.1-all.jar:?]
    at com.willfp.ecoitems.items.EcoItemsRecipes.acceptConfig$lambda$0(EcoItemsRecipes.kt:29) ~[EcoItems v5.45.0.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1157) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:08:32] [Server thread/WARN]: [EcoItems] Task #810 for EcoItems v5.45.0 generated an exception
java.lang.IllegalArgumentException: Recipe must have non-AIR result.
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.inventory.CraftingRecipe.<init>(CraftingRecipe.java:21) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:49) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe.register(ShapedCraftingRecipe.java:95) ~[eco-6.70.1-all.jar:?]
    at com.willfp.eco.core.recipe.Recipes.createAndRegisterRecipe(Recipes.java:135) ~[eco-6.70.1-all.jar:?]
    at com.willfp.ecoitems.items.EcoItemsRecipes.acceptConfig$lambda$0(EcoItemsRecipes.kt:29) ~[EcoItems v5.45.0.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1157) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:08:32] [Server thread/WARN]: [EcoItems] Task #813 for EcoItems v5.45.0 generated an exception
java.lang.IllegalArgumentException: Recipe must have non-AIR result.
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.inventory.CraftingRecipe.<init>(CraftingRecipe.java:21) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:49) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe.register(ShapedCraftingRecipe.java:95) ~[eco-6.70.1-all.jar:?]
    at com.willfp.eco.core.recipe.Recipes.createAndRegisterRecipe(Recipes.java:135) ~[eco-6.70.1-all.jar:?]
    at com.willfp.ecoitems.items.EcoItemsRecipes.acceptConfig$lambda$0(EcoItemsRecipes.kt:29) ~[EcoItems v5.45.0.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1157) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:08:32] [Server thread/WARN]: [EcoItems] Task #814 for EcoItems v5.45.0 generated an exception
java.lang.IllegalArgumentException: Recipe must have non-AIR result.
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.inventory.CraftingRecipe.<init>(CraftingRecipe.java:21) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:49) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe.register(ShapedCraftingRecipe.java:95) ~[eco-6.70.1-all.jar:?]
    at com.willfp.eco.core.recipe.Recipes.createAndRegisterRecipe(Recipes.java:135) ~[eco-6.70.1-all.jar:?]
    at com.willfp.ecoitems.items.EcoItemsRecipes.acceptConfig$lambda$0(EcoItemsRecipes.kt:29) ~[EcoItems v5.45.0.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1157) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:08:32] [Server thread/WARN]: [EcoItems] Task #817 for EcoItems v5.45.0 generated an exception
java.lang.IllegalArgumentException: Recipe must have non-AIR result.
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.inventory.CraftingRecipe.<init>(CraftingRecipe.java:21) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:49) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe.register(ShapedCraftingRecipe.java:95) ~[eco-6.70.1-all.jar:?]
    at com.willfp.eco.core.recipe.Recipes.createAndRegisterRecipe(Recipes.java:135) ~[eco-6.70.1-all.jar:?]
    at com.willfp.ecoitems.items.EcoItemsRecipes.acceptConfig$lambda$0(EcoItemsRecipes.kt:29) ~[EcoItems v5.45.0.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1157) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:08:32] [Server thread/WARN]: [EcoItems] Task #818 for EcoItems v5.45.0 generated an exception
java.lang.IllegalArgumentException: Recipe must have non-AIR result.
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.inventory.CraftingRecipe.<init>(CraftingRecipe.java:21) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:49) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe.register(ShapedCraftingRecipe.java:95) ~[eco-6.70.1-all.jar:?]
    at com.willfp.eco.core.recipe.Recipes.createAndRegisterRecipe(Recipes.java:135) ~[eco-6.70.1-all.jar:?]
    at com.willfp.ecoitems.items.EcoItemsRecipes.acceptConfig$lambda$0(EcoItemsRecipes.kt:29) ~[EcoItems v5.45.0.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1157) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:08:32] [Server thread/WARN]: [EcoItems] Task #821 for EcoItems v5.45.0 generated an exception
java.lang.IllegalArgumentException: Recipe must have non-AIR result.
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.inventory.CraftingRecipe.<init>(CraftingRecipe.java:21) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:49) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe.register(ShapedCraftingRecipe.java:95) ~[eco-6.70.1-all.jar:?]
    at com.willfp.eco.core.recipe.Recipes.createAndRegisterRecipe(Recipes.java:135) ~[eco-6.70.1-all.jar:?]
    at com.willfp.ecoitems.items.EcoItemsRecipes.acceptConfig$lambda$0(EcoItemsRecipes.kt:29) ~[EcoItems v5.45.0.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1157) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:08:32] [Server thread/WARN]: [EcoItems] Task #822 for EcoItems v5.45.0 generated an exception
java.lang.IllegalArgumentException: Recipe must have non-AIR result.
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.inventory.CraftingRecipe.<init>(CraftingRecipe.java:21) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:49) ~[purpur-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.willfp.eco.core.recipe.recipes.ShapedCraftingRecipe.register(ShapedCraftingRecipe.java:95) ~[eco-6.70.1-all.jar:?]
    at com.willfp.eco.core.recipe.Recipes.createAndRegisterRecipe(Recipes.java:135) ~[eco-6.70.1-all.jar:?]
    at com.willfp.ecoitems.items.EcoItemsRecipes.acceptConfig$lambda$0(EcoItemsRecipes.kt:29) ~[EcoItems v5.45.0.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1157) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[purpur-1.20.4.jar:git-Purpur-2176]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[20:08:32] [Server thread/INFO]: Done (44.651s)! For help, type "help"
[20:08:32] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2688ms or 53 ticks behind
[20:08:32] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Loaded 178 items
[20:08:32] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[20:08:32] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Used 0/750 REAL_NOTE block IDs
[20:08:32] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[20:08:32] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[20:08:32] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[20:08:32] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Used 696/6608 font_images
[20:08:32] [Server thread/INFO]: [eco] Loaded eco
[20:08:32] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 11 categories
[20:08:32] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[20:08:32] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL (self-host): http://144.76.250.185:8001/generated.zip
[20:08:32] [Server thread/INFO]: [EcoEnchants] Loaded EcoEnchants
[20:08:32] [Server thread/INFO]: [EcoBits] Loaded EcoBits
[20:08:32] [Server thread/INFO]: [EcoQuests] Loaded EcoQuests
[20:08:32] [Server thread/INFO]: [EcoItems] Loaded EcoItems
[20:08:32] [Server thread/INFO]: [Reforges] Loaded Reforges
[20:08:32] [Server thread/INFO]: [Talismans] Loaded Talismans
[20:08:32] [Server thread/INFO]: [ItemEffects] Loaded ItemEffects
[20:08:32] [Server thread/INFO]: [EcoShop] Loaded EcoShop
[20:08:32] [Server thread/INFO]: [Boosters] Loaded Boosters
[20:08:32] [Server thread/INFO]: [EcoMobs] Loaded EcoMobs
[20:08:32] [Server thread/INFO]: [EcoPets] Loaded EcoPets
[20:08:32] [Server thread/INFO]: [EcoCrates] Loaded EcoCrates
[20:08:32] [Server thread/INFO]: [EcoArmor] Loaded EcoArmor
[20:08:32] [Server thread/INFO]: [EcoJobs] Loaded EcoJobs
[20:08:32] [Server thread/INFO]: [EcoSkills] Loaded EcoSkills
[20:08:32] [Server thread/INFO]: [libreforge] Loaded libreforge
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[20:08:32] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs...
[20:08:32] [Server thread/INFO]: [ItemsAdder] Reloaded 0 ItemsAdder Custom Entities Citizens NPCs.
[20:08:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.27.0]
[20:08:33] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[20:08:33] [Craft Scheduler Thread - 13 - Insights/INFO]: [Insights] Checking for updates...
[20:08:33] [Craft Scheduler Thread - 13 - Insights/INFO]: [Insights] We are up-to-date!
[20:08:33] [Server thread/INFO]: 
[20:08:33] [Server thread/INFO]: 
[20:08:33] [Server thread/INFO]: --------====================================--------
[20:08:33] [Server thread/INFO]: --------========[ Polymart Plugins ]========--------
[20:08:33] [Server thread/INFO]: --------====================================--------
[20:08:33] [Server thread/INFO]: 
[20:08:33] [Server thread/INFO]: [48 / 72] Polymart doesn't know about these plugins. Ask the developer to upload them to Polymart so you can use the auto-updater!
[20:08:33] [Server thread/INFO]: AntiAFKPlus, AntiPopup, BetterHud, Chunky, ChunkyBorder, CinematicStudio, Citizens, CoreProtect, DecentHolograms, DeluxeMenus, Denizen, DiscordSRV, EasyArmorStands, Essentials, EssentialsSpawn, FarmControl, FastAsyncWorldEdit, FriendSystemGUI, GPFlags, GriefPrevention, GrimAC, Insights, ItemEffects, LiteBans, LoneLibs, LuckPerms, MiniMOTD, ModelEngine, Multiverse-Core, Multiverse-Inventories, Multiverse-NetherPortals, MyCommand, NBTAPI, NamelessMC, OreAnnouncer, PlaceholderAPI, Plan, ProtocolLib, Sentinel, TAB, TerraformGenerator, TreasureMapsPlus, VanillaCustomizer, Vault, Votifier, VotingPlugin, libreforge, spark
[20:08:33] [Server thread/INFO]: 
[20:08:33] [Server thread/INFO]: [18 / 72] These plugins are up-to-date
[20:08:33] [Server thread/INFO]: Boosters, EcoArmor, EcoBits, EcoCrates, EcoEnchants, EcoItems, EcoJobs, EcoMobs, EcoPets, EcoQuests, EcoShop, EcoSkills, Pl-Hide-Pro, Polymart, RealisticSeasons, Reforges, Talismans, eco
[20:08:33] [Server thread/INFO]: 
[20:08:33] [Server thread/INFO]: [5 / 72] These plugins are available on Polymart! Download them from Polymart to take full advantage of the auto-updater
[20:08:33] [Server thread/INFO]: ChatControlRed, CosmeticsCore, PAPIProxyBridge, UpgradeableHoppers, WorldGuard
[20:08:33] [Server thread/INFO]: 
[20:08:33] [Server thread/INFO]: [1 / 72] These plugins have updates available from Polymart
[20:08:33] [Server thread/INFO]: ItemsAdder (2 behind)
[20:08:33] [Server thread/INFO]: To update these plugins, use /polymart update <list of plugins> or /polymart update all
[20:08:33] [Server thread/INFO]: 
[20:08:33] [Server thread/INFO]: --------====================================--------
[20:08:34] [ForkJoinPool.commonPool-worker-3/INFO]: [BetterHud] File packed: 5.928MB
[20:08:34] [ForkJoinPool.commonPool-worker-6/INFO]: [BetterHud] Minecraft version: 1.20.4, NMS version: V1_20_R3
[20:08:34] [ForkJoinPool.commonPool-worker-6/INFO]: [BetterHud] Plugin enabled.
[20:08:36] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[20:08:36] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[20:08:36] [ForkJoinPool.commonPool-worker-4/INFO]: [UpgradeableHoppers] There is a new version available: 4.15.8
[20:08:41] [Craft Scheduler Thread - 12 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.16.2
[20:08:51] [Server thread/INFO]: [MyCmd] Checking MySql Connection
[20:09:22] [User Authenticator #0/INFO]: UUID of player PSYCHEER is 522bb5a6-0968-48f4-98a4-065fd585244e
[20:09:23] [Server thread/INFO]: [DiscordSRV] Player PSYCHEER joined with silent joining permission, not sending a join message
[20:09:23] [Server thread/INFO]: PSYCHEER[/213.225.1.24:60596] logged in with entity id 205 at ([TheBlossomingForest]516.5113360991771, 70.9375, -169.2520073062339)
[20:09:25] [Server thread/INFO]: [dev.lone.shaded.cosmeticscore.com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@89e0501
[20:09:28] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&4> with '', and cached result. 
[20:09:28] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&l> with '', and cached result. 
[20:09:28] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:09:28] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_0_RiderNeutral' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:09:28] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_0_RiderNeutral' Executing: (line 16) rename ' <&4><&l>Interakcia' per_player ---------+ 
[20:09:28] [Server thread/INFO]: +> Executing 'RENAME': name=' Interakcia'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:09:28] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_0_RiderNeutral' in 30ms. 
[20:09:30] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&6> with '', and cached result. 
[20:09:30] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:09:30] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_1_CellularModem' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:09:30] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_1_CellularModem' Executing: (line 19) rename ' <&6><&l>GERTRÚDA' per_player ---------+ 
[20:09:30] [Server thread/INFO]: +> Executing 'RENAME': name=' GERTRÚDA'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:09:30] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_1_CellularModem' in 2ms. 
[20:09:35] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:09:35] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_2_CompChapter' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:09:35] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_2_CompChapter' Executing: (line 16) rename ' <&4><&l>Interakcia' per_player ---------+ 
[20:09:35] [Server thread/INFO]: +> Executing 'RENAME': name=' Interakcia'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:09:35] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_2_CompChapter' in 1ms. 
[20:09:38] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:09:38] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_3_EncyclopediaNomadjimbob' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:09:38] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_3_EncyclopediaNomadjimbob' Executing: (line 19) rename ' <&6><&l>GERTRÚDA' per_player ---------+ 
[20:09:38] [Server thread/INFO]: +> Executing 'RENAME': name=' GERTRÚDA'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:09:38] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_3_EncyclopediaNomadjimbob' in 1ms. 
[20:10:16] [Server thread/INFO]: PSYCHEER issued server command: /citizens reload
[20:10:16] [Server thread/INFO]: PSYCHEER issued server command: /citizens reload
[20:10:16] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[20:10:18] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:10:18] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_4_MorganOurs' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:10:18] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_4_MorganOurs' Executing: (line 16) rename ' <&4><&l>Interakcia' per_player ---------+ 
[20:10:18] [Server thread/INFO]: +> Executing 'RENAME': name=' Interakcia'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:10:18] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_4_MorganOurs' in 1ms. 
[20:10:20] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:10:20] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_5_RestrictionsBonds' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:10:20] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_5_RestrictionsBonds' Executing: (line 19) rename ' <&6><&l>GERTRÚDA' per_player ---------+ 
[20:10:20] [Server thread/INFO]: +> Executing 'RENAME': name=' GERTRÚDA'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:10:20] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_5_RestrictionsBonds' in 1ms. 
[20:10:21] [Server thread/INFO]: PSYCHEER issued server command: /citizens reload
[20:10:22] [Server thread/INFO]: PSYCHEER issued server command: /citizens reload
[20:10:22] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[20:10:26] [Server thread/INFO]: PSYCHEER lost connection: Disconnected
[20:10:26] [Server thread/INFO]: [DiscordSRV] Player PSYCHEER quit with silent quitting permission, not sending a quit message
[20:22:30] [User Authenticator #1/INFO]: UUID of player PSYCHEER is 522bb5a6-0968-48f4-98a4-065fd585244e
[20:22:30] [Server thread/INFO]: [DiscordSRV] Player PSYCHEER joined with silent joining permission, not sending a join message
[20:22:30] [Server thread/INFO]: PSYCHEER[/213.225.1.24:57428] logged in with entity id 296 at ([TheBlossomingForest]518.6512520429505, 71.0, -167.30811421915257)
[20:22:33] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:22:33] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_6_AppliancesPsychology' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:22:33] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_6_AppliancesPsychology' Executing: (line 16) rename ' <&4><&l>Interakcia' per_player ---------+ 
[20:22:33] [Server thread/INFO]: +> Executing 'RENAME': name=' Interakcia'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:22:33] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_6_AppliancesPsychology' in 8ms. 
[20:22:35] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:22:35] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_7_InterventionsObjects' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:22:35] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_7_InterventionsObjects' Executing: (line 19) rename ' <&6><&l>GERTRÚDA' per_player ---------+ 
[20:22:35] [Server thread/INFO]: +> Executing 'RENAME': name=' GERTRÚDA'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:22:35] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_7_InterventionsObjects' in 2ms. 
[20:23:03] [Server thread/INFO]: PSYCHEER issued server command: /citizens reload
[20:23:04] [Server thread/INFO]: PSYCHEER issued server command: /citizens reload
[20:23:04] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[20:23:08] [Server thread/INFO]: PSYCHEER issued server command: /npc select 2
[20:23:19] [Server thread/INFO]: PSYCHEER issued server command: /npc assignment --set gertrudaInteract
[20:23:19] [Server thread/INFO]: +> Executing 'Action': Type='On assignment'  npc='n@2 ( GERTRÚDA)'  Script='s@gertrudainteract (ASSIGNMENT)'  Player='p@522bb5a6-0968-48f4-98a4-065fd585244e (PSYCHEER)'   
[20:23:19] [Server thread/INFO]: +- Building action 'On ASSIGNMENT' for n@2 ---------+ 
[20:23:19] [Server thread/INFO]: Starting InstantQueue 'GERTRUDAINTERACT_8_ApplicantsArtwork' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:23:19] [Server thread/INFO]: +- Queue 'GERTRUDAINTERACT_8_ApplicantsArtwork' Executing: (line 5) trigger name:proximity state:true radius:1 ---------+ 
[20:23:19] [Server thread/INFO]: +> Executing 'TRIGGER': trigger='proximity'  toggle='true'  radius='1'  npc='n@2 ( GERTRÚDA)'   
[20:23:19] [Server thread/INFO]: Completing queue 'GERTRUDAINTERACT_8_ApplicantsArtwork' in 3ms. 
[20:23:34] [Server thread/INFO]: PSYCHEER issued server command: /ex reload
[20:23:34] [Server thread/INFO]: Starting InstantQueue 'EXCOMMAND_9_DenizenTutorials' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:23:34] [Server thread/INFO]: +- Queue 'EXCOMMAND_9_DenizenTutorials' Executing: (line 1) reload ---------+ 
[20:23:34] [Server thread/INFO]: +> Executing 'RELOAD': type='SCRIPTS'   
[20:23:34] [Server thread/INFO]: Completing queue 'EXCOMMAND_9_DenizenTutorials' in 5ms. 
[20:23:34] [Server thread/INFO]: +> [ScriptRegistry] Loading 1 script files... 
[20:23:34] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 41ms, processing 3ms. 
[20:23:34] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[20:23:52] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&4> with '', and cached result. 
[20:23:52] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&l> with '', and cached result. 
[20:23:52] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:23:52] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_10_EngineeringSpas' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:23:52] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_10_EngineeringSpas' Executing: (line 16) rename ' <&4><&l>Interakcia' per_player ---------+ 
[20:23:52] [Server thread/INFO]: +> Executing 'RENAME': name=' Interakcia'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:23:52] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_10_EngineeringSpas' in 1ms. 
[20:23:54] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&6> with '', and cached result. 
[20:23:54] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:23:54] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_11_Replaced0Tick' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:23:54] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_11_Replaced0Tick' Executing: (line 19) rename ' <&6><&l>GERTRÚDA' per_player ---------+ 
[20:23:54] [Server thread/INFO]: +> Executing 'RENAME': name=' GERTRÚDA'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:23:54] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_11_Replaced0Tick' in 1ms. 
[20:24:03] [Server thread/INFO]: PSYCHEER issued server command: /citizens reload
[20:24:03] [Server thread/INFO]: PSYCHEER issued server command: /citizens reload
[20:24:03] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[20:24:03] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:24:03] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_12_ForecastSlideshow' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:24:03] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_12_ForecastSlideshow' Executing: (line 16) rename ' <&4><&l>Interakcia' per_player ---------+ 
[20:24:03] [Server thread/INFO]: +> Executing 'RENAME': name=' Interakcia'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:24:03] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_12_ForecastSlideshow' in 0ms. 
[20:24:05] [Server thread/INFO]: PSYCHEER issued server command: /npc assignment --set gertrudaInteract
[20:24:05] [Server thread/INFO]: +> Executing 'Action': Type='On assignment'  npc='n@2 ( GERTRÚDA)'  Script='s@gertrudainteract (ASSIGNMENT)'  Player='p@522bb5a6-0968-48f4-98a4-065fd585244e (PSYCHEER)'   
[20:24:05] [Server thread/INFO]: +- Building action 'On ASSIGNMENT' for n@2 ---------+ 
[20:24:05] [Server thread/INFO]: Starting InstantQueue 'GERTRUDAINTERACT_13_FlowerEye' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:24:05] [Server thread/INFO]: +- Queue 'GERTRUDAINTERACT_13_FlowerEye' Executing: (line 5) trigger name:proximity state:true radius:1 ---------+ 
[20:24:05] [Server thread/INFO]: +> Executing 'TRIGGER': trigger='proximity'  toggle='true'  radius='1'  npc='n@2 ( GERTRÚDA)'   
[20:24:05] [Server thread/INFO]: Completing queue 'GERTRUDAINTERACT_13_FlowerEye' in 1ms. 
[20:24:05] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:24:05] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_14_HonestUnusual' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:24:05] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_14_HonestUnusual' Executing: (line 19) rename ' <&6><&l>GERTRÚDA' per_player ---------+ 
[20:24:05] [Server thread/INFO]: +> Executing 'RENAME': name=' GERTRÚDA'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:24:05] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_14_HonestUnusual' in 1ms. 
[20:24:10] [Server thread/INFO]: PSYCHEER issued server command: /citizens reload
[20:24:10] [Server thread/INFO]: PSYCHEER issued server command: /citizens reload
[20:24:10] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[20:24:12] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:24:12] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_15_GoldenEmail' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:24:12] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_15_GoldenEmail' Executing: (line 16) rename ' <&4><&l>Interakcia' per_player ---------+ 
[20:24:12] [Server thread/INFO]: +> Executing 'RENAME': name=' Interakcia'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:24:12] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_15_GoldenEmail' in 1ms. 
[20:24:13] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:24:13] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_16_MineVer' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:24:13] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_16_MineVer' Executing: (line 19) rename ' <&6><&l>GERTRÚDA' per_player ---------+ 
[20:24:13] [Server thread/INFO]: +> Executing 'RENAME': name=' GERTRÚDA'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:24:13] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_16_MineVer' in 1ms. 
[20:24:31] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:24:31] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_17_ParaguayMovies' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:24:31] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_17_ParaguayMovies' Executing: (line 16) rename ' <&4><&l>Interakcia' per_player ---------+ 
[20:24:31] [Server thread/INFO]: +> Executing 'RENAME': name=' Interakcia'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:24:31] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_17_ParaguayMovies' in 1ms. 
[20:24:32] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:24:32] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_18_AppearingCustomers' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:24:32] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_18_AppearingCustomers' Executing: (line 19) rename ' <&6><&l>GERTRÚDA' per_player ---------+ 
[20:24:32] [Server thread/INFO]: +> Executing 'RENAME': name=' GERTRÚDA'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:24:32] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_18_AppearingCustomers' in 1ms. 
[20:24:34] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:24:34] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_19_ProspectiveSandwich' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:24:34] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_19_ProspectiveSandwich' Executing: (line 16) rename ' <&4><&l>Interakcia' per_player ---------+ 
[20:24:34] [Server thread/INFO]: +> Executing 'RENAME': name=' Interakcia'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:24:34] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_19_ProspectiveSandwich' in 1ms. 
[20:25:10] [Server thread/INFO]: PSYCHEER issued server command: /version
[20:25:13] [Server thread/INFO]: PSYCHEER issued server command: /version Citizens
[20:25:17] [Server thread/INFO]: PSYCHEER issued server command: /version Denizen
[20:25:18] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:25:18] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_20_SmokeConnections' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:25:18] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_20_SmokeConnections' Executing: (line 19) rename ' <&6><&l>GERTRÚDA' per_player ---------+ 
[20:25:18] [Server thread/INFO]: +> Executing 'RENAME': name=' GERTRÚDA'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:25:18] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_20_SmokeConnections' in 1ms. 
[20:25:19] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:25:19] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_21_MonicaEasily' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:25:19] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_21_MonicaEasily' Executing: (line 16) rename ' <&4><&l>Interakcia' per_player ---------+ 
[20:25:19] [Server thread/INFO]: +> Executing 'RENAME': name=' Interakcia'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:25:19] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_21_MonicaEasily' in 1ms. 
[20:25:21] [Server thread/INFO]: PSYCHEER issued server command: /version Sentinel
[20:28:06] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:28:06] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_22_DefinitionsTissue' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:28:06] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_22_DefinitionsTissue' Executing: (line 19) rename ' <&6><&l>GERTRÚDA' per_player ---------+ 
[20:28:06] [Server thread/INFO]: +> Executing 'RENAME': name=' GERTRÚDA'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:28:06] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_22_DefinitionsTissue' in 1ms. 
[20:29:18] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:29:18] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_23_Ph4i1ur3Kyle' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:29:18] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_23_Ph4i1ur3Kyle' Executing: (line 16) rename ' <&4><&l>Interakcia' per_player ---------+ 
[20:29:18] [Server thread/INFO]: +> Executing 'RENAME': name=' Interakcia'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:29:18] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_23_Ph4i1ur3Kyle' in 1ms. 
[20:29:19] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:29:19] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_24_CircuitStripes' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:29:19] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_24_CircuitStripes' Executing: (line 19) rename ' <&6><&l>GERTRÚDA' per_player ---------+ 
[20:29:19] [Server thread/INFO]: +> Executing 'RENAME': name=' GERTRÚDA'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:29:19] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_24_CircuitStripes' in 0ms. 
[20:29:47] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:29:47] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_25_WeddingCow' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:29:47] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_25_WeddingCow' Executing: (line 16) rename ' <&4><&l>Interakcia' per_player ---------+ 
[20:29:47] [Server thread/INFO]: +> Executing 'RENAME': name=' Interakcia'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:29:47] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_25_WeddingCow' in 1ms. 
[20:29:48] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:29:48] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_26_ChevroletMrhonbon' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:29:48] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_26_ChevroletMrhonbon' Executing: (line 19) rename ' <&6><&l>GERTRÚDA' per_player ---------+ 
[20:29:48] [Server thread/INFO]: +> Executing 'RENAME': name=' GERTRÚDA'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:29:48] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_26_ChevroletMrhonbon' in 1ms. 
[20:29:53] [Server thread/INFO]: PSYCHEER issued server command: /citizens reload
[20:29:54] [Server thread/INFO]: PSYCHEER issued server command: /citizens reload
[20:29:54] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[20:30:03] [Server thread/INFO]: +- Parsing PROXIMITY trigger: n@ GERTRÚDA/p@PSYCHEER ---------+ 
[20:30:03] [Server thread/INFO]: Starting InstantQueue 'NPCNAMECHANGE_27_TypeSciences' with player 'PSYCHEER' and NPC '2/ GERTRÚDA'... 
[20:30:03] [Server thread/INFO]: +- Queue 'NPCNAMECHANGE_27_TypeSciences' Executing: (line 16) rename ' <&4><&l>Interakcia' per_player ---------+ 
[20:30:03] [Server thread/INFO]: +> Executing 'RENAME': name=' Interakcia'  targets='li@ (Size 1): n@2 ( GERTRÚDA)'  per_player='true'   
[20:30:03] [Server thread/INFO]: Completing queue 'NPCNAMECHANGE_27_TypeSciences' in 1ms.