Paste #139820: Unnamed Server Log Paste

Date: 2026/04/05 16:09:40 UTC+00:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[18:07:14] [ServerMain/INFO]: [bootstrap] Running Java 25 (OpenJDK 64-Bit Server VM 25.0.2+10-LTS; Eclipse Adoptium Temurin-25.0.2+10) on Linux 6.1.0-41-amd64 (amd64)
[18:07:14] [ServerMain/INFO]: [bootstrap] Loading Paper 26.1.1-20-dev/26.1@d29063d (2026-04-05T04:53:13Z) for Minecraft 26.1.1
[18:07:14] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[18:07:15] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[18:07:15] [ServerMain/INFO]: [PluginInitializerManager] Initialized 38 plugins
[18:07:15] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (2):
 - HuskHomes (4.10), VillagerLobotimizer (1.11.3)
[18:07:15] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (36):
 - Bolt (1.1.85), CMI (9.8.6.0), CMILib (1.5.9.0), Chunky (1.4.40), Citizens (2.0.42-SNAPSHOT (build 4142)), CoreProtect (23.1), CoreProtectFilter (1.0), Denizen (1.3.2-SNAPSHOT (build 7275-DEV)), Depenizen (2.1.1 (build 885)), EffectLib (9.0), FreedomChat (1.7.7), GuestMode (2.1.0), LiteBans (2.18.8), LuckPerms (5.5.42), MapModCompanion (0.10.0), MapSync (0.12), Multiverse-Core (5.6.0), MyCommand (5.7.5), NoteBlockAPI (1.7.0), PlaceholderAPI (2.12.2), PvPToggle (1.7), RC_BetterSync (1.3), RC_BetterTreasure (1.7), RC_EntityCounter (1.3), Shopkeepers (2.26.1-SNAPSHOT+f0c5806f), Vault (1.7.3-b131), ViaBackwards (5.9.0-SNAPSHOT), ViaVersion (5.9.0-SNAPSHOT), VoidGen (2.3.4), Votifier (2.7.3), WorldBorder (1.9.10 (beta)), WorldEdit (7.4.3-SNAPSHOT+7453-e4d410a), WorldGuard (7.0.16+2355-f7fded2), WorldGuardExtraFlags (4.2.4-SNAPSHOT), dDiscordBot (0.7.1 (build 306)), packetevents (2.12.0+a9465b2e1-SNAPSHOT)
[18:07:17] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, profilesHost=https://api.mojang.com, name=PROD]
[18:07:18] [ServerMain/INFO]: Loaded 1515 recipes
[18:07:18] [ServerMain/INFO]: Loaded 1617 advancements
[18:07:18] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Initialising converters for DataConverter...
[18:07:19] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Finished initialising converters for DataConverter in 193.8ms
[18:07:19] [Server thread/INFO]: Starting minecraft server version 26.1.1
[18:07:19] [Server thread/INFO]: Loading properties
[18:07:19] [Server thread/INFO]: This server is running Paper version 26.1.1-20-dev/26.1@d29063d (2026-04-05T04:53:13Z) (Implementing API version 26.1.1.build.20-alpha)
[18:07:19] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[18:07:19] [Server thread/INFO]: Server Ping Player Sample Count: 12
[18:07:19] [Server thread/INFO]: Using 4 threads for Netty based IO
[18:07:19] [Server thread/INFO]: [MoonriseCommon] Paper is using 5 worker threads, 1 I/O threads
[18:07:19] [Server thread/INFO]: Default game type: CREATIVE
[18:07:19] [Server thread/INFO]: Generating keypair
[18:07:19] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25569
[18:07:19] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[18:07:19] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[18:07:19] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 4 libraries... please wait
[18:07:19] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.2/phtree-2.8.2.jar
[18:07:19] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[18:07:19] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.16/fastutil-8.5.16.jar
[18:07:19] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/team/unnamed/mocha/3.0.0/mocha-3.0.0.jar
[18:07:19] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.jar
[18:07:19] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[18:07:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[18:07:19] [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
[18:07:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[18:07:19] [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
[18:07:19] [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
[18:07:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[18:07:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[18:07:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[18:07:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[18:07:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[18:07:20] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.9.0-SNAPSHOT
[18:07:20] [Server thread/INFO]: [ViaVersion] ViaVersion 5.9.0-SNAPSHOT is now loaded. Registering protocol transformers and injecting...
[18:07:20] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading block connection mappings ...
[18:07:20] [Via-Mappingloader-1/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[18:07:20] [Server thread/INFO]: [ViaBackwards] Loading translations...
[18:07:20] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[18:07:20] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.5.42
[18:07:20] [Server thread/INFO]: [LuckPerms] Loading configuration...
[18:07:20] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[18:07:20] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.4.3-SNAPSHOT+7453-e4d410a
[18:07:21] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@38c71c32]
[18:07:21] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.9.0-SNAPSHOT
[18:07:21] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.12.2
[18:07:21] [Server thread/ERROR]: [PlaceholderAPI] Error occurred while trying to read /home/container/plugins/PlaceholderAPI/expansions/MySQL
java.io.FileNotFoundException: plugins/PlaceholderAPI/expansions/MySQL (Is a directory)
    at java.base/java.io.FileInputStream.open0(Native Method) ~[?:?]
    at java.base/java.io.FileInputStream.open(FileInputStream.java:185) ~[?:?]
    at java.base/java.io.FileInputStream.<init>(FileInputStream.java:139) ~[?:?]
    at com.google.common.io.Files$FileByteSource.openStream(Files.java:131) ~[guava-33.5.0-jre.jar:?]
    at com.google.common.io.Files$FileByteSource.read(Files.java:155) ~[guava-33.5.0-jre.jar:?]
    at PlaceholderAPI-2.12.2.jar//me.clip.placeholderapi.util.ExpansionSafetyCheck.runChecks(ExpansionSafetyCheck.java:61) ~[?:?]
    at PlaceholderAPI-2.12.2.jar//me.clip.placeholderapi.PlaceholderAPIPlugin.onLoad(PlaceholderAPIPlugin.java:158) ~[?:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:39) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:553) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:341) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1290) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:304) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at java.base/java.lang.Thread.run(Thread.java:1474) ~[?:?]
[18:07:21] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.3.4
[18:07:21] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.16+2355-f7fded2
[18:07:21] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.12.0+a9465b2e1-SNAPSHOT
[18:07:22] [Server thread/INFO]: [CoreLogging] Loading server plugin Multiverse-Core v5.6.0
[18:07:22] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.42-SNAPSHOT (build 4142)
[18:07:22] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[18:07:22] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.26.1-SNAPSHOT+f0c5806f
[18:07:22] [Server thread/WARN]: [Shopkeepers] Incompatible server version: 26.1.1.build.20-alpha (mappings: 26.1.1, variant: paper)
[18:07:22] [Server thread/WARN]: [Shopkeepers] Shopkeepers is trying to run in 'fallback mode'.
[18:07:22] [Server thread/INFO]: [Shopkeepers] Check for updates at: https://dev.bukkit.org/projects/shopkeepers/
[18:07:22] [Server thread/ERROR]: [Shopkeepers] Failed to enable 'fallback mode'!
java.lang.NoSuchMethodException: net.minecraft.world.entity.Entity.e(boolean)
    at java.base/java.lang.Class.getDeclaredMethod(Class.java:2422) ~[?:?]
    at Shopkeepers-2.26.1-SNAPSHOT.jar//com.nisovin.shopkeepers.compat.FallbackCompatProvider.<init>(FallbackCompatProvider.java:88) ~[?:?]
    at Shopkeepers-2.26.1-SNAPSHOT.jar//com.nisovin.shopkeepers.compat.Compat.load(Compat.java:161) ~[?:?]
    at Shopkeepers-2.26.1-SNAPSHOT.jar//com.nisovin.shopkeepers.SKShopkeepersPlugin.onLoad(SKShopkeepersPlugin.java:244) ~[?:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:39) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:553) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:341) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1290) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:304) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at java.base/java.lang.Thread.run(Thread.java:1474) ~[?:?]
[18:07:22] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.2-SNAPSHOT (build 7275-DEV)
[18:07:22] [Server thread/INFO]: [Effect Library] Loading server plugin EffectLib v9.0
[18:07:22] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.7.0
[18:07:22] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v23.1
[18:07:22] [Server thread/INFO]: [WorldBorder] Loading server plugin WorldBorder v1.9.10 (beta)
[18:07:22] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.9.0
[18:07:22] [Server thread/INFO]: [Depenizen] Loading server plugin Depenizen v2.1.1 (build 885)
[18:07:22] [Server thread/INFO]: [Bolt] Loading server plugin Bolt v1.1.85
[18:07:22] [Server thread/INFO]: [dDiscordBot] Loading server plugin dDiscordBot v0.7.1 (build 306)
[18:07:22] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[18:07:22] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.40
[18:07:22] [Server thread/INFO]: [GuestMode] Loading server plugin GuestMode v2.1.0
[18:07:22] [Server thread/INFO]: [PvPToggle] Loading server plugin PvPToggle v1.7
[18:07:22] [Server thread/INFO]: [VillagerLobotimizer] Loading server plugin VillagerLobotimizer v1.11.3
[18:07:22] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.18.8
[18:07:22] [Server thread/INFO]: [MapSync] Loading server plugin MapSync v0.12
[18:07:22] [Server thread/INFO]: [MapModCompanion] Loading server plugin MapModCompanion v0.10.0
[18:07:22] [Server thread/INFO]: [CoreProtectFilter] Loading server plugin CoreProtectFilter v1.0
[18:07:22] [Server thread/INFO]: [RC_EntityCounter] Loading server plugin RC_EntityCounter v1.3
[18:07:22] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.8.6.0
[18:07:22] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.5
[18:07:22] [Server thread/INFO]: [HuskHomes] Loading server plugin HuskHomes v4.10
[18:07:22] [Server thread/INFO]: [HuskHomes] Registered 'on_load' hooks
[18:07:22] [Server thread/INFO]: [HuskHomes] Successfully loaded HuskHomes v4.10
[18:07:22] [Server thread/INFO]: [RC_BetterSync] Loading server plugin RC_BetterSync v1.3
[18:07:22] [Server thread/INFO]: [RC_BetterTreasure] Loading server plugin RC_BetterTreasure v1.7
[18:07:22] [Server thread/INFO]: [FreedomChat] Loading server plugin FreedomChat v1.7.7
[18:07:22] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[18:07:22] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.5.42
[18:07:22] [Server thread/INFO]:         __    
[18:07:22] [Server thread/INFO]:   |    |__)   LuckPerms v5.5.42
[18:07:22] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[18:07:22] [Server thread/INFO]: 
[18:07:22] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[18:07:22] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[18:07:22] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[18:07:22] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[18:07:23] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[18:07:23] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[18:07:23] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1020ms)
[18:07:23] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[18:07:23] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[18:07:23] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[18:07:23] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[18:07:23] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.4.3-SNAPSHOT+7453-e4d410a
[18:07:23] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[18:07:23] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[18:07:23] [Server thread/WARN]: This version of WorldEdit has not been tested with the current Minecraft version.
While it may work, there might be unexpected issues.
It is recommended to use a version of WorldEdit that supports your Minecraft version.
For more information, see https://worldedit.enginehub.org/en/latest/faq/#bukkit-adapters

[18:07:23] [Server thread/WARN]: This version of WorldEdit has not been tested with the current Minecraft version.
While it may work, there might be unexpected issues.
It is recommended to use a version of WorldEdit that supports your Minecraft version.
For more information, see https://worldedit.enginehub.org/en/latest/faq/#bukkit-adapters

[18:07:23] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v26_1.PaperweightAdapter as the Bukkit adapter
[18:07:24] [Server thread/WARN]: Failed to open snapshotDatabase
java.nio.file.FileSystemException: /home/backup: Read-only file system
    at java.base/sun.nio.fs.UnixException.translateToIOException(UnixException.java:100) ~[?:?]
    at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:106) ~[?:?]
    at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:111) ~[?:?]
    at java.base/sun.nio.fs.UnixFileSystemProvider.createDirectory(UnixFileSystemProvider.java:418) ~[?:?]
    at java.base/java.nio.file.Files.createDirectory(Files.java:647) ~[?:?]
    at java.base/java.nio.file.Files.createAndCheckIsDirectory(Files.java:734) ~[?:?]
    at java.base/java.nio.file.Files.createDirectories(Files.java:720) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.world.snapshot.experimental.fs.FileSystemSnapshotDatabase.maybeCreate(FileSystemSnapshotDatabase.java:87) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.LocalConfiguration.initializeSnapshotConfiguration(LocalConfiguration.java:203) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.util.YAMLConfiguration.load(YAMLConfiguration.java:124) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.bukkit.BukkitConfiguration.load(BukkitConfiguration.java:46) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.setupPreWorldData(WorldEditPlugin.java:195) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.onEnable(WorldEditPlugin.java:168) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-26.1.1.build.20-alpha.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:207) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-26.1.1.build.20-alpha.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:637) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:594) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:342) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1290) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:304) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at java.base/java.lang.Thread.run(Thread.java:1474) ~[?:?]
[18:07:24] [Server thread/WARN]: Failed to create schematics directory
java.nio.file.FileSystemException: /mnt/sdb: Read-only file system
    at java.base/sun.nio.fs.UnixException.translateToIOException(UnixException.java:100) ~[?:?]
    at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:106) ~[?:?]
    at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:111) ~[?:?]
    at java.base/sun.nio.fs.UnixFileSystemProvider.createDirectory(UnixFileSystemProvider.java:418) ~[?:?]
    at java.base/java.nio.file.Files.createDirectory(Files.java:647) ~[?:?]
    at java.base/java.nio.file.Files.createAndCheckIsDirectory(Files.java:734) ~[?:?]
    at java.base/java.nio.file.Files.createDirectories(Files.java:720) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.internal.SchematicsEventListener.onConfigLoad(SchematicsEventListener.java:41) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.util.eventbus.MethodHandleEventHandler.dispatch(MethodHandleEventHandler.java:51) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.util.eventbus.EventHandler.handleEvent(EventHandler.java:73) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.util.eventbus.EventBus.dispatch(EventBus.java:193) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.util.eventbus.EventBus.post(EventBus.java:181) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.setupPreWorldData(WorldEditPlugin.java:196) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.onEnable(WorldEditPlugin.java:168) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-26.1.1.build.20-alpha.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:207) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-26.1.1.build.20-alpha.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:637) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:594) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:342) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1290) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:304) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at java.base/java.lang.Thread.run(Thread.java:1474) ~[?:?]
[18:07:24] [Server thread/ERROR]: Could not dispatch event: com.sk89q.worldedit.event.platform.ConfigurationLoadEvent@682eca67 to handler EventHandler{priority=NORMAL}
java.lang.reflect.InvocationTargetException
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.util.eventbus.EventHandler.handleEvent(EventHandler.java:75) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.util.eventbus.EventBus.dispatch(EventBus.java:193) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.util.eventbus.EventBus.post(EventBus.java:181) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.setupPreWorldData(WorldEditPlugin.java:196) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.onEnable(WorldEditPlugin.java:168) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-26.1.1.build.20-alpha.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:207) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-26.1.1.build.20-alpha.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:637) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:594) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:342) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1290) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:304) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at java.base/java.lang.Thread.run(Thread.java:1474) ~[?:?]
Caused by: java.lang.RuntimeException: Failed to create schematics directory
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.internal.schematic.SchematicsManager.init(SchematicsManager.java:73) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.internal.SchematicsEventListener.onConfigLoad(SchematicsEventListener.java:50) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.util.eventbus.MethodHandleEventHandler.dispatch(MethodHandleEventHandler.java:51) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.util.eventbus.EventHandler.handleEvent(EventHandler.java:73) ~[?:?]
    ... 14 more
Caused by: java.nio.file.FileSystemException: /mnt/sdb: Read-only file system
    at java.base/sun.nio.fs.UnixException.translateToIOException(UnixException.java:100) ~[?:?]
    at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:106) ~[?:?]
    at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:111) ~[?:?]
    at java.base/sun.nio.fs.UnixFileSystemProvider.createDirectory(UnixFileSystemProvider.java:418) ~[?:?]
    at java.base/java.nio.file.Files.createDirectory(Files.java:647) ~[?:?]
    at java.base/java.nio.file.Files.createAndCheckIsDirectory(Files.java:734) ~[?:?]
    at java.base/java.nio.file.Files.createDirectories(Files.java:720) ~[?:?]
    at worldedit-bukkit-7.4.3-SNAPSHOT-dist.jar//com.sk89q.worldedit.internal.schematic.SchematicsManager.init(SchematicsManager.java:63) ~[?:?]
    ... 17 more
[18:07:24] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.3.4
[18:07:24] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[18:07:24] [Server thread/INFO]: [MapSync] Enabling MapSync v0.12
[18:07:24] [Server thread/WARN]: [MapSync] Unbekannte Minecraft-Version 26.1.1.build.20-alpha – versuche 1.17+ Modus.
[18:07:24] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[18:07:24] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[18:07:24] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[18:07:24] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[18:07:24] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[18:07:24] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[18:07:24] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[18:07:24] [Server thread/INFO]: Preparing level "world"
[18:07:24] [Server thread/INFO]: Loading 0 persistent chunks for level 'minecraft:overworld'...
[18:07:24] [Server thread/INFO]: Prepared spawn area in 0 ms
[18:07:24] [Server thread/INFO]: Loading 0 persistent chunks for level 'minecraft:the_nether'...
[18:07:24] [Server thread/INFO]: Prepared spawn area in 0 ms
[18:07:24] [Server thread/INFO]: Done preparing level "world" (0.188s)
[18:07:24] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.9.0-SNAPSHOT
[18:07:24] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 26.1-26.1.1 (775)
[18:07:24] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.9.0-SNAPSHOT
[18:07:24] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.12.2
[18:07:24] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[18:07:24] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.16+2355-f7fded2
[18:07:24] [Server thread/WARN]: [WorldGuard] SQL support for WorldGuard region storage is deprecated for removal in a future version. Please migrate to YAML storage.
[18:07:24] [Server thread/WARN]: [WorldGuard] For details, see https://worldguard.enginehub.org/en/latest/regions/storage/
[18:07:24] [Server thread/INFO]: [WorldGuard] Loading region data...
[18:07:24] [Server thread/INFO]: Database: jdbc:mysql://10.180.10.12/server_developer (MySQL 5.5)
[18:07:24] [Server thread/INFO]: Current version of schema `server_developer`: 2
[18:07:24] [Server thread/INFO]: Schema `server_developer` is up to date. No migration necessary.
[18:07:24] [Server thread/INFO]: [packetevents] Enabling packetevents v2.12.0+a9465b2e1-SNAPSHOT
[18:07:24] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[18:07:24] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v5.6.0
[18:07:24] [packetevents-update-check-thread/INFO]: [packetevents] You are running a development build of PacketEvents. Your build: (2.12.0+a9465b2e1-SNAPSHOT) | Latest release: (2.11.2)
[18:07:24] [packetevents-update-check-thread/WARN]: Exception in thread "packetevents-update-check-thread" java.lang.IllegalArgumentException: Version string must be in the format 'major.minor[.patch][+commit][-SNAPSHOT]', found '26.1.1.build.20' instead
[18:07:24] [packetevents-update-check-thread/WARN]:     at packetevents-spigot-2.12.0-SNAPSHOT.jar//com.github.retrooper.packetevents.util.PEVersion.<init>(PEVersion.java:125)
[18:07:24] [packetevents-update-check-thread/WARN]:     at packetevents-spigot-2.12.0-SNAPSHOT.jar//com.github.retrooper.packetevents.util.PEVersion.fromString(PEVersion.java:142)
[18:07:24] [packetevents-update-check-thread/WARN]:     at packetevents-spigot-2.12.0-SNAPSHOT.jar//io.github.retrooper.packetevents.factory.spigot.SpigotPacketEventsBuilder$1.lambda$init$0(SpigotPacketEventsBuilder.java:162)
[18:07:24] [packetevents-update-check-thread/WARN]:     at packetevents-spigot-2.12.0-SNAPSHOT.jar//com.github.retrooper.packetevents.util.updatechecker.UpdateChecker.lambda$handleUpdateCheck$1(UpdateChecker.java:128)
[18:07:24] [packetevents-update-check-thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1474)
[18:07:24] [Server thread/INFO]: [VoidGen] 
[18:07:24] [Server thread/INFO]: [VoidGen] > ——————————————————————[ world ]——————————————————————
[18:07:24] [Server thread/INFO]: [VoidGen] > 
[18:07:24] [Server thread/INFO]: [VoidGen] > Generator settings have not been set, we will use the default settings:
[18:07:24] [Server thread/INFO]: [VoidGen] > {"biome":"the_void"}
[18:07:24] [Server thread/INFO]: [VoidGen] > 
[18:07:24] [Server thread/INFO]: [VoidGen] > ——————————————————————[ world ]——————————————————————
[18:07:24] [Server thread/INFO]: [VoidGen] 
[18:07:24] [Server thread/INFO]: [VoidGen] 
[18:07:24] [Server thread/INFO]: [VoidGen] > ——————————————————————[ world_lobby_skyblock ]——————————————————————
[18:07:24] [Server thread/INFO]: [VoidGen] > 
[18:07:24] [Server thread/INFO]: [VoidGen] > Generator settings have been loaded:
[18:07:24] [Server thread/INFO]: [VoidGen] > {"biome":"plains","decoration":false,"structures":false}
[18:07:24] [Server thread/INFO]: [VoidGen] > 
[18:07:24] [Server thread/INFO]: [VoidGen] > ——————————————————————[ world_lobby_skyblock ]——————————————————————
[18:07:24] [Server thread/INFO]: [VoidGen] 
[18:07:25] [Server thread/INFO]: Loading 0 persistent chunks for level 'minecraft:world_lobby_skyblock'...
[18:07:25] [Server thread/INFO]: Preparing spawn area: 100%
[18:07:25] [Server thread/INFO]: Prepared spawn area in 1 ms
[18:07:25] [Server thread/INFO]: Loading 0 persistent chunks for level 'minecraft:world_freebuild'...
[18:07:25] [Server thread/INFO]: Preparing spawn area: 100%
[18:07:25] [Server thread/INFO]: Prepared spawn area in 1 ms
[18:07:25] [Server thread/INFO]: Loading 0 persistent chunks for level 'minecraft:world_jc'...
[18:07:25] [Server thread/INFO]: Prepared spawn area in 0 ms
[18:07:25] [Server thread/INFO]: Loading 25 persistent chunks for level 'minecraft:world_creative_halloween'...
[18:07:25] [Server thread/INFO]: Preparing spawn area: 28%
[18:07:25] [Server thread/INFO]: Prepared spawn area in 444 ms
[18:07:25] [Server thread/INFO]: Loading 25 persistent chunks for level 'minecraft:world_lobby_backup'...
[18:07:25] [Server thread/INFO]: Preparing spawn area: 28%
[18:07:25] [Server thread/INFO]: Prepared spawn area in 71 ms
[18:07:25] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world 3DExport: Failure{reason=WORLD_FOLDER_INVALID}
[18:07:25] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world world_the_end: Failure{reason=WORLD_FOLDER_INVALID}
[18:07:25] [Server thread/INFO]: Loading 0 persistent chunks for level 'minecraft:world_lobby_xmas'...
[18:07:25] [Server thread/INFO]: Prepared spawn area in 0 ms
[18:07:25] [Server thread/INFO]: Loading 0 persistent chunks for level 'minecraft:world_lobby'...
[18:07:25] [Server thread/INFO]: Prepared spawn area in 0 ms
[18:07:26] [Server thread/INFO]: Loading 25 persistent chunks for level 'minecraft:world_lobby_birthday'...
[18:07:26] [Server thread/INFO]: Preparing spawn area: 28%
[18:07:26] [Server thread/INFO]: Prepared spawn area in 88 ms
[18:07:26] [Server thread/INFO]: Loading 0 persistent chunks for level 'minecraft:world_lobby_ostern'...
[18:07:26] [Server thread/INFO]: Prepared spawn area in 0 ms
[18:07:26] [Server thread/INFO]: Loading 0 persistent chunks for level 'minecraft:world_lobby_the_end'...
[18:07:26] [Server thread/INFO]: Preparing spawn area: 100%
[18:07:26] [Server thread/INFO]: Prepared spawn area in 1 ms
[18:07:26] [Server thread/INFO]: Loading 0 persistent chunks for level 'minecraft:world_lobby_halloween'...
[18:07:26] [Server thread/INFO]: Prepared spawn area in 0 ms
[18:07:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: multiverse-core [5.6.0]
[18:07:26] [Server thread/INFO]: [Multiverse-Core] API service loaded!
[18:07:26] [Server thread/INFO]: [Multiverse-Core] Version 5.6.0 (API v5.6) Enabled - By dumptruckman, Rigby, fernferret, lithium3141, main--, benwoo1110 and Zax71
[18:07:26] [Server thread/INFO]: [Multiverse-Core] Loving Multiverse-Core? Please consider supporting the project with a small donation: https://github.com/sponsors/Multiverse
[18:07:26] [Server thread/INFO]: [VoidGen] VoidGen hooked into Multiverse!
[18:07:26] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.42-SNAPSHOT (build 4142)
[18:07:26] [Server thread/INFO]: [Citizens] Loaded 2 templates.
[18:07:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizens [1.0.0]
[18:07:26] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[18:07:26] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[18:07:26] [Server thread/INFO]: [Votifier] Loaded token for website: default
[18:07:26] [Server thread/INFO]: [Votifier] ------------------------------------------------------------------------------
[18:07:26] [Server thread/INFO]: [Votifier] Your Votifier port is less than 0, so we assume you do NOT want to start the
[18:07:26] [Server thread/INFO]: [Votifier] votifier port server! Votifier will not listen for votes over any port, and
[18:07:26] [Server thread/INFO]: [Votifier] will only listen for pluginMessaging forwarded votes!
[18:07:26] [Server thread/INFO]: [Votifier] ------------------------------------------------------------------------------
[18:07:26] [Server thread/INFO]: [Votifier] Receiving votes over PluginMessaging channel 'nuvotifier:votes'.
[18:07:26] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.26.1-SNAPSHOT+f0c5806f
[18:07:26] [Server thread/ERROR]: [Shopkeepers] Incompatible server version: Shopkeepers cannot be enabled.
[18:07:26] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.2-SNAPSHOT (build 7275-DEV)
[18:07:26] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1414), impl for Spigot v1.3.2-SNAPSHOT (build 7275-DEV) 
[18:07:26] [Server thread/INFO]: +> [Denizen] Running on java version: 25.0.2 
[18:07:26] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 25. 
[18:07:27] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[18:07:27] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[18:07:27] [Server thread/INFO]: +> [Denizen]  
[18:07:27] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[18:07:27] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[18:07:27] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[18:07:27] [Server thread/INFO]: +> [Denizen] version: 1.3.2-SNAPSHOT (build 7275-DEV) 
[18:07:27] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[18:07:27] [Server thread/INFO]: +> [Denizen] Legacy Spigot name support enabled. This may be unnecessary; see config.yml for more information. 
[18:07:27] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[18:07:27] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[18:07:27] [Server thread/INFO]: +> [Denizen] Loaded 153 core commands and 30 core object types, at 773ms from start. 
[18:07:28] [Server thread/INFO]: +> [ScriptRegistry] Loading 332 script files... 
[18:07:28] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 799ms, processing 38ms. 
[18:07:28] [Server thread/INFO]: +> [Denizen] Final full init took 1881ms. 
[18:07:28] [Server thread/INFO]: [Effect Library] Enabling EffectLib v9.0
[18:07:28] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.7.0
[18:07:28] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v23.1
[18:07:28] [Server thread/INFO]: [net.coreprotect.hikari.HikariDataSource] HikariPool-1 - Starting...
[18:07:28] [Server thread/INFO]: [net.coreprotect.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@59c23d6c
[18:07:28] [Server thread/INFO]: [net.coreprotect.hikari.HikariDataSource] HikariPool-1 - Start completed.
[18:07:28] [Server thread/INFO]: [CoreProtect] CoreProtect Community Edition has been successfully enabled! 
[18:07:28] [Server thread/INFO]: [CoreProtect] Using MySQL for data storage.
[18:07:28] [Server thread/INFO]: --------------------
[18:07:28] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[18:07:28] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[18:07:28] [Server thread/INFO]: --------------------
[18:07:28] [Server thread/INFO]: [WorldBorder] Enabling WorldBorder v1.9.10 (beta)
[18:07:28] [Server thread/INFO]: [WorldBorder] [CONFIG] Using rectangular/square border, knockback of 3.0 blocks, and timer delay of 5.
[18:07:28] [Server thread/INFO]: [WorldBorder] [CONFIG] Border-checking timed task started.
[18:07:28] [Server thread/INFO]: [WorldBorder] [CONFIG] World "world" has border radius 2000 at X: 0.5 Z: 0.5
[18:07:28] [Server thread/INFO]: [WorldBorder] [CONFIG] World "world_new" has border radius 100 at X: 0.0 Z: 0.0
[18:07:28] [Server thread/INFO]: [WorldBorder] [CONFIG] World "world_lobby_history" has border radius 500 at X: 0.0 Z: 0.0
[18:07:28] [Server thread/INFO]: [WorldBorder] [CONFIG] World "world_3D_import" has border radius 50000 at X: 0.5 Z: 0.5
[18:07:28] [Server thread/INFO]: [WorldBorder] [CONFIG] World "world_dropper_Mugomo" has border radius 128 at X: 0.5 Z: 0.5
[18:07:28] [Server thread/INFO]: [WorldBorder] [CONFIG] World "world_dropper_Mitazu" has border radius 128 at X: 0.5 Z: 0.5
[18:07:28] [Server thread/INFO]: [WorldBorder] For reference, the main world's spawn location is at X: 0.0 Y: 65.0 Z: 0.0
[18:07:28] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.9.0
[18:07:28] [Server thread/INFO]: Server version detection by new method: v26_1_1 Legacy: false Mojang Mappings: true
[18:07:28] [Server thread/INFO]: Server version: v26_1_1 - 26.1.1 - paper  26.1.1-20-d29063d (MC: 26.1.1)
[18:07:29] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, profilesHost=https://api.mojang.com, name=PROD]
[18:07:29] [Server thread/INFO]: CMI hooked.
[18:07:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.9.0]
[18:07:29] [Server thread/INFO]: PlaceholderAPI hooked.
[18:07:29] [Server thread/INFO]: Updated (EN) language file. Took 17ms
[18:07:29] [Server thread/INFO]: Updated (DE) language file. Took 9ms
[18:07:29] [Server thread/INFO]: [Depenizen] Enabling Depenizen v2.1.1 (build 885)
[18:07:29] [Server thread/INFO]: +> [Depenizen] Depenizen loading... 
[18:07:29] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'CoreProtect'! 
[18:07:29] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'LuckPerms'! 
[18:07:29] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'WorldEdit'! 
[18:07:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: denizen [2.0.0]
[18:07:29] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'PlaceholderAPI'! 
[18:07:29] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'Votifier'! 
[18:07:29] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'WorldGuard'! 
[18:07:29] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'Shopkeepers'! 
[18:07:29] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'NoteBlockAPI'! 
[18:07:29] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'EffectLib'! 
[18:07:29] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'ViaVersion'! 
[18:07:29] [Server thread/INFO]: +> [Depenizen] Loaded bungee bridge! 
[18:07:29] [Server thread/INFO]: +> [Depenizen] Depenizen loaded! 10 plugin bridge(s) loaded (of 44 available) 
[18:07:29] [Server thread/INFO]: [Bolt] Enabling Bolt v1.1.85
[18:07:29] [pool-101-thread-1/INFO]: Loaded 296 block protections in 4.496 ms
[18:07:29] [pool-101-thread-1/INFO]: Loaded 80 entity protections in 1.046 ms
[18:07:29] [Server thread/INFO]: Loaded 14 localization files in 3.910 ms
[18:07:29] [Server thread/INFO]: [dDiscordBot] Enabling dDiscordBot v0.7.1 (build 306)
[18:07:29] [Server thread/INFO]: +> [DenizenDisco...] dDiscordBot loaded! 
[18:07:29] [Server thread/INFO]: +> [JDA] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". 
[18:07:29] [Server thread/INFO]: +> [JDA] SLF4J: Defaulting to no-operation (NOP) logger implementation 
[18:07:29] [Server thread/INFO]: +> [JDA] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. 
[18:07:29] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[18:07:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[18:07:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[18:07:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[18:07:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[18:07:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[18:07:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[18:07:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[18:07:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[18:07:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[18:07:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[18:07:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[18:07:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[18:07:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[18:07:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[18:07:29] [Server thread/WARN]: [WorldGuardExtraFlags] "WorldGuardExtraFlags v4.2.4-SNAPSHOT" has registered a listener for org.spigotmc.event.player.PlayerSpawnLocationEvent on method "public void net.goldtreeservers.worldguardextraflags.listeners.PlayerListener.onPlayerSpawnLocationEvent(org.spigotmc.event.player.PlayerSpawnLocationEvent)", but the event is Deprecated. "Listening to this event causes the player to be created early. Using the player from this event will result in undefined behavior. Prefer AsyncPlayerSpawnLocationEvent."; please notify the authors [isokissa3].
[18:07:29] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.40
[18:07:29] [Server thread/INFO]: [GuestMode] Enabling GuestMode v2.1.0
[18:07:29] [Server thread/INFO]: [GuestMode v2.1.0] GuestMode is enabled.
[18:07:29] [Server thread/INFO]: [PvPToggle] Enabling PvPToggle v1.7
[18:07:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: PvPToggle [1.7]
[18:07:29] [Server thread/INFO]: [VillagerLobotimizer] Enabling VillagerLobotimizer v1.11.3
[18:07:29] [Server thread/INFO]: [VillagerLobotimizer] Checking for updates...
[18:07:29] [Server thread/INFO]: [VillagerLobotimizer] I'm ready to lobotomize your villagers!
[18:07:29] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.18.8
[18:07:29] [Server thread/INFO]: [LiteBans] Using default database drivers (version:8).
[18:07:29] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[18:07:29] [LiteBans-0/INFO]: [LiteBans] Using system locale (en)
[18:07:29] [Server thread/INFO]: [LiteBans] Loading: mysql 8.0.29
[18:07:29] [Server thread/INFO]: [LiteBans] Connecting to database...
[18:07:30] [Server thread/INFO]: [LiteBans] Connected to MySQL database successfully (63.7 ms).
[18:07:30] [Server thread/INFO]: [LiteBans] Database connection fully initialized (76.2 ms).
[18:07:30] [Server thread/INFO]: [LiteBans] v2.18.8 enabled. Startup took 77 ms.
[18:07:30] [Server thread/INFO]: [MapModCompanion] Enabling MapModCompanion v0.10.0
[18:07:30] [Server thread/ERROR]: [MapModCompanion] Unexpected world: CraftWorld{name=world_lobby_skyblock}
[18:07:30] [Server thread/ERROR]: [MapModCompanion] For every world plugin will now send their unique IDs
[18:07:30] [Server thread/INFO]: [MapModCompanion] ProtocolLib handler will not be available (missing dependency)
[18:07:30] [Server thread/INFO]: [MapModCompanion] world_id handler will not be available (couldn't register incoming plugin channel: world_id (can be safely ignored on 1.13+))
[18:07:30] [Server thread/INFO]: [CoreProtectFilter] Enabling CoreProtectFilter v1.0
[18:07:30] [Server thread/INFO]: [CoreProtectFilter] === CoreProtectFilter v1.0 Start ===
[18:07:30] [Server thread/INFO]: [CoreProtectFilter] Verbinde mit MySQL-Datenbank 10.180.10.12:3306/www...
[18:07:30] [Server thread/INFO]: [CoreProtectFilter] MySQL-Verbindung erfolgreich hergestellt.
[18:07:30] [Server thread/INFO]: [CoreProtectFilter] 462 Farmzonen aus Datenbank geladen.
[18:07:30] [Server thread/INFO]: [CoreProtectFilter] Plugin erfolgreich geladen!
[18:07:30] [Server thread/INFO]: [RC_EntityCounter] Enabling RC_EntityCounter v1.3
[18:07:30] [Server thread/INFO]: [CMI] Enabling CMI v9.8.6.0
[18:07:30] [Server thread/INFO]: _______________________________________________________
[18:07:30] [Server thread/INFO]:  
[18:07:30] [Server thread/INFO]:  ██████╗███╗   ███╗██╗
[18:07:30] [Server thread/INFO]: ██╔════╝████╗ ████║██║
[18:07:30] [Server thread/INFO]: ██║     ██╔████╔██║██║
[18:07:30] [Server thread/INFO]: ██║     ██║╚██╔╝██║██║
[18:07:30] [Server thread/INFO]: ╚██████╗██║ ╚═╝ ██║██║
[18:07:30] [Server thread/INFO]:  ╚═════╝╚═╝     ╚═╝╚═╝
[18:07:30] [Server thread/INFO]: _______________________________________________________
[18:07:30] [Server thread/INFO]: Integrating PaperSpigot async methods
[18:07:30] [Server thread/INFO]: Vault found. (Loaded: true)
[18:07:30] [Server thread/INFO]: Citizens found. (Loaded: true)
[18:07:30] [CMI-Thread-1/INFO]: Loaded (-) locale download into memory. Took 3ms
[18:07:30] [Server thread/INFO]: Loaded (69) 63 Enabled and 6 Disabled modules into memory. Took 30ms
[18:07:30] [Server thread/INFO]: Votifier found. (Loaded: true)
[18:07:30] [Server thread/INFO]: Loaded (3) portals into memory. Took 13ms
[18:07:30] [Server thread/INFO]: Initialized Cipher256 AES
[18:07:30] [Server thread/INFO]: Loaded (61) regular alias into memory. Took 18ms
[18:07:30] [CMI-Thread-2/INFO]: Loaded (27) custom text's into memory. Took 2ms
[18:07:30] [Server thread/INFO]: (RandomTeleportation) Can't find world with (world_lobby_geburtstag) name
[18:07:30] [Server thread/INFO]: (RandomTeleportation) Can't find world with (piano) name
[18:07:30] [Server thread/INFO]: (RandomTeleportation) Can't find world with (world_the_end) name
[18:07:30] [Server thread/INFO]: (RandomTeleportation) Can't find world with (worldedit_Ikuria) name
[18:07:30] [Server thread/INFO]: (RandomTeleportation) Can't find world with (world_lobby_aprilfucked) name
[18:07:30] [Server thread/INFO]: (RandomTeleportation) Can't find world with (3DExport) name
[18:07:30] [Server thread/INFO]: (RandomTeleportation) Can't find world with (world_test) name
[18:07:30] [Server thread/INFO]: (RandomTeleportation) Can't find world with (ikuria) name
[18:07:30] [Server thread/INFO]: SQLite 3.49.1 data base type detected
[18:07:30] [Server thread/INFO]: Loaded (-) SqLite into memory. Took 66ms
[18:07:30] [Server thread/INFO]: [CMI] Vault was found but economy engine is missing. Use one from list provided in https://dev.bukkit.org/bukkit-plugins/vault/
[18:07:30] [Server thread/INFO]: [CMI] Alternatively you can enable CMI economy in config.yml file
[18:07:30] [Server thread/INFO]: Vault was found but not economy plugin, you will have limited economy support
[18:07:30] [Server thread/INFO]: Will attempt secondary economy check after server starts.
[18:07:30] [Server thread/INFO]: Loaded (5) warning categories into memory. Took 1ms
[18:07:30] [Server thread/INFO]: Loaded (3) warning commands into memory. Took 0ms
[18:07:30] [Server thread/INFO]: Loaded (0) cooldowns into memory. Took 0ms
[18:07:30] [Server thread/INFO]: Loaded (158) custom mob heads into memory. Took 8ms
[18:07:30] [Folia Async Scheduler Thread #0/INFO]: [VillagerLobotimizer] A new version of VillagerLobotomizer is available! (1.14.1)
[18:07:30] [Folia Async Scheduler Thread #0/INFO]: [VillagerLobotimizer] You can download it here: https://modrinth.com/plugin/villagerlobotomy
[18:07:30] [Server thread/INFO]: Enabling BungeeCord Support
[18:07:30] [Server thread/INFO]: Initializing BungeeCord
[18:07:30] [Server thread/INFO]: Loaded (5) kits into memory. Took 5ms
[18:07:30] [Server thread/INFO]: Loaded (3) dialogs into memory. Took 3ms
[18:07:30] [Server thread/INFO]: Loaded (7) ranks into memory. Took 4ms
[18:07:30] [Server thread/INFO]: Loaded (8) playtime rewards into memory. Took 1ms
[18:07:30] [Server thread/INFO]: Loaded (1) jails into memory. Took 1ms
[18:07:30] [Server thread/INFO]: Executed Player DB querry in 0ms
[18:07:30] [Server thread/INFO]: Loaded (27) player data into memory. Took 9ms
[18:07:30] [Server thread/INFO]: Loaded (0) playtime records into memory. Took 0ms
[18:07:30] [Server thread/INFO]: Loaded (0) playtime reward records into memory. Took 0ms
[18:07:30] [Server thread/INFO]: Loaded (6) custom alias into memory. Took 1ms
[18:07:31] [Server thread/INFO]: Loaded (55) interactive commands into memory. Took 3ms
[18:07:31] [Server thread/INFO]: Loaded (-) Registered events into memory. Took 59ms
[18:07:31] [Server thread/INFO]: Loaded (0) event action commands into memory. Took 1ms
[18:07:31] [Server thread/INFO]: Loaded (EN) language file into memory. Took 53ms
[18:07:31] [Server thread/INFO]: Loaded (DE) language file into memory. Took 42ms
[18:07:31] [Server thread/INFO]: Can't load worth value for LEGACY_RAW_FISH
[18:07:31] [Server thread/INFO]: Loaded (244) worth values into memory. Took 10ms
[18:07:31] [Server thread/INFO]: VaultPermissions found. (Loaded: true)
[18:07:31] [Server thread/INFO]: PlaceholderAPI found. (Loaded: true)
[18:07:31] [Server thread/INFO]: Loaded (5) schedules into memory. Took 2ms
[18:07:31] [Server thread/INFO]: Loaded (-) GeoLiteCity into memory. Took 2ms
[18:07:31] [Server thread/INFO]: Loaded (4) Server links into memory. Took 1ms
[18:07:31] [Server thread/INFO]: Loaded (0) skin cache entries into memory. Took 0ms
[18:07:31] [Server thread/INFO]: [CMI] Preloading playtimetop statistics
[18:07:31] [Server thread/INFO]: Loaded (1) ArmorStand templates into memory. Took 1ms
[18:07:31] [Server thread/INFO]: Version 9.8.6.0 has been enabled
[18:07:31] [Server thread/INFO]: _______________________________________________________
[18:07:31] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.5
[18:07:31] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.5*-=-=-=-=-=-=-=-=-=-*
[18:07:31] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[18:07:31] [Server thread/INFO]: | Command file(s) found : 1
[18:07:31] [Server thread/INFO]: | Config : Ready.
[18:07:31] [Server thread/INFO]: | ProtocolLib not found..
[18:07:31] [Server thread/INFO]: | 1 extra listeners activated
[18:07:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[18:07:31] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[18:07:31] [Server thread/INFO]: | Custom commands loaded : 4
[18:07:31] [Server thread/INFO]: | 0 (custom) commands in cooldown added.
[18:07:31] [Server thread/INFO]: | Using MySQL database for PlayerData storage.
[18:07:31] [Server thread/INFO]: | Connecting to database (MySQL) ...
[18:07:31] [Server thread/INFO]: | Connected.
[18:07:31] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[18:07:31] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[18:07:31] [Server thread/INFO]: [HuskHomes] Enabling HuskHomes v4.10
[18:07:31] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.HikariDataSource] HuskHomesHikariPool - Starting...
[18:07:31] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.pool.HikariPool] HuskHomesHikariPool - Added connection com.mysql.cj.jdbc.ConnectionImpl@5e76324a
[18:07:31] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.HikariDataSource] HuskHomesHikariPool - Start completed.
[18:07:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: huskhomes [4.10]
[18:07:31] [Server thread/INFO]: [HuskHomes] Registered 'on_enable' hooks
[18:07:31] [Server thread/INFO]: [HuskHomes] Successfully enabled HuskHomes v4.10
[18:07:31] [Server thread/INFO]: [RC_BetterSync] Enabling RC_BetterSync v1.3
[18:07:31] [Server thread/INFO]: [RC_BetterTreasure] Enabling RC_BetterTreasure v1.7
[18:07:31] [Server thread/INFO]: [FreedomChat] Enabling FreedomChat v1.7.7
[18:07:31] [Server thread/WARN]: [FreedomChat] This version of FreedomChat only supports protocol version 774 (1.21.11). Please use the appropriate version of FreedomChat for your server
[18:07:31] [Server thread/WARN]: [FreedomChat] If you know what you are doing, set the im.evan.freedomchat.bypassprotocolcheck system property to true to bypass this check
[18:07:31] [Server thread/INFO]: [FreedomChat] Disabling FreedomChat v1.7.7
[18:07:31] [Server thread/INFO]: [spark] Starting background profiler...
[18:07:31] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[18:07:31] [Server thread/INFO]: Starting GS4 status listener
[18:07:31] [Server thread/INFO]: Thread Query Listener started
[18:07:31] [Server thread/INFO]: Starting remote control listener
[18:07:31] [Server thread/INFO]: Thread RCON Listener started
[18:07:31] [Query Listener #1/INFO]: Query running on 0.0.0.0:25569
[18:07:31] [Server thread/INFO]: RCON running on 0.0.0.0:25579
[18:07:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[18:07:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether
[18:07:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:world_lobby_skyblock
[18:07:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:world_freebuild
[18:07:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:world_jc
[18:07:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:world_creative_halloween
[18:07:32] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:world_lobby_backup
[18:07:32] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:world_lobby_xmas
[18:07:32] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:world_lobby
[18:07:32] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:world_lobby_birthday
[18:07:32] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:world_lobby_ostern
[18:07:32] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:world_lobby_the_end
[18:07:32] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:world_lobby_halloween
[18:07:32] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[18:07:32] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[18:07:32] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_lobby_skyblock): All chunks are saved
[18:07:32] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_freebuild): All chunks are saved
[18:07:32] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_jc): All chunks are saved
[18:07:32] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_creative_halloween): All chunks are saved
[18:07:32] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_lobby_backup): All chunks are saved
[18:07:32] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_lobby_xmas): All chunks are saved
[18:07:32] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_lobby): All chunks are saved
[18:07:32] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_lobby_birthday): All chunks are saved
[18:07:32] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_lobby_ostern): All chunks are saved
[18:07:32] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_lobby_the_end): All chunks are saved
[18:07:32] [Server thread/INFO]: ThreadedAnvilChunkStorage (world_lobby_halloween): All chunks are saved
[18:07:32] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[18:07:32] [Server thread/INFO]: Running delayed init tasks
[18:07:32] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[18:07:32] [Server thread/INFO]: [CMI] Permission plugin: LuckPerms5.5.42
[18:07:32] [Server thread/INFO]: [CMI] Vault was found but economy engine is missing. Use one from list provided in https://dev.bukkit.org/bukkit-plugins/vault/
[18:07:32] [Server thread/INFO]: [CMI] Alternatively you can enable CMI economy in config.yml file
[18:07:32] [Server thread/INFO]: [CMI] Vault was found but not economy plugin, you will have limited economy support
[18:07:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [9.8.6.0]
[18:07:32] [Server thread/INFO]: [CMI] PlaceholderAPI hooked.
[18:07:32] [Craft Scheduler Thread - 2 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 104{dev_pyra, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 104{dev_pyra, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 221{dev_canra, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 221{dev_canra, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Stored 229{Aryl, PLAYER} for respawn from NPCNeedsRespawnEvent
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 277{dev_nu_allay, ALLAY} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 277{dev_nu_allay, ALLAY} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 276{, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 276{, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 603{EinradStevo, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 603{EinradStevo, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 607{&cspIDy, SPIDER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 607{&cspIDy, SPIDER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 619{ZweiradStevo, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 619{ZweiradStevo, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 621{halloween_ghost, PHANTOM} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 621{halloween_ghost, PHANTOM} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 622{ghost2, PHANTOM} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 622{ghost2, PHANTOM} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 626{schneeball, STRIDER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 626{schneeball, STRIDER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 630{xmas_ballwichtel, HUSK} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 630{xmas_ballwichtel, HUSK} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 629{Wolfgang, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 629{Wolfgang, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 631{dev_jona, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 631{dev_jona, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 635{dev_shox, FOX} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 635{dev_shox, FOX} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 637{dev_ari, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 637{dev_ari, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 639{dev_kargas, ILLUSIONER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 639{dev_kargas, ILLUSIONER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 647{dev_melloc, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 647{dev_melloc, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 648{&6Bank, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 648{&6Bank, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 664{&6Farmer, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 664{&6Farmer, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 665{Technik, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 665{Technik, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 670{&7ᴅɪᴇ ᴢᴇɪᴛᴇɴᴡᴀᴄʜᴇ, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 670{&7ᴅɪᴇ ᴢᴇɪᴛᴇɴᴡᴀᴄʜᴇ, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 678{Ikuria, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 678{Ikuria, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 682{NPC Name, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 682{NPC Name, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 728{wds_position_mount, ARMOR_STAND} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 728{wds_position_mount, ARMOR_STAND} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 739{||||||||||||||||||||, PUFFERFISH} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 739{||||||||||||||||||||, PUFFERFISH} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 758{EinradStevo, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 758{EinradStevo, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 759{Cean, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 759{Cean, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 764{xmas_rilana, FOX} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 764{xmas_rilana, FOX} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 774{Sassi89, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 774{Sassi89, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 783{ball, ARMADILLO} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 783{ball, ARMADILLO} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 784{Arno, RABBIT} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 784{Arno, RABBIT} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 785{freebuild_wyla, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 785{freebuild_wyla, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 787{kerm_sit, ARMOR_STAND} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 787{kerm_sit, ARMOR_STAND} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 786{test, FROG} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 786{test, FROG} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 790{loops_test, PLAYER} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 790{loops_test, PLAYER} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 796{Unut, RABBIT} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 796{Unut, RABBIT} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Removing respawns of 798{&cGokor, CREAKING} due to SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Spawned 798{&cGokor, CREAKING} SpawnReason.RESPAWN
[18:07:32] [Server thread/INFO]: [Citizens] Loaded 42 NPCs.
[18:07:32] [Server thread/INFO]: +> [ScriptEvent] Processed 702 script event paths. 
[18:07:32] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[18:07:32] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2026/04/05 18:07:26 
[18:07:32] [Server thread/INFO]: [ViaVersion] You are running a development version of the plugin, please report any bugs to GitHub.
[18:07:33] [Server thread/INFO]: Done (18.716s)! For help, type "help"
[18:07:33] [Server thread/INFO]: +> [JDA] SLF4J: Failed to load class "org.slf4j.impl.StaticMDCBinder". 
[18:07:33] [Server thread/INFO]: +> [JDA] SLF4J: Defaulting to no-operation MDCAdapter implementation. 
[18:07:33] [Server thread/INFO]: +> [JDA] SLF4J: See http://www.slf4j.org/codes.html#no_static_mdc_binder for further details. 
[18:07:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: rng [1.4.0]
[18:07:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: changeoutput [1.2.2]
[18:07:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [3.0.8]
[18:07:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldborder [1.2.1]
[18:07:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [2.3]
[18:07:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[18:07:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[18:07:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: objective [4.2.0]
[18:07:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[18:07:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[18:07:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[18:07:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: formatter [2.7.0]
[18:07:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: MySQL [1.3.2]
[18:07:33] [Server thread/INFO]: 13 placeholder hook(s) registered! 3 placeholder hook(s) have an update available.
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [55,6] due to org.bukkit.event.world.EntitiesUnloadEvent@3af36dbe at [55,6]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 785{freebuild_wyla, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 785{freebuild_wyla, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 785{freebuild_wyla, PLAYER} due to chunk unload at [55,6]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [6,-7] due to org.bukkit.event.world.EntitiesUnloadEvent@1c22031c at [6,-7]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 798{&cGokor, CREAKING} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 798{&cGokor, CREAKING} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 798{&cGokor, CREAKING} due to chunk unload at [6,-7]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [4,-3] due to org.bukkit.event.world.EntitiesUnloadEvent@7b141f67 at [4,-3]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 796{Unut, RABBIT} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 796{Unut, RABBIT} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 796{Unut, RABBIT} due to chunk unload at [4,-3]
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 0{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 0{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 1{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 1{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 2{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 2{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 3{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 3{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 4{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 4{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 5{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 5{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 6{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 6{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 7{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 7{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 8{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 8{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 9{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 9{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 10{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 10{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 11{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 11{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 12{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 12{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 13{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 13{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 14{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 14{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 15{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 15{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 16{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 16{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 17{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 17{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 18{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 18{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Removing respawns of 19{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Spawned 19{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [5,-5] due to org.bukkit.event.world.EntitiesUnloadEvent@70167bc6 at [5,-5]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 790{loops_test, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 790{loops_test, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 790{loops_test, PLAYER} due to chunk unload at [5,-5]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [3,38] due to org.bukkit.event.world.EntitiesUnloadEvent@173670b at [3,38]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 759{Cean, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 12{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 12{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 759{Cean, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 759{Cean, PLAYER} due to chunk unload at [3,38]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 12{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 12{, null} due to chunk unload at [3,38]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [26,15] due to org.bukkit.event.world.EntitiesUnloadEvent@2be85fdf at [26,15]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 607{&cspIDy, SPIDER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 17{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 17{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 607{&cspIDy, SPIDER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 607{&cspIDy, SPIDER} due to chunk unload at [26,15]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 17{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 17{, null} due to chunk unload at [26,15]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [27,16] due to org.bukkit.event.world.EntitiesUnloadEvent@31b92e96 at [27,16]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 603{EinradStevo, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 603{EinradStevo, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 603{EinradStevo, PLAYER} due to chunk unload at [27,16]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-2,-1] due to org.bukkit.event.world.EntitiesUnloadEvent@5597d22c at [-2,-1]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 637{dev_ari, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 5{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 5{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 637{dev_ari, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 637{dev_ari, PLAYER} due to chunk unload at [-2,-1]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 5{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 5{, null} due to chunk unload at [-2,-1]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-2,-5] due to org.bukkit.event.world.EntitiesUnloadEvent@57592da4 at [-2,-5]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 682{NPC Name, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 10{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 10{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 682{NPC Name, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 682{NPC Name, PLAYER} due to chunk unload at [-2,-5]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 10{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 10{, null} due to chunk unload at [-2,-5]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-9,-3] due to org.bukkit.event.world.EntitiesUnloadEvent@1f54e7fa at [-9,-3]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 783{ball, ARMADILLO} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 783{ball, ARMADILLO} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 783{ball, ARMADILLO} due to chunk unload at [-9,-3]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-11,-3] due to org.bukkit.event.world.EntitiesUnloadEvent@649bd0b3 at [-11,-3]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 764{xmas_rilana, FOX} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 764{xmas_rilana, FOX} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 764{xmas_rilana, FOX} due to chunk unload at [-11,-3]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-16,-1] due to org.bukkit.event.world.EntitiesUnloadEvent@2201234a at [-16,-1]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 670{&7ᴅɪᴇ ᴢᴇɪᴛᴇɴᴡᴀᴄʜᴇ, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 9{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 9{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 8{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 8{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 670{&7ᴅɪᴇ ᴢᴇɪᴛᴇɴᴡᴀᴄʜᴇ, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 670{&7ᴅɪᴇ ᴢᴇɪᴛᴇɴᴡᴀᴄʜᴇ, PLAYER} due to chunk unload at [-16,-1]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 8{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 8{, null} due to chunk unload at [-16,-1]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 9{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 9{, null} due to chunk unload at [-16,-1]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-3,0] due to org.bukkit.event.world.EntitiesUnloadEvent@6a5cf434 at [-3,0]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 647{dev_melloc, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 6{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 6{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 647{dev_melloc, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 647{dev_melloc, PLAYER} due to chunk unload at [-3,0]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 758{EinradStevo, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 11{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 11{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 758{EinradStevo, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 758{EinradStevo, PLAYER} due to chunk unload at [-3,0]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 6{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 6{, null} due to chunk unload at [-3,0]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 11{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 11{, null} due to chunk unload at [-3,0]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-2,0] due to org.bukkit.event.world.EntitiesUnloadEvent@7cb6c67d at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 104{dev_pyra, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 104{dev_pyra, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 104{dev_pyra, PLAYER} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 221{dev_canra, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 221{dev_canra, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 221{dev_canra, PLAYER} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 277{dev_nu_allay, ALLAY} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 14{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 14{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 277{dev_nu_allay, ALLAY} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 277{dev_nu_allay, ALLAY} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 276{, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 2{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 2{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 276{, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 276{, PLAYER} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 631{dev_jona, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 4{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 4{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 631{dev_jona, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 631{dev_jona, PLAYER} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 635{dev_shox, FOX} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 15{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 15{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 635{dev_shox, FOX} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 635{dev_shox, FOX} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 639{dev_kargas, ILLUSIONER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 16{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 16{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 639{dev_kargas, ILLUSIONER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 639{dev_kargas, ILLUSIONER} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 648{&6Bank, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 7{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 7{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 648{&6Bank, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 648{&6Bank, PLAYER} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 0{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 0{, null} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 1{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 1{, null} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 2{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 2{, null} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 4{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 4{, null} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 7{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 7{, null} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 14{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 14{, null} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 15{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 15{, null} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 16{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 16{, null} due to chunk unload at [-2,0]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-1,0] due to org.bukkit.event.world.EntitiesUnloadEvent@1f7949e8 at [-1,0]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 678{Ikuria, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 678{Ikuria, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 678{Ikuria, PLAYER} due to chunk unload at [-1,0]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-2,2] due to org.bukkit.event.world.EntitiesUnloadEvent@3aba1df0 at [-2,2]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 787{kerm_sit, ARMOR_STAND} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 787{kerm_sit, ARMOR_STAND} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 787{kerm_sit, ARMOR_STAND} due to chunk unload at [-2,2]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 786{test, FROG} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 786{test, FROG} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 786{test, FROG} due to chunk unload at [-2,2]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-4,2] due to org.bukkit.event.world.EntitiesUnloadEvent@70f5b1f4 at [-4,2]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 728{wds_position_mount, ARMOR_STAND} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 728{wds_position_mount, ARMOR_STAND} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 728{wds_position_mount, ARMOR_STAND} due to chunk unload at [-4,2]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 739{||||||||||||||||||||, PUFFERFISH} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 18{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 18{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 739{||||||||||||||||||||, PUFFERFISH} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 739{||||||||||||||||||||, PUFFERFISH} due to chunk unload at [-4,2]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 18{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 18{, null} due to chunk unload at [-4,2]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [15,-1] due to org.bukkit.event.world.EntitiesUnloadEvent@2d371a19 at [15,-1]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 619{ZweiradStevo, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 3{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 3{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 619{ZweiradStevo, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 619{ZweiradStevo, PLAYER} due to chunk unload at [15,-1]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 3{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 3{, null} due to chunk unload at [15,-1]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [6,-12] due to org.bukkit.event.world.EntitiesUnloadEvent@78d4305e at [6,-12]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 630{xmas_ballwichtel, HUSK} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 630{xmas_ballwichtel, HUSK} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 630{xmas_ballwichtel, HUSK} due to chunk unload at [6,-12]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [1,-8] due to org.bukkit.event.world.EntitiesUnloadEvent@126bf729 at [1,-8]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 774{Sassi89, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 13{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 13{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 774{Sassi89, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 774{Sassi89, PLAYER} due to chunk unload at [1,-8]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 13{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 13{, null} due to chunk unload at [1,-8]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [20,-27] due to org.bukkit.event.world.EntitiesUnloadEvent@4f4c8e81 at [20,-27]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 621{halloween_ghost, PHANTOM} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 621{halloween_ghost, PHANTOM} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 621{halloween_ghost, PHANTOM} due to chunk unload at [20,-27]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 622{ghost2, PHANTOM} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 622{ghost2, PHANTOM} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 622{ghost2, PHANTOM} due to chunk unload at [20,-27]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [3,-9] due to org.bukkit.event.world.EntitiesUnloadEvent@5abea2a3 at [3,-9]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 784{Arno, RABBIT} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Preventing further respawns of 19{, null} due to DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 19{, null} DespawnReason.REMOVAL
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 784{Arno, RABBIT} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 784{Arno, RABBIT} due to chunk unload at [3,-9]
[18:07:33] [Server thread/INFO]: [Citizens] Tried to despawn 19{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 19{, null} due to chunk unload at [3,-9]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [0,-15] due to org.bukkit.event.world.EntitiesUnloadEvent@3312f6a at [0,-15]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 629{Wolfgang, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 629{Wolfgang, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 629{Wolfgang, PLAYER} due to chunk unload at [0,-15]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [6,-13] due to org.bukkit.event.world.EntitiesUnloadEvent@4e2e429a at [6,-13]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 626{schneeball, STRIDER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 626{schneeball, STRIDER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 626{schneeball, STRIDER} due to chunk unload at [6,-13]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-3,-9] due to org.bukkit.event.world.EntitiesUnloadEvent@65bde558 at [-3,-9]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 665{Technik, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 665{Technik, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 665{Technik, PLAYER} due to chunk unload at [-3,-9]
[18:07:33] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-3,-10] due to org.bukkit.event.world.EntitiesUnloadEvent@4a39f8f6 at [-3,-10]
[18:07:33] [Server thread/INFO]: [Citizens] Removing 664{&6Farmer, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 664{&6Farmer, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:07:33] [Server thread/INFO]: [Citizens] Despawned 664{&6Farmer, PLAYER} due to chunk unload at [-3,-10]
[18:07:33] [Server thread/INFO]: +> [JDA] [pool-108-thread-1] INFO JDA - Login Successful! 
[18:07:33] [Server thread/INFO]: +> [JDA] [JDA MainWS-WriteThread] INFO WebSocketClient - Connected to WebSocket 
[18:07:34] [Craft Scheduler Thread - 12 - Citizens/INFO]: [Citizens] Profile lookup for player 'loops_test' failed: Server did not find the requested profile
[18:07:34] [Craft Scheduler Thread - 12 - Citizens/INFO]: [Citizens] com.mojang.authlib.yggdrasil.ProfileNotFoundException: Server did not find the requested profile
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:81)
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:37)
    at Citizens-2.0.42-b4142.jar//net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:207)
    at Citizens-2.0.42-b4142.jar//net.citizensnpcs.npc.skin.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:133)
    at Citizens-2.0.42-b4142.jar//net.citizensnpcs.npc.skin.profile.ProfileFetchThread.run(ProfileFetchThread.java:221)
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1090)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:614)
    at java.base/java.lang.Thread.run(Thread.java:1474)

[18:07:34] [Craft Scheduler Thread - 12 - Citizens/INFO]: [Citizens] Profile lookup for player 'dev_melloc' failed: Server did not find the requested profile
[18:07:34] [Craft Scheduler Thread - 12 - Citizens/INFO]: [Citizens] com.mojang.authlib.yggdrasil.ProfileNotFoundException: Server did not find the requested profile
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:81)
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:37)
    at Citizens-2.0.42-b4142.jar//net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:207)
    at Citizens-2.0.42-b4142.jar//net.citizensnpcs.npc.skin.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:133)
    at Citizens-2.0.42-b4142.jar//net.citizensnpcs.npc.skin.profile.ProfileFetchThread.run(ProfileFetchThread.java:221)
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1090)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:614)
    at java.base/java.lang.Thread.run(Thread.java:1474)

[18:07:34] [Craft Scheduler Thread - 12 - Citizens/INFO]: [Citizens] Profile lookup for player 'npc name' failed: Server did not find the requested profile
[18:07:34] [Craft Scheduler Thread - 12 - Citizens/INFO]: [Citizens] com.mojang.authlib.yggdrasil.ProfileNotFoundException: Server did not find the requested profile
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:81)
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:37)
    at Citizens-2.0.42-b4142.jar//net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:207)
    at Citizens-2.0.42-b4142.jar//net.citizensnpcs.npc.skin.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:133)
    at Citizens-2.0.42-b4142.jar//net.citizensnpcs.npc.skin.profile.ProfileFetchThread.run(ProfileFetchThread.java:221)
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1090)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:614)
    at java.base/java.lang.Thread.run(Thread.java:1474)

[18:07:34] [Server thread/INFO]: +> [BungeeClient...] Depenizen now connected to Bungee server. 
[18:07:34] [Server thread/INFO]: +> [JDA] [JDA MainWS-ReadThread] INFO JDA - Finished Loading! 
[18:07:38] [Craft Scheduler Thread - 12 - HuskHomes/INFO]: [HuskHomes] Registered 'after_load' hooks
[18:07:42] [Craft Scheduler Thread - 12 - LiteBans/INFO]: [LiteBans] [Sync] Cached 12000 offline users for tab completion in 929 ms. Memory used: 101636 bytes (reduced 22% from 129690 bytes)
[18:07:53] [Server thread/INFO]: [MyCmd] Checking MySql Connection
[18:08:58] [User Authenticator #0/INFO]: UUID of player Ikuria is 52fbda8d-a9d8-4250-bd5e-bd29c34fa015
[18:08:59] [Server thread/INFO]: [HorriblePlayerLoginEventHack] You have plugins listening to the PlayerLoginEvent, this will cause re-configuration APIs to be unavailable: [LuckPerms, Denizen, CMI, WorldGuard]
[18:08:59] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-3,0] due to org.bukkit.event.world.ChunkLoadEvent@2b88ad02 at [-3,0]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 647{dev_melloc, PLAYER} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 647{dev_melloc, PLAYER} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 647{dev_melloc, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@2b88ad02 at [-3,0]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 758{EinradStevo, PLAYER} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 758{EinradStevo, PLAYER} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 758{EinradStevo, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@2b88ad02 at [-3,0]
[18:08:59] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 6{, null}
[18:08:59] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 11{, null}
[18:08:59] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-2,-1] due to org.bukkit.event.world.ChunkLoadEvent@6f9bd17 at [-2,-1]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 637{dev_ari, PLAYER} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 637{dev_ari, PLAYER} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 637{dev_ari, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@6f9bd17 at [-2,-1]
[18:08:59] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 5{, null}
[18:08:59] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-2,0] due to org.bukkit.event.world.ChunkLoadEvent@58789a3f at [-2,0]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 104{dev_pyra, PLAYER} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 104{dev_pyra, PLAYER} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 104{dev_pyra, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@58789a3f at [-2,0]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 221{dev_canra, PLAYER} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 221{dev_canra, PLAYER} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 221{dev_canra, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@58789a3f at [-2,0]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 277{dev_nu_allay, ALLAY} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 277{dev_nu_allay, ALLAY} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 277{dev_nu_allay, ALLAY} during org.bukkit.event.world.ChunkLoadEvent@58789a3f at [-2,0]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 276{, PLAYER} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 276{, PLAYER} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 276{, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@58789a3f at [-2,0]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 631{dev_jona, PLAYER} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 631{dev_jona, PLAYER} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 631{dev_jona, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@58789a3f at [-2,0]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 635{dev_shox, FOX} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 635{dev_shox, FOX} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 635{dev_shox, FOX} during org.bukkit.event.world.ChunkLoadEvent@58789a3f at [-2,0]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 639{dev_kargas, ILLUSIONER} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 639{dev_kargas, ILLUSIONER} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 639{dev_kargas, ILLUSIONER} during org.bukkit.event.world.ChunkLoadEvent@58789a3f at [-2,0]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 648{&6Bank, PLAYER} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 648{&6Bank, PLAYER} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 648{&6Bank, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@58789a3f at [-2,0]
[18:08:59] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 0{, null}
[18:08:59] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 1{, null}
[18:08:59] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 2{, null}
[18:08:59] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 4{, null}
[18:08:59] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 7{, null}
[18:08:59] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 14{, null}
[18:08:59] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 15{, null}
[18:08:59] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 16{, null}
[18:08:59] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-1,0] due to org.bukkit.event.world.ChunkLoadEvent@35ac95bb at [-1,0]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 678{Ikuria, PLAYER} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 678{Ikuria, PLAYER} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 678{Ikuria, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@35ac95bb at [-1,0]
[18:08:59] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-2,2] due to org.bukkit.event.world.ChunkLoadEvent@37540a91 at [-2,2]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 787{kerm_sit, ARMOR_STAND} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 787{kerm_sit, ARMOR_STAND} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 787{kerm_sit, ARMOR_STAND} during org.bukkit.event.world.ChunkLoadEvent@37540a91 at [-2,2]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 786{test, FROG} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 786{test, FROG} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 786{test, FROG} during org.bukkit.event.world.ChunkLoadEvent@37540a91 at [-2,2]
[18:08:59] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-4,2] due to org.bukkit.event.world.ChunkLoadEvent@11547f41 at [-4,2]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 728{wds_position_mount, ARMOR_STAND} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 728{wds_position_mount, ARMOR_STAND} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 728{wds_position_mount, ARMOR_STAND} during org.bukkit.event.world.ChunkLoadEvent@11547f41 at [-4,2]
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 739{||||||||||||||||||||, PUFFERFISH} due to SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 739{||||||||||||||||||||, PUFFERFISH} SpawnReason.CHUNK_LOAD
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 739{||||||||||||||||||||, PUFFERFISH} during org.bukkit.event.world.ChunkLoadEvent@11547f41 at [-4,2]
[18:08:59] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 18{, null}
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 20{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 20{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: Ikuria[/         ip         ] logged in with entity id 737 at ([minecraft:overworld]0.5, 65.0, 1.7693532868314437)
[18:08:59] [Server thread/INFO]: [CMI] CMI proxy plugin detected
[18:08:59] [Server thread/INFO]: [CMI] CMI detected BungeeCord network
[18:08:59] [Server thread/INFO]: [CMI] CMI detected BungeeCord network
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 21{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 21{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 22{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 22{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 23{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 23{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 24{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 24{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 25{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 25{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 26{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 26{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 27{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 27{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Removing respawns of 28{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:08:59] [Server thread/INFO]: [Citizens] Spawned 28{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:09:00] [Server thread/INFO]: [Citizens] Removing respawns of 29{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:09:00] [Server thread/INFO]: [Citizens] Spawned 29{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:09:00] [Server thread/INFO]: [Citizens] Removing respawns of 30{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:09:00] [Server thread/INFO]: [Citizens] Spawned 30{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:09:00] [Server thread/INFO]: [Citizens] Removing respawns of 31{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:09:00] [Server thread/INFO]: [Citizens] Spawned 31{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:09:00] [Server thread/INFO]: [Citizens] Respawning all NPCs at [4,-3] due to org.bukkit.event.world.ChunkLoadEvent@2092adbf at [4,-3]
[18:09:00] [Server thread/INFO]: [Citizens] Removing respawns of 796{Unut, RABBIT} due to SpawnReason.CHUNK_LOAD
[18:09:00] [Server thread/INFO]: [Citizens] Spawned 796{Unut, RABBIT} SpawnReason.CHUNK_LOAD
[18:09:00] [Server thread/INFO]: [Citizens] Spawned 796{Unut, RABBIT} during org.bukkit.event.world.ChunkLoadEvent@2092adbf at [4,-3]
[18:09:00] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-2,-5] due to org.bukkit.event.world.ChunkLoadEvent@cdde345 at [-2,-5]
[18:09:00] [Server thread/INFO]: [Citizens] Removing respawns of 682{NPC Name, PLAYER} due to SpawnReason.CHUNK_LOAD
[18:09:00] [Server thread/INFO]: [Citizens] Spawned 682{NPC Name, PLAYER} SpawnReason.CHUNK_LOAD
[18:09:00] [Server thread/INFO]: [Citizens] Spawned 682{NPC Name, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@cdde345 at [-2,-5]
[18:09:00] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 10{, null}
[18:09:00] [Server thread/INFO]: [Citizens] Removing respawns of 32{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:09:00] [Server thread/INFO]: [Citizens] Spawned 32{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:09:01] [Server thread/INFO]: [Citizens] Respawning all NPCs at [1,-8] due to org.bukkit.event.world.ChunkLoadEvent@3a7b9630 at [1,-8]
[18:09:01] [Server thread/INFO]: [Citizens] Removing respawns of 774{Sassi89, PLAYER} due to SpawnReason.CHUNK_LOAD
[18:09:01] [Server thread/INFO]: [Citizens] Spawned 774{Sassi89, PLAYER} SpawnReason.CHUNK_LOAD
[18:09:01] [Server thread/INFO]: [Citizens] Spawned 774{Sassi89, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@3a7b9630 at [1,-8]
[18:09:01] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 13{, null}
[18:09:01] [Server thread/INFO]: [Citizens] Respawning all NPCs at [3,-9] due to org.bukkit.event.world.ChunkLoadEvent@31e44074 at [3,-9]
[18:09:01] [Server thread/INFO]: [Citizens] Removing respawns of 784{Arno, RABBIT} due to SpawnReason.CHUNK_LOAD
[18:09:01] [Server thread/INFO]: [Citizens] Spawned 784{Arno, RABBIT} SpawnReason.CHUNK_LOAD
[18:09:01] [Server thread/INFO]: [Citizens] Spawned 784{Arno, RABBIT} during org.bukkit.event.world.ChunkLoadEvent@31e44074 at [3,-9]
[18:09:01] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 19{, null}
[18:09:02] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-9,-3] due to org.bukkit.event.world.ChunkLoadEvent@6f737e9d at [-9,-3]
[18:09:02] [Server thread/INFO]: [Citizens] Removing respawns of 783{ball, ARMADILLO} due to SpawnReason.CHUNK_LOAD
[18:09:02] [Server thread/INFO]: [Citizens] Spawned 783{ball, ARMADILLO} SpawnReason.CHUNK_LOAD
[18:09:02] [Server thread/INFO]: [Citizens] Spawned 783{ball, ARMADILLO} during org.bukkit.event.world.ChunkLoadEvent@6f737e9d at [-9,-3]
[18:09:02] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-11,-3] due to org.bukkit.event.world.ChunkLoadEvent@4e49ea78 at [-11,-3]
[18:09:02] [Server thread/INFO]: [Citizens] Removing respawns of 764{xmas_rilana, FOX} due to SpawnReason.CHUNK_LOAD
[18:09:02] [Server thread/INFO]: [Citizens] Spawned 764{xmas_rilana, FOX} SpawnReason.CHUNK_LOAD
[18:09:02] [Server thread/INFO]: [Citizens] Spawned 764{xmas_rilana, FOX} during org.bukkit.event.world.ChunkLoadEvent@4e49ea78 at [-11,-3]
[18:09:02] [Server thread/INFO]: [Citizens] Removing respawns of 33{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:09:02] [Server thread/INFO]: [Citizens] Spawned 33{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:09:02] [Server thread/INFO]: [Citizens] Removing respawns of 34{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:09:02] [Server thread/INFO]: [Citizens] Spawned 34{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=, uuid=d7b6bf53-795d-2855-ba32-4c1ad95e9fa1} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (60t delay, reset true)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_melloc, uuid=62875843-29dd-259c-8212-7c1d03051936} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (60t delay, reset true)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Bank, uuid=3700bf8e-8071-2f8d-9e34-bacad08aaeb4} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (60t delay, reset true)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_pyra, uuid=419468e7-06fc-28e9-b761-75e3818d3c9a} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (60t delay, reset true)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_ari, uuid=f6ab718b-62d6-228e-8967-edb65bdb12ad} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (60t delay, reset true)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Ikuria, uuid=ffbb83b6-2238-2037-aca8-dd225bdb361e} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (60t delay, reset true)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_canra, uuid=58ffb121-9f23-25ce-973d-5f9c2b891eb0} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (60t delay, reset true)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=NPC Name, uuid=c9768aca-4b3f-2491-a7d6-3b0e1f70d177} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (60t delay, reset true)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=EinradStevo, uuid=b809dd7b-7b98-23a9-9ceb-6118b91a87ef} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (60t delay, reset true)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_jona, uuid=9166b070-25a8-2329-980d-798490d4be19} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (60t delay, reset true)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=, uuid=d7b6bf53-795d-2855-ba32-4c1ad95e9fa1} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_melloc, uuid=62875843-29dd-259c-8212-7c1d03051936} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Bank, uuid=3700bf8e-8071-2f8d-9e34-bacad08aaeb4} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_pyra, uuid=419468e7-06fc-28e9-b761-75e3818d3c9a} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_ari, uuid=f6ab718b-62d6-228e-8967-edb65bdb12ad} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Ikuria, uuid=ffbb83b6-2238-2037-aca8-dd225bdb361e} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_canra, uuid=58ffb121-9f23-25ce-973d-5f9c2b891eb0} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=NPC Name, uuid=c9768aca-4b3f-2491-a7d6-3b0e1f70d177} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=EinradStevo, uuid=b809dd7b-7b98-23a9-9ceb-6118b91a87ef} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:02] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_jona, uuid=9166b070-25a8-2329-980d-798490d4be19} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:03] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=, uuid=d7b6bf53-795d-2855-ba32-4c1ad95e9fa1} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:03] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_melloc, uuid=62875843-29dd-259c-8212-7c1d03051936} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:03] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Bank, uuid=3700bf8e-8071-2f8d-9e34-bacad08aaeb4} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:03] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_pyra, uuid=419468e7-06fc-28e9-b761-75e3818d3c9a} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:03] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_ari, uuid=f6ab718b-62d6-228e-8967-edb65bdb12ad} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:03] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Ikuria, uuid=ffbb83b6-2238-2037-aca8-dd225bdb361e} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:03] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_canra, uuid=58ffb121-9f23-25ce-973d-5f9c2b891eb0} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:03] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=NPC Name, uuid=c9768aca-4b3f-2491-a7d6-3b0e1f70d177} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:03] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=EinradStevo, uuid=b809dd7b-7b98-23a9-9ceb-6118b91a87ef} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:03] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_jona, uuid=9166b070-25a8-2329-980d-798490d4be19} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:03] [Server thread/INFO]: [Citizens] Respawning all NPCs at [6,-7] due to org.bukkit.event.world.ChunkLoadEvent@a676d98 at [6,-7]
[18:09:03] [Server thread/INFO]: [Citizens] Removing respawns of 798{&cGokor, CREAKING} due to SpawnReason.CHUNK_LOAD
[18:09:03] [Server thread/INFO]: [Citizens] Spawned 798{&cGokor, CREAKING} SpawnReason.CHUNK_LOAD
[18:09:03] [Server thread/INFO]: [Citizens] Spawned 798{&cGokor, CREAKING} during org.bukkit.event.world.ChunkLoadEvent@a676d98 at [6,-7]
[18:09:05] [Server thread/INFO]: [Citizens] Removing respawns of 35{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:09:05] [Server thread/INFO]: [Citizens] Spawned 35{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:09:06] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-16,-1] due to org.bukkit.event.world.ChunkLoadEvent@477b503c at [-16,-1]
[18:09:06] [Server thread/INFO]: [Citizens] Removing respawns of 670{&7ᴅɪᴇ ᴢᴇɪᴛᴇɴᴡᴀᴄʜᴇ, PLAYER} due to SpawnReason.CHUNK_LOAD
[18:09:06] [Server thread/INFO]: [Citizens] Spawned 670{&7ᴅɪᴇ ᴢᴇɪᴛᴇɴᴡᴀᴄʜᴇ, PLAYER} SpawnReason.CHUNK_LOAD
[18:09:06] [Server thread/INFO]: [Citizens] Spawned 670{&7ᴅɪᴇ ᴢᴇɪᴛᴇɴᴡᴀᴄʜᴇ, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@477b503c at [-16,-1]
[18:09:06] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 8{, null}
[18:09:06] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 9{, null}
[18:09:06] [Server thread/INFO]: [Citizens] Removing respawns of 36{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:09:06] [Server thread/INFO]: [Citizens] Spawned 36{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:09:06] [Server thread/INFO]: [Citizens] Removing respawns of 37{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:09:06] [Server thread/INFO]: [Citizens] Spawned 37{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:09:06] [Server thread/INFO]: [Citizens] Removing respawns of 38{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:09:06] [Server thread/INFO]: [Citizens] Spawned 38{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:09:06] [Server thread/INFO]: [Citizens] Respawning all NPCs at [6,-12] due to org.bukkit.event.world.ChunkLoadEvent@64a550d0 at [6,-12]
[18:09:06] [Server thread/INFO]: [Citizens] Removing respawns of 630{xmas_ballwichtel, HUSK} due to SpawnReason.CHUNK_LOAD
[18:09:06] [Server thread/INFO]: [Citizens] Spawned 630{xmas_ballwichtel, HUSK} SpawnReason.CHUNK_LOAD
[18:09:06] [Server thread/INFO]: [Citizens] Spawned 630{xmas_ballwichtel, HUSK} during org.bukkit.event.world.ChunkLoadEvent@64a550d0 at [6,-12]
[18:09:06] [Server thread/INFO]: [Citizens] Respawning all NPCs at [6,-13] due to org.bukkit.event.world.ChunkLoadEvent@7fa73b77 at [6,-13]
[18:09:06] [Server thread/INFO]: [Citizens] Removing respawns of 626{schneeball, STRIDER} due to SpawnReason.CHUNK_LOAD
[18:09:06] [Server thread/INFO]: [Citizens] Spawned 626{schneeball, STRIDER} SpawnReason.CHUNK_LOAD
[18:09:06] [Server thread/INFO]: [Citizens] Spawned 626{schneeball, STRIDER} during org.bukkit.event.world.ChunkLoadEvent@7fa73b77 at [6,-13]
[18:09:07] [Server thread/INFO]: [Citizens] Respawning all NPCs at [0,-15] due to org.bukkit.event.world.ChunkLoadEvent@2b949966 at [0,-15]
[18:09:07] [Server thread/INFO]: [Citizens] Removing respawns of 629{Wolfgang, PLAYER} due to SpawnReason.CHUNK_LOAD
[18:09:07] [Server thread/INFO]: [Citizens] Spawned 629{Wolfgang, PLAYER} SpawnReason.CHUNK_LOAD
[18:09:07] [Server thread/INFO]: [Citizens] Spawned 629{Wolfgang, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@2b949966 at [0,-15]
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=, uuid=d7b6bf53-795d-2855-ba32-4c1ad95e9fa1} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_melloc, uuid=62875843-29dd-259c-8212-7c1d03051936} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Sassi89, uuid=2e49ccc0-23c3-2a55-834b-17714dd32000} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Bank, uuid=3700bf8e-8071-2f8d-9e34-bacad08aaeb4} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_pyra, uuid=419468e7-06fc-28e9-b761-75e3818d3c9a} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_ari, uuid=f6ab718b-62d6-228e-8967-edb65bdb12ad} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Ikuria, uuid=ffbb83b6-2238-2037-aca8-dd225bdb361e} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_canra, uuid=58ffb121-9f23-25ce-973d-5f9c2b891eb0} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=NPC Name, uuid=c9768aca-4b3f-2491-a7d6-3b0e1f70d177} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=EinradStevo, uuid=b809dd7b-7b98-23a9-9ceb-6118b91a87ef} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_jona, uuid=9166b070-25a8-2329-980d-798490d4be19} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Respawning all NPCs at [15,-1] due to org.bukkit.event.world.ChunkLoadEvent@1566999b at [15,-1]
[18:09:08] [Server thread/INFO]: [Citizens] Removing respawns of 619{ZweiradStevo, PLAYER} due to SpawnReason.CHUNK_LOAD
[18:09:08] [Server thread/INFO]: [Citizens] Spawned 619{ZweiradStevo, PLAYER} SpawnReason.CHUNK_LOAD
[18:09:08] [Server thread/INFO]: [Citizens] Spawned 619{ZweiradStevo, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@1566999b at [15,-1]
[18:09:08] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 3{, null}
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=, uuid=d7b6bf53-795d-2855-ba32-4c1ad95e9fa1} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_melloc, uuid=62875843-29dd-259c-8212-7c1d03051936} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Sassi89, uuid=2e49ccc0-23c3-2a55-834b-17714dd32000} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Bank, uuid=3700bf8e-8071-2f8d-9e34-bacad08aaeb4} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_pyra, uuid=419468e7-06fc-28e9-b761-75e3818d3c9a} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_ari, uuid=f6ab718b-62d6-228e-8967-edb65bdb12ad} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Ikuria, uuid=ffbb83b6-2238-2037-aca8-dd225bdb361e} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_canra, uuid=58ffb121-9f23-25ce-973d-5f9c2b891eb0} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=NPC Name, uuid=c9768aca-4b3f-2491-a7d6-3b0e1f70d177} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=EinradStevo, uuid=b809dd7b-7b98-23a9-9ceb-6118b91a87ef} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_jona, uuid=9166b070-25a8-2329-980d-798490d4be19} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:08] [Server thread/INFO]: [Citizens] Removing respawns of 39{, TEXT_DISPLAY} due to SpawnReason.PLUGIN
[18:09:08] [Server thread/INFO]: [Citizens] Spawned 39{, TEXT_DISPLAY} SpawnReason.PLUGIN
[18:09:09] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Sassi89, uuid=2e49ccc0-23c3-2a55-834b-17714dd32000} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:09] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=dev_ari, uuid=f6ab718b-62d6-228e-8967-edb65bdb12ad} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:09] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Ikuria, uuid=ffbb83b6-2238-2037-aca8-dd225bdb361e} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:09] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=NPC Name, uuid=c9768aca-4b3f-2491-a7d6-3b0e1f70d177} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:09] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Sassi89, uuid=2e49ccc0-23c3-2a55-834b-17714dd32000} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:09] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Sassi89, uuid=2e49ccc0-23c3-2a55-834b-17714dd32000} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:10] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Sassi89, uuid=2e49ccc0-23c3-2a55-834b-17714dd32000} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:11] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Sassi89, uuid=2e49ccc0-23c3-2a55-834b-17714dd32000} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:12] [Server thread/INFO]: [Citizens] Sending skin from PlayerNPC{name=Sassi89, uuid=2e49ccc0-23c3-2a55-834b-17714dd32000} to CraftPlayer{name=Ikuria, uuid=52fbda8d-a9d8-4250-bd5e-bd29c34fa015} (10t delay, reset false)
[18:09:16] [Server thread/ERROR]: Entity threw exception at world:100.5549,66.0,-100.0952
java.lang.IllegalStateException: Unregistered memory fetched: minecraft:attack_target
    at net.minecraft.world.entity.ai.Brain.getMemorySlot(Brain.java:148) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.world.entity.ai.Brain.getMemory(Brain.java:221) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.world.entity.Mob.getTargetFromBrain(Mob.java:267) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.world.entity.monster.creaking.Creaking.getTarget(Creaking.java:445) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at io.papermc.paper.entity.activation.ActivationRange.checkEntityImmunities(ActivationRange.java:227) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at io.papermc.paper.entity.activation.ActivationRange.checkIfActive(ActivationRange.java:312) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1378) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1512) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.level.ServerLevel.lambda$tick$0(ServerLevel.java:881) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:863) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1842) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1644) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.dedicated.DedicatedServer.tickServer(DedicatedServer.java:449) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.processPacketsAndTick(MinecraftServer.java:1702) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1372) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:304) ~[paper-26.1.1.jar:26.1.1-20-d29063d]
    at java.base/java.lang.Thread.run(Thread.java:1474) ~[?:?]
[18:09:22] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-11,-3] due to org.bukkit.event.world.EntitiesUnloadEvent@5c81b5a0 at [-11,-3]
[18:09:22] [Server thread/INFO]: [Citizens] Removing 764{xmas_rilana, FOX} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:09:22] [Server thread/INFO]: [Citizens] Despawned 764{xmas_rilana, FOX} DespawnReason.CHUNK_UNLOAD
[18:09:22] [Server thread/INFO]: [Citizens] Despawned 764{xmas_rilana, FOX} due to chunk unload at [-11,-3]
[18:09:22] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-11,-3] due to org.bukkit.event.world.ChunkUnloadEvent@1ec72f57 at [-11,-3]
[18:09:25] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-16,-1] due to org.bukkit.event.world.EntitiesUnloadEvent@74a4a49d at [-16,-1]
[18:09:25] [Server thread/INFO]: [Citizens] Removing 670{&7ᴅɪᴇ ᴢᴇɪᴛᴇɴᴡᴀᴄʜᴇ, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[18:09:25] [Server thread/INFO]: [Citizens] Preventing further respawns of 38{, null} due to DespawnReason.REMOVAL
[18:09:25] [Server thread/INFO]: [Citizens] Despawned 38{, null} DespawnReason.REMOVAL
[18:09:25] [Server thread/INFO]: [Citizens] Preventing further respawns of 36{, null} due to DespawnReason.REMOVAL
[18:09:25] [Server thread/INFO]: [Citizens] Despawned 36{, null} DespawnReason.REMOVAL
[18:09:25] [Server thread/INFO]: [Citizens] Despawned 670{&7ᴅɪᴇ ᴢᴇɪᴛᴇɴᴡᴀᴄʜᴇ, PLAYER} DespawnReason.CHUNK_UNLOAD
[18:09:25] [Server thread/INFO]: [Citizens] Despawned 670{&7ᴅɪᴇ ᴢᴇɪᴛᴇɴᴡᴀᴄʜᴇ, PLAYER} due to chunk unload at [-16,-1]
[18:09:25] [Server thread/INFO]: [Citizens] Tried to despawn 36{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:09:25] [Server thread/INFO]: [Citizens] Despawned 36{, null} due to chunk unload at [-16,-1]
[18:09:25] [Server thread/INFO]: [Citizens] Tried to despawn 38{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[18:09:25] [Server thread/INFO]: [Citizens] Despawned 38{, null} due to chunk unload at [-16,-1]
[18:09:25] [Server thread/INFO]: [Citizens] Despawning all NPCs at [-16,-1] due to org.bukkit.event.world.ChunkUnloadEvent@23da0c35 at [-16,-1]