Paste #121083: Unnamed Server Log Paste

Date: 2024/03/16 23:30:41 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[06:29:34] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[06:29:36] [ServerMain/INFO]: Loaded 1174 recipes
[06:29:36] [ServerMain/INFO]: Loaded 1271 advancements
[06:29:36] [Server thread/INFO]: Starting minecraft server version 1.20.4
[06:29:36] [Server thread/INFO]: Loading properties
[06:29:36] [Server thread/INFO]: This server is running Paper version git-Paper-454 (MC: 1.20.4) (Implementing API version 1.20.4-R0.1-SNAPSHOT) (Git: 99a6416)
[06:29:37] [Server thread/INFO]: Server Ping Player Sample Count: 12
[06:29:37] [Server thread/INFO]: Using 4 threads for Netty based IO
[06:29:37] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[06:29:37] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[06:29:37] [Server thread/INFO]: Default game type: ADVENTURE
[06:29:37] [Server thread/INFO]: Generating keypair
[06:29:38] [Server thread/INFO]: Starting Minecraft server on *:25565
[06:29:38] [Server thread/INFO]: Using epoll channel type
[06:29:38] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[06:29:38] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[06:29:38] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3365)
[06:29:38] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[06:29:38] [Server thread/INFO]: Preparing level "Calisto (1)"
[06:29:38] [Server thread/INFO]: -------- World Settings For [Calisto (1)] --------
[06:29:38] [Server thread/INFO]: Item Despawn Rate: 6000
[06:29:38] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[06:29:38] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[06:29:38] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[06:29:38] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[06:29:38] [Server thread/INFO]: Item Merge Radius: 2.5
[06:29:38] [Server thread/INFO]: Experience Merge Radius: 3.0
[06:29:38] [Server thread/INFO]: Mob Spawn Range: 6
[06:29:38] [Server thread/INFO]: View Distance: 10
[06:29:38] [Server thread/INFO]: Simulation Distance: 30
[06:29:38] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[06:29:38] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[06:29:38] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[06:29:38] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[06:29:38] [Server thread/INFO]: Max TNT Explosions: 100
[06:29:38] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[06:29:38] [Server thread/INFO]: Cactus Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Cane Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Melon Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Sapling Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Carrot Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Potato Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Wheat Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Vine Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Kelp Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: -------- World Settings For [Calisto (1)_nether] --------
[06:29:38] [Server thread/INFO]: Item Despawn Rate: 6000
[06:29:38] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[06:29:38] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[06:29:38] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[06:29:38] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[06:29:38] [Server thread/INFO]: Item Merge Radius: 2.5
[06:29:38] [Server thread/INFO]: Experience Merge Radius: 3.0
[06:29:38] [Server thread/INFO]: Mob Spawn Range: 6
[06:29:38] [Server thread/INFO]: View Distance: 10
[06:29:38] [Server thread/INFO]: Simulation Distance: 30
[06:29:38] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[06:29:38] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[06:29:38] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[06:29:38] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[06:29:38] [Server thread/INFO]: Max TNT Explosions: 100
[06:29:38] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[06:29:38] [Server thread/INFO]: Cactus Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Cane Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Melon Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Sapling Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Carrot Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Potato Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Wheat Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Vine Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Kelp Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: -------- World Settings For [Calisto (1)_the_end] --------
[06:29:38] [Server thread/INFO]: Item Despawn Rate: 6000
[06:29:38] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[06:29:38] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[06:29:38] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[06:29:38] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[06:29:38] [Server thread/INFO]: Item Merge Radius: 2.5
[06:29:38] [Server thread/INFO]: Experience Merge Radius: 3.0
[06:29:38] [Server thread/INFO]: Mob Spawn Range: 6
[06:29:38] [Server thread/INFO]: View Distance: 10
[06:29:38] [Server thread/INFO]: Simulation Distance: 30
[06:29:38] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[06:29:38] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[06:29:38] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[06:29:38] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[06:29:38] [Server thread/INFO]: Max TNT Explosions: 100
[06:29:38] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[06:29:38] [Server thread/INFO]: Cactus Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Cane Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Melon Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Sapling Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Carrot Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Potato Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Wheat Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Vine Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Kelp Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[06:29:38] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[06:29:38] [Server thread/INFO]: Time elapsed: 229 ms
[06:29:38] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[06:29:39] [Server thread/INFO]: Time elapsed: 138 ms
[06:29:39] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[06:29:39] [Server thread/INFO]: Time elapsed: 40 ms
[06:29:39] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3365)
[06:29:39] [Server thread/INFO]: [Citizens] Loading external libraries
[06:29:39] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[06:29:40] [Server thread/INFO]: Starting GS4 status listener
[06:29:40] [Server thread/INFO]: Thread Query Listener started
[06:29:40] [Query Listener #1/INFO]: Query running on 0.0.0.0:25565
[06:29:40] [Server thread/INFO]: Running delayed init tasks
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 3{&6&lGuide, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 3{&6&lGuide, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 5{&6&lRachel, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 5{&6&lRachel, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 11{&#E63E12&lH&#C5563E&le&#A46D69&la&#838595&ll&#629CC0&le&#41B4EC&lr, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 11{&#E63E12&lH&#C5563E&le&#A46D69&la&#838595&ll&#629CC0&le&#41B4EC&lr, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 10{&6&lYum, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 10{&6&lYum, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 22{Guard, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 22{Guard, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 37{guard, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 37{guard, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 36{guard, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 36{guard, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 35{guard5, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 35{guard5, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 34{guard4, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 34{guard4, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 33{guard3, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 33{guard3, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 32{guard3, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 32{guard3, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 31{guard1, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 31{guard1, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 30{guard2, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 30{guard2, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 26{Guard, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 26{Guard, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 25{Guard, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 25{Guard, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 24{Omar, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 24{Omar, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 46{Guard3, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 46{Guard3, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 45{Guard1, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 45{Guard1, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 44{Guard4, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 44{Guard4, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 43{Guard, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 43{Guard, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 42{Guard, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 42{Guard, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 41{Guard, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 41{Guard, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 40{Guard, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 40{Guard, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 39{Guard, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 39{Guard, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 38{Guard, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 38{Guard, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:40] [Server thread/INFO]: [Citizens] Retrying spawn of 47{&c&lIroh, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:40] [Server thread/INFO]: [Citizens] Stored 47{&c&lIroh, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Removing respawns of 54{&8&lMon&7&lGoose, CAT} due to SpawnReason.RESPAWN
[06:29:41] [Server thread/INFO]: [Citizens] Spawned 54{&8&lMon&7&lGoose, CAT} SpawnReason.RESPAWN
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 49{Guard2, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 49{Guard2, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 48{Guard5, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 48{Guard5, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Removing respawns of 56{&6&lBu&e&lzz, BEE} due to SpawnReason.RESPAWN
[06:29:41] [Server thread/INFO]: [Citizens] Spawned 56{&6&lBu&e&lzz, BEE} SpawnReason.RESPAWN
[06:29:41] [Server thread/INFO]: [Citizens] Removing respawns of 57{Buggs, RABBIT} due to SpawnReason.RESPAWN
[06:29:41] [Server thread/INFO]: [Citizens] Spawned 57{Buggs, RABBIT} SpawnReason.RESPAWN
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 59{Marbean, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 59{Marbean, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 58{&a&lJuicers, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 58{&a&lJuicers, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 79{foodie1, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 79{foodie1, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 78{foodie14, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 78{foodie14, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 77{foodie17, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 77{foodie17, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 76{foodie18, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 76{foodie18, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 75{foodie, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 75{foodie, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 74{foodie, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 74{foodie, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 73{foodie12, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 73{foodie12, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 72{foodie13, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 72{foodie13, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 71{foodie16, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 71{foodie16, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 70{foodie15, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 70{foodie15, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 69{foodie9, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 69{foodie9, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 68{foodie8, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 68{foodie8, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 67{foodie5, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 67{foodie5, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 66{foodie2, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 66{foodie2, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 65{foodie3, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 65{foodie3, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 64{foodie4, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 64{foodie4, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 63{foodie10, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 63{foodie10, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 62{foodie11, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 62{foodie11, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 61{foodie7, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 61{foodie7, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 60{foodie6, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 60{foodie6, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 80{foodie, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 80{foodie, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 81{foodie, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 81{foodie, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 82{wfoodie, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 82{wfoodie, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 83{&b&lCool&9&lCow, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 83{&b&lCool&9&lCow, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 85{mulk2, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 85{mulk2, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 84{mulk1, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 84{mulk1, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 87{mulk4, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 87{mulk4, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 86{mulk3, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 86{mulk3, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 89{wfoodie2, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 89{wfoodie2, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 95{coin6, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 95{coin6, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 94{coin5, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 94{coin5, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 93{coin4, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 93{coin4, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 92{coin3, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 92{coin3, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 91{coin2, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 91{coin2, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 90{coin1, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 90{coin1, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 97{&#43BAF4&lC&#819EF6&li&#BE83F8&lt&#FC67FA&ly, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 97{&#43BAF4&lC&#819EF6&li&#BE83F8&lt&#FC67FA&ly, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 96{havenst1, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 96{havenst1, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 100{&#E6E42D&lF&#D2C16D&lo&#BD9DAC&lo&#A97AEC&ld, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 100{&#E6E42D&lF&#D2C16D&lo&#BD9DAC&lo&#A97AEC&ld, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 98{&#E6A616&lS&#CE9B35&lt&#B68F53&la&#9E8472&lr&#877890&lW&#6F6DAF&la&#5761CD&lr&#3F56EC&ls, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 98{&#E6A616&lS&#CE9B35&lt&#B68F53&la&#9E8472&lr&#877890&lW&#6F6DAF&la&#5761CD&lr&#3F56EC&ls, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 103{&#F3904F&lQ&#CE8156&lu&#A9715D&le&#856263&ls&#60526A&lt&#3B4371&ls, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 103{&#F3904F&lQ&#CE8156&lu&#A9715D&le&#856263&ls&#60526A&lt&#3B4371&ls, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 101{&#35E61F&lM&#5BE82F&lo&#81E940&ln&#A6EB50&le&#CCEC60&ly, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 101{&#35E61F&lM&#5BE82F&lo&#81E940&ln&#A6EB50&le&#CCEC60&ly, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 104{&#673812&lN&#5C4216&lo&#504B1B&lr&#45551F&lh&#395E23&le&#2E6828&la&#22712C&ld, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 104{&#673812&lN&#5C4216&lo&#504B1B&lr&#45551F&lh&#395E23&le&#2E6828&la&#22712C&ld, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 105{Mark, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 105{Mark, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: [Citizens] Retrying spawn of 106{PurpleWard, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[06:29:41] [Server thread/INFO]: [Citizens] Stored 106{PurpleWard, PLAYER} for respawn from NPCNeedsRespawnEvent
[06:29:41] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[06:29:41] [Server thread/INFO]: [Citizens] Loaded 77 NPCs.
[06:29:41] [Server thread/INFO]: Done (5.101s)! For help, type "help"
[06:29:41] [Server thread/INFO]: Timings Reset
[06:29:41] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-21,-64] due to org.bukkit.event.world.ChunkLoadEvent@7e09b0bb at [-21,-64]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 39{Guard, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 39{Guard, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 39{Guard, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@7e09b0bb at [-21,-64]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-17,-65] due to org.bukkit.event.world.ChunkLoadEvent@eca5376 at [-17,-65]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 45{Guard1, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 45{Guard1, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 45{Guard1, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@eca5376 at [-17,-65]
[06:29:42] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-21,-63] due to org.bukkit.event.world.ChunkLoadEvent@3a095b0c at [-21,-63]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 26{Guard, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 26{Guard, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 26{Guard, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@3a095b0c at [-21,-63]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 46{Guard3, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 46{Guard3, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 46{Guard3, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@3a095b0c at [-21,-63]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 38{Guard, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 38{Guard, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 38{Guard, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@3a095b0c at [-21,-63]
[06:29:42] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-20,-63] due to org.bukkit.event.world.ChunkLoadEvent@67e749f4 at [-20,-63]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 44{Guard4, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 44{Guard4, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 44{Guard4, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@67e749f4 at [-20,-63]
[06:29:42] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-28,-62] due to org.bukkit.event.world.ChunkLoadEvent@33faccab at [-28,-62]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 3{&6&lGuide, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 3{&6&lGuide, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 3{&6&lGuide, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@33faccab at [-28,-62]
[06:29:42] [Server thread/INFO]: [Citizens] 46{Guard3, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=-310.5,y=79.0,z=-989.5,pitch=0.0,yaw=0.0}]
[06:29:42] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-21,-62] due to org.bukkit.event.world.ChunkLoadEvent@5e18c1a0 at [-21,-62]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 22{Guard, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 22{Guard, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 22{Guard, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@5e18c1a0 at [-21,-62]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 25{Guard, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 25{Guard, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 25{Guard, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@5e18c1a0 at [-21,-62]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 41{Guard, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 41{Guard, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 41{Guard, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@5e18c1a0 at [-21,-62]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 40{Guard, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 40{Guard, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 40{Guard, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@5e18c1a0 at [-21,-62]
[06:29:42] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-19,-62] due to org.bukkit.event.world.ChunkLoadEvent@57e33da8 at [-19,-62]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 49{Guard2, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 49{Guard2, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 49{Guard2, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@57e33da8 at [-19,-62]
[06:29:42] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-17,-62] due to org.bukkit.event.world.ChunkLoadEvent@5e747c09 at [-17,-62]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 31{guard1, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 31{guard1, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 31{guard1, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@5e747c09 at [-17,-62]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 30{guard2, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 30{guard2, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 30{guard2, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@5e747c09 at [-17,-62]
[06:29:42] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-17,-61] due to org.bukkit.event.world.ChunkLoadEvent@60ce5a8b at [-17,-61]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 10{&6&lYum, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 10{&6&lYum, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 10{&6&lYum, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@60ce5a8b at [-17,-61]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 33{guard3, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 33{guard3, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 33{guard3, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@60ce5a8b at [-17,-61]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 32{guard3, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 32{guard3, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 32{guard3, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@60ce5a8b at [-17,-61]
[06:29:42] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-17,-60] due to org.bukkit.event.world.ChunkLoadEvent@6717c0e2 at [-17,-60]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 11{&#E63E12&lH&#C5563E&le&#A46D69&la&#838595&ll&#629CC0&le&#41B4EC&lr, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 0{&#E63E12&lH&#C5563E&le&#A46D69&la&#838595&ll&#629CC0&le&#41B4EC&lr, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 0{&#E63E12&lH&#C5563E&le&#A46D69&la&#838595&ll&#629CC0&le&#41B4EC&lr, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 11{&#E63E12&lH&#C5563E&le&#A46D69&la&#838595&ll&#629CC0&le&#41B4EC&lr, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 11{&#E63E12&lH&#C5563E&le&#A46D69&la&#838595&ll&#629CC0&le&#41B4EC&lr, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@6717c0e2 at [-17,-60]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 103{&#F3904F&lQ&#CE8156&lu&#A9715D&le&#856263&ls&#60526A&lt&#3B4371&ls, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 0{&#F3904F&lQ&#CE8156&lu&#A9715D&le&#856263&ls&#60526A&lt&#3B4371&ls, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 0{&#F3904F&lQ&#CE8156&lu&#A9715D&le&#856263&ls&#60526A&lt&#3B4371&ls, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 103{&#F3904F&lQ&#CE8156&lu&#A9715D&le&#856263&ls&#60526A&lt&#3B4371&ls, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 103{&#F3904F&lQ&#CE8156&lu&#A9715D&le&#856263&ls&#60526A&lt&#3B4371&ls, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@6717c0e2 at [-17,-60]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 101{&#35E61F&lM&#5BE82F&lo&#81E940&ln&#A6EB50&le&#CCEC60&ly, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 0{&#35E61F&lM&#5BE82F&lo&#81E940&ln&#A6EB50&le&#CCEC60&ly, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 0{&#35E61F&lM&#5BE82F&lo&#81E940&ln&#A6EB50&le&#CCEC60&ly, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 101{&#35E61F&lM&#5BE82F&lo&#81E940&ln&#A6EB50&le&#CCEC60&ly, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 101{&#35E61F&lM&#5BE82F&lo&#81E940&ln&#A6EB50&le&#CCEC60&ly, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@6717c0e2 at [-17,-60]
[06:29:42] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-17,-59] due to org.bukkit.event.world.ChunkLoadEvent@292054c2 at [-17,-59]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 47{&c&lIroh, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 47{&c&lIroh, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 47{&c&lIroh, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@292054c2 at [-17,-59]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 100{&#E6E42D&lF&#D2C16D&lo&#BD9DAC&lo&#A97AEC&ld, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 0{&#E6E42D&lF&#D2C16D&lo&#BD9DAC&lo&#A97AEC&ld, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 0{&#E6E42D&lF&#D2C16D&lo&#BD9DAC&lo&#A97AEC&ld, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 100{&#E6E42D&lF&#D2C16D&lo&#BD9DAC&lo&#A97AEC&ld, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 100{&#E6E42D&lF&#D2C16D&lo&#BD9DAC&lo&#A97AEC&ld, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@292054c2 at [-17,-59]
[06:29:42] [Server thread/INFO]: [Citizens] 46{Guard3, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=-317.5,y=78.0,z=-982.5,pitch=0.0,yaw=0.0}]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 2{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 2{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] 10{&6&lYum, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=-325.5,y=78.0,z=-987.5,pitch=0.0,yaw=0.0}]
[06:29:42] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2527ms or 50 ticks behind
[06:29:42] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-17,-58] due to org.bukkit.event.world.ChunkLoadEvent@e752d61 at [-17,-58]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 43{Guard, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 43{Guard, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 43{Guard, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@e752d61 at [-17,-58]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 42{Guard, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 42{Guard, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 42{Guard, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@e752d61 at [-17,-58]
[06:29:42] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-17,-56] due to org.bukkit.event.world.ChunkLoadEvent@9c7d624 at [-17,-56]
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 97{&#43BAF4&lC&#819EF6&li&#BE83F8&lt&#FC67FA&ly, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Removing respawns of 0{&#43BAF4&lC&#819EF6&li&#BE83F8&lt&#FC67FA&ly, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 0{&#43BAF4&lC&#819EF6&li&#BE83F8&lt&#FC67FA&ly, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 97{&#43BAF4&lC&#819EF6&li&#BE83F8&lt&#FC67FA&ly, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:42] [Server thread/INFO]: [Citizens] Spawned 97{&#43BAF4&lC&#819EF6&li&#BE83F8&lt&#FC67FA&ly, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@9c7d624 at [-17,-56]
[06:29:43] [Server thread/INFO]: [Citizens] Removing respawns of 98{&#E6A616&lS&#CE9B35&lt&#B68F53&la&#9E8472&lr&#877890&lW&#6F6DAF&la&#5761CD&lr&#3F56EC&ls, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Removing respawns of 0{&#E6A616&lS&#CE9B35&lt&#B68F53&la&#9E8472&lr&#877890&lW&#6F6DAF&la&#5761CD&lr&#3F56EC&ls, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 0{&#E6A616&lS&#CE9B35&lt&#B68F53&la&#9E8472&lr&#877890&lW&#6F6DAF&la&#5761CD&lr&#3F56EC&ls, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 98{&#E6A616&lS&#CE9B35&lt&#B68F53&la&#9E8472&lr&#877890&lW&#6F6DAF&la&#5761CD&lr&#3F56EC&ls, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 98{&#E6A616&lS&#CE9B35&lt&#B68F53&la&#9E8472&lr&#877890&lW&#6F6DAF&la&#5761CD&lr&#3F56EC&ls, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@9c7d624 at [-17,-56]
[06:29:43] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-16,-64] due to org.bukkit.event.world.ChunkLoadEvent@1872156b at [-16,-64]
[06:29:43] [Server thread/INFO]: [Citizens] Removing respawns of 48{Guard5, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 48{Guard5, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 48{Guard5, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@1872156b at [-16,-64]
[06:29:43] [Server thread/INFO]: [Citizens] 46{Guard3, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=-300.5,y=88.0,z=-979.5,pitch=0.0,yaw=0.0}]
[06:29:43] [Server thread/INFO]: [Citizens] 10{&6&lYum, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=-316.5,y=78.0,z=-987.5,pitch=0.0,yaw=0.0}]
[06:29:43] [Server thread/INFO]: [Citizens] 46{Guard3, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=-297.5,y=87.0,z=-985.5,pitch=0.0,yaw=0.0}]
[06:29:43] [Server thread/INFO]: [Citizens] 10{&6&lYum, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=-310.5,y=79.0,z=-992.5,pitch=0.0,yaw=0.0}]
[06:29:43] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-16,-59] due to org.bukkit.event.world.ChunkLoadEvent@4127244e at [-16,-59]
[06:29:43] [Server thread/INFO]: [Citizens] Removing respawns of 104{&#673812&lN&#5C4216&lo&#504B1B&lr&#45551F&lh&#395E23&le&#2E6828&la&#22712C&ld, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Removing respawns of 0{&#673812&lN&#5C4216&lo&#504B1B&lr&#45551F&lh&#395E23&le&#2E6828&la&#22712C&ld, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 0{&#673812&lN&#5C4216&lo&#504B1B&lr&#45551F&lh&#395E23&le&#2E6828&la&#22712C&ld, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 104{&#673812&lN&#5C4216&lo&#504B1B&lr&#45551F&lh&#395E23&le&#2E6828&la&#22712C&ld, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 104{&#673812&lN&#5C4216&lo&#504B1B&lr&#45551F&lh&#395E23&le&#2E6828&la&#22712C&ld, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@4127244e at [-16,-59]
[06:29:43] [Server thread/INFO]: [Citizens] 46{Guard3, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=-295.5,y=87.0,z=-990.5,pitch=0.0,yaw=0.0}]
[06:29:43] [Server thread/INFO]: [Citizens] 10{&6&lYum, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=-308.5,y=81.0,z=-1002.5,pitch=0.0,yaw=0.0}]
[06:29:43] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-16,-58] due to org.bukkit.event.world.ChunkLoadEvent@4c2e83db at [-16,-58]
[06:29:43] [Server thread/INFO]: [Citizens] Removing respawns of 37{guard, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 37{guard, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 37{guard, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@4c2e83db at [-16,-58]
[06:29:43] [Server thread/INFO]: [Citizens] Removing respawns of 36{guard, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 36{guard, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 36{guard, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@4c2e83db at [-16,-58]
[06:29:43] [Server thread/INFO]: [Citizens] Removing respawns of 35{guard5, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 35{guard5, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 35{guard5, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@4c2e83db at [-16,-58]
[06:29:43] [Server thread/INFO]: [Citizens] Removing respawns of 34{guard4, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 34{guard4, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 34{guard4, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@4c2e83db at [-16,-58]
[06:29:43] [Server thread/INFO]: [Citizens] 46{Guard3, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=-294.5,y=87.0,z=-999.5,pitch=0.0,yaw=0.0}]
[06:29:43] [Server thread/INFO]: [Citizens] 10{&6&lYum, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=-305.5,y=82.0,z=-1008.5,pitch=0.0,yaw=0.0}]
[06:29:43] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-14,-58] due to org.bukkit.event.world.ChunkLoadEvent@16610322 at [-14,-58]
[06:29:43] [Server thread/INFO]: [Citizens] Removing respawns of 24{Omar, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 24{Omar, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:43] [Server thread/INFO]: [Citizens] Spawned 24{Omar, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@16610322 at [-14,-58]
[06:29:43] [Server thread/INFO]: [Citizens] 46{Guard3, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=-291.5,y=85.0,z=-1008.5,pitch=0.0,yaw=0.0}]
[06:29:43] [Server thread/INFO]: [Citizens] 10{&6&lYum, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=-291.5,y=85.0,z=-1010.5,pitch=0.0,yaw=0.0}]
[06:29:43] [Server thread/INFO]: [Citizens] 46{Guard3, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=-301.5,y=83.0,z=-1009.5,pitch=0.0,yaw=0.0}]
[06:29:43] [Craft Scheduler Thread - 3 - Citizens/INFO]: [Citizens] Profile lookup for player 'coin6' failed: Server did not find the requested profile
[06:29:43] [Craft Scheduler Thread - 3 - Citizens/INFO]: [Citizens] com.mojang.authlib.yggdrasil.ProfileNotFoundException: Server did not find the requested profile
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:77)
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:43)
    at Citizens-2.0.33-b3365.jar//net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:189)
    at Citizens-2.0.33-b3365.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:127)
    at Citizens-2.0.33-b3365.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.run(ProfileFetchThread.java:190)
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
    at java.base/java.lang.Thread.run(Unknown Source)

[06:29:43] [Craft Scheduler Thread - 3 - Citizens/INFO]: [Citizens] Profile lookup for player 'foodie8' failed: Server did not find the requested profile
[06:29:43] [Craft Scheduler Thread - 3 - Citizens/INFO]: [Citizens] com.mojang.authlib.yggdrasil.ProfileNotFoundException: Server did not find the requested profile
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:77)
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:43)
    at Citizens-2.0.33-b3365.jar//net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:189)
    at Citizens-2.0.33-b3365.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:127)
    at Citizens-2.0.33-b3365.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.run(ProfileFetchThread.java:190)
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
    at java.base/java.lang.Thread.run(Unknown Source)

[06:29:44] [Craft Scheduler Thread - 3 - Citizens/INFO]: [Citizens] Profile lookup for player 'foodie9' failed: Server did not find the requested profile
[06:29:44] [Craft Scheduler Thread - 3 - Citizens/INFO]: [Citizens] com.mojang.authlib.yggdrasil.ProfileNotFoundException: Server did not find the requested profile
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:77)
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:43)
    at Citizens-2.0.33-b3365.jar//net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:189)
    at Citizens-2.0.33-b3365.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:127)
    at Citizens-2.0.33-b3365.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.run(ProfileFetchThread.java:190)
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
    at java.base/java.lang.Thread.run(Unknown Source)

[06:29:44] [Craft Scheduler Thread - 3 - Citizens/INFO]: [Citizens] Profile lookup for player 'havenst1' failed: Server did not find the requested profile
[06:29:44] [Craft Scheduler Thread - 3 - Citizens/INFO]: [Citizens] com.mojang.authlib.yggdrasil.ProfileNotFoundException: Server did not find the requested profile
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:77)
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:43)
    at Citizens-2.0.33-b3365.jar//net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:189)
    at Citizens-2.0.33-b3365.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:127)
    at Citizens-2.0.33-b3365.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.run(ProfileFetchThread.java:190)
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
    at java.base/java.lang.Thread.run(Unknown Source)

[06:29:46] [User Authenticator #0/INFO]: UUID of player DonnieBoy_ is e8e9bb97-912e-448b-a351-490376002da9
[06:29:46] [Server thread/INFO]: DonnieBoy_ joined the game
[06:29:46] [Server thread/INFO]: DonnieBoy_[/131.239.77.217:56918] logged in with entity id 535 at ([Calisto (1)]-51.214303678483496, 69.08538788199954, -857.3352486240714)
[06:29:50] [Server thread/INFO]: [Citizens] Respawning all NPCs at [7,-59] due to org.bukkit.event.world.ChunkLoadEvent@397fa060 at [7,-59]
[06:29:50] [Server thread/INFO]: [Citizens] Removing respawns of 78{foodie14, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:50] [Server thread/INFO]: [Citizens] Spawned 78{foodie14, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:50] [Server thread/INFO]: [Citizens] Spawned 78{foodie14, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@397fa060 at [7,-59]
[06:29:50] [Server thread/INFO]: [Citizens] Removing respawns of 67{foodie5, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:50] [Server thread/INFO]: [Citizens] Spawned 67{foodie5, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:50] [Server thread/INFO]: [Citizens] Spawned 67{foodie5, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@397fa060 at [7,-59]
[06:29:50] [Server thread/INFO]: [Citizens] Removing respawns of 3{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:50] [Server thread/INFO]: [Citizens] Spawned 3{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:50] [Server thread/INFO]: [Citizens] Removing respawns of 4{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:50] [Server thread/INFO]: [Citizens] Spawned 4{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Respawning all NPCs at [8,-59] due to org.bukkit.event.world.ChunkLoadEvent@7c86e0d8 at [8,-59]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 58{&a&lJuicers, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 58{&a&lJuicers, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 58{&a&lJuicers, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@7c86e0d8 at [8,-59]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 69{foodie9, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 69{foodie9, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 69{foodie9, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@7c86e0d8 at [8,-59]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 68{foodie8, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 68{foodie8, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 68{foodie8, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@7c86e0d8 at [8,-59]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 61{foodie7, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 61{foodie7, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 61{foodie7, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@7c86e0d8 at [8,-59]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 60{foodie6, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 60{foodie6, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 60{foodie6, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@7c86e0d8 at [8,-59]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 5{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 5{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 6{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 6{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 7{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 7{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 8{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 8{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Respawning all NPCs at [7,-60] due to org.bukkit.event.world.ChunkLoadEvent@2aefe7e3 at [7,-60]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 73{foodie12, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 73{foodie12, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 73{foodie12, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@2aefe7e3 at [7,-60]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 72{foodie13, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 72{foodie13, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 72{foodie13, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@2aefe7e3 at [7,-60]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 63{foodie10, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 63{foodie10, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 63{foodie10, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@2aefe7e3 at [7,-60]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 62{foodie11, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 62{foodie11, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 62{foodie11, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@2aefe7e3 at [7,-60]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 106{PurpleWard, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 106{PurpleWard, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 106{PurpleWard, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@2aefe7e3 at [7,-60]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 9{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 9{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 10{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 10{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 11{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 11{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 12{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 12{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Respawning all NPCs at [8,-60] due to org.bukkit.event.world.ChunkLoadEvent@6ac077a1 at [8,-60]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 79{foodie1, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 79{foodie1, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 79{foodie1, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@6ac077a1 at [8,-60]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 71{foodie16, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 71{foodie16, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 71{foodie16, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@6ac077a1 at [8,-60]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 70{foodie15, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 70{foodie15, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 70{foodie15, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@6ac077a1 at [8,-60]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 66{foodie2, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 66{foodie2, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 66{foodie2, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@6ac077a1 at [8,-60]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 65{foodie3, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 65{foodie3, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 65{foodie3, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@6ac077a1 at [8,-60]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 64{foodie4, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 64{foodie4, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 64{foodie4, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@6ac077a1 at [8,-60]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 81{foodie, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 81{foodie, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 81{foodie, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@6ac077a1 at [8,-60]
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 13{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 13{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 14{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 14{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 15{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 15{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 16{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 16{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 17{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 17{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Removing respawns of 18{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Spawned 18{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:51] [Server thread/INFO]: [Citizens] Respawning all NPCs at [9,-60] due to org.bukkit.event.world.ChunkLoadEvent@671c7e79 at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 77{foodie17, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 77{foodie17, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 77{foodie17, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@671c7e79 at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 76{foodie18, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 76{foodie18, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 76{foodie18, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@671c7e79 at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 82{wfoodie, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 82{wfoodie, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 82{wfoodie, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@671c7e79 at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Respawning all NPCs at [9,-59] due to org.bukkit.event.world.ChunkLoadEvent@2bf9218c at [9,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 80{foodie, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 80{foodie, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 80{foodie, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@2bf9218c at [9,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Respawning all NPCs at [10,-60] due to org.bukkit.event.world.ChunkLoadEvent@563ea55d at [10,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 59{Marbean, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 59{Marbean, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 59{Marbean, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@563ea55d at [10,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 89{wfoodie2, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 89{wfoodie2, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 89{wfoodie2, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@563ea55d at [10,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Respawning all NPCs at [10,-59] due to org.bukkit.event.world.ChunkLoadEvent@49c3f825 at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 75{foodie, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 75{foodie, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 75{foodie, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@49c3f825 at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 74{foodie, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 74{foodie, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 74{foodie, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@49c3f825 at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 83{&b&lCool&9&lCow, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 83{&b&lCool&9&lCow, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 83{&b&lCool&9&lCow, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@49c3f825 at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 19{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 19{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 20{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 20{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] 82{wfoodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=142.5,y=26.0,z=-962.5,pitch=0.0,yaw=0.0}]
[06:29:52] [Server thread/INFO]: [Citizens] 80{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=155.5,y=41.5,z=-953.5,pitch=0.0,yaw=0.0}]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 21{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 21{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 22{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 22{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 23{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 23{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: DonnieBoy_ issued server command: /npc list
[06:29:52] [Server thread/INFO]: [Citizens] 81{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=158.5,y=40.0,z=-939.5,pitch=0.0,yaw=0.0}]
[06:29:52] [Server thread/INFO]: [Citizens] 82{wfoodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=151.5,y=26.0,z=-962.5,pitch=0.0,yaw=0.0}]
[06:29:52] [Server thread/INFO]: [Citizens] 82{wfoodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=159.5,y=26.0,z=-956.5,pitch=0.0,yaw=0.0}]
[06:29:52] [Server thread/INFO]: [Citizens] 82{wfoodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=167.5,y=26.0,z=-954.5,pitch=0.0,yaw=0.0}]
[06:29:52] [Server thread/INFO]: [Citizens] 82{wfoodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=168.5,y=26.0,z=-947.5,pitch=0.0,yaw=0.0}]
[06:29:52] [Server thread/INFO]: [Citizens] 80{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=128.5,y=41.0,z=-958.5,pitch=0.0,yaw=0.0}]
[06:29:52] [Server thread/INFO]: [Citizens] 82{wfoodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=168.5,y=26.0,z=-937.5,pitch=0.0,yaw=0.0}]
[06:29:52] [Server thread/INFO]: [Citizens] 80{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=131.5,y=40.0,z=-940.5,pitch=0.0,yaw=0.0}]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 77{foodie17, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Preventing further respawns of 19{, null} due to DespawnReason.REMOVAL
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 19{, null} DespawnReason.REMOVAL
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 77{foodie17, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 77{foodie17, PLAYER} due to chunk unload at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 76{foodie18, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Preventing further respawns of 20{, null} due to DespawnReason.REMOVAL
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 20{, null} DespawnReason.REMOVAL
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 76{foodie18, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 76{foodie18, PLAYER} due to chunk unload at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 82{wfoodie, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 82{wfoodie, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 82{wfoodie, PLAYER} due to chunk unload at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Tried to despawn 19{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 19{, null} due to chunk unload at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Tried to despawn 20{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 20{, null} due to chunk unload at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 74{foodie, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Preventing further respawns of 23{, null} due to DespawnReason.REMOVAL
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 23{, null} DespawnReason.REMOVAL
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 74{foodie, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 74{foodie, PLAYER} due to chunk unload at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 75{foodie, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Preventing further respawns of 22{, null} due to DespawnReason.REMOVAL
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 22{, null} DespawnReason.REMOVAL
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 75{foodie, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 75{foodie, PLAYER} due to chunk unload at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 83{&b&lCool&9&lCow, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 83{&b&lCool&9&lCow, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 83{&b&lCool&9&lCow, PLAYER} due to chunk unload at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Tried to despawn 22{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 22{, null} due to chunk unload at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Tried to despawn 23{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 23{, null} due to chunk unload at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 59{Marbean, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Preventing further respawns of 21{, null} due to DespawnReason.REMOVAL
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 21{, null} DespawnReason.REMOVAL
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 59{Marbean, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 59{Marbean, PLAYER} due to chunk unload at [10,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 89{wfoodie2, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 89{wfoodie2, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 89{wfoodie2, PLAYER} due to chunk unload at [10,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Tried to despawn 21{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 21{, null} due to chunk unload at [10,-60]
[06:29:52] [Server thread/INFO]: [Citizens] 80{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=126.5,y=40.0,z=-936.5,pitch=0.0,yaw=0.0}]
[06:29:52] [Server thread/INFO]: [Citizens] Respawning all NPCs at [9,-60] due to org.bukkit.event.world.ChunkLoadEvent@5c35efbf at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 77{foodie17, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 77{foodie17, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 77{foodie17, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@5c35efbf at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 76{foodie18, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 76{foodie18, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 76{foodie18, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@5c35efbf at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 82{wfoodie, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 82{wfoodie, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 82{wfoodie, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@5c35efbf at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 19{, null}
[06:29:52] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 20{, null}
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 24{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 24{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 25{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 25{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Respawning all NPCs at [10,-59] due to org.bukkit.event.world.ChunkLoadEvent@2aece0f7 at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 74{foodie, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 74{foodie, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 74{foodie, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@2aece0f7 at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 75{foodie, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 75{foodie, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 75{foodie, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@2aece0f7 at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 83{&b&lCool&9&lCow, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 83{&b&lCool&9&lCow, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 83{&b&lCool&9&lCow, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@2aece0f7 at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 22{, null}
[06:29:52] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 23{, null}
[06:29:52] [Server thread/INFO]: [Citizens] Respawning all NPCs at [10,-60] due to org.bukkit.event.world.ChunkLoadEvent@2632268 at [10,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 59{Marbean, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 59{Marbean, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 59{Marbean, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@2632268 at [10,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 89{wfoodie2, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 89{wfoodie2, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 89{wfoodie2, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@2632268 at [10,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 21{, null}
[06:29:52] [Server thread/INFO]: [Citizens] Removing 74{foodie, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 74{foodie, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 74{foodie, PLAYER} due to chunk unload at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 75{foodie, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 75{foodie, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 75{foodie, PLAYER} due to chunk unload at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 83{&b&lCool&9&lCow, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 83{&b&lCool&9&lCow, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 83{&b&lCool&9&lCow, PLAYER} due to chunk unload at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 59{Marbean, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 59{Marbean, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 59{Marbean, PLAYER} due to chunk unload at [10,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 89{wfoodie2, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 89{wfoodie2, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 89{wfoodie2, PLAYER} due to chunk unload at [10,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Respawning all NPCs at [10,-59] due to org.bukkit.event.world.ChunkLoadEvent@675c958f at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 74{foodie, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 74{foodie, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 74{foodie, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@675c958f at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 75{foodie, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 75{foodie, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 75{foodie, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@675c958f at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 83{&b&lCool&9&lCow, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 83{&b&lCool&9&lCow, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 83{&b&lCool&9&lCow, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@675c958f at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 74{foodie, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 74{foodie, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 74{foodie, PLAYER} due to chunk unload at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 75{foodie, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 75{foodie, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 75{foodie, PLAYER} due to chunk unload at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 83{&b&lCool&9&lCow, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 83{&b&lCool&9&lCow, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 83{&b&lCool&9&lCow, PLAYER} due to chunk unload at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 77{foodie17, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Preventing further respawns of 24{, null} due to DespawnReason.REMOVAL
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 24{, null} DespawnReason.REMOVAL
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 77{foodie17, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 77{foodie17, PLAYER} due to chunk unload at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 76{foodie18, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Preventing further respawns of 25{, null} due to DespawnReason.REMOVAL
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 25{, null} DespawnReason.REMOVAL
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 76{foodie18, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 76{foodie18, PLAYER} due to chunk unload at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing 82{wfoodie, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 82{wfoodie, PLAYER} DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 82{wfoodie, PLAYER} due to chunk unload at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Tried to despawn 24{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 24{, null} due to chunk unload at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Tried to despawn 25{, null} while already despawned, DespawnReason.CHUNK_UNLOAD
[06:29:52] [Server thread/INFO]: [Citizens] Despawned 25{, null} due to chunk unload at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] 80{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=123.5,y=40.0,z=-934.5,pitch=0.0,yaw=0.0}]
[06:29:52] [Server thread/INFO]: [Citizens] Respawning all NPCs at [10,-59] due to org.bukkit.event.world.ChunkLoadEvent@9096469 at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 74{foodie, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 74{foodie, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 74{foodie, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@9096469 at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 75{foodie, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 75{foodie, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 75{foodie, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@9096469 at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 83{&b&lCool&9&lCow, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 83{&b&lCool&9&lCow, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 83{&b&lCool&9&lCow, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@9096469 at [10,-59]
[06:29:52] [Server thread/INFO]: [Citizens] Respawning all NPCs at [9,-60] due to org.bukkit.event.world.ChunkLoadEvent@1789c1dd at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 77{foodie17, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 77{foodie17, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 77{foodie17, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@1789c1dd at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 76{foodie18, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 76{foodie18, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 76{foodie18, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@1789c1dd at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 82{wfoodie, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 82{wfoodie, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 82{wfoodie, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@1789c1dd at [9,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 24{, null}
[06:29:52] [Server thread/INFO]: [Citizens] Prevented deregistered NPC from respawning 25{, null}
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 26{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 26{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 27{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 27{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 28{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 28{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 29{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 29{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Respawning all NPCs at [10,-60] due to org.bukkit.event.world.ChunkLoadEvent@6348120c at [10,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 59{Marbean, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 59{Marbean, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 59{Marbean, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@6348120c at [10,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 89{wfoodie2, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 89{wfoodie2, PLAYER} SpawnReason.CHUNK_LOAD
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 89{wfoodie2, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@6348120c at [10,-60]
[06:29:52] [Server thread/INFO]: [Citizens] Removing respawns of 30{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:29:52] [Server thread/INFO]: [Citizens] Spawned 30{, ARMOR_STAND} SpawnReason.PLUGIN
[06:29:53] [Server thread/INFO]: [Citizens] 81{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=146.5,y=41.5,z=-946.5,pitch=0.0,yaw=0.0}]
[06:29:53] [Server thread/INFO]: [Citizens] 81{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=123.5,y=41.0,z=-957.5,pitch=0.0,yaw=0.0}]
[06:29:53] [Server thread/INFO]: [Citizens] 81{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=149.5,y=41.0,z=-932.5,pitch=0.0,yaw=0.0}]
[06:29:53] [Server thread/INFO]: [Citizens] 81{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=134.5,y=41.0,z=-932.5,pitch=0.0,yaw=0.0}]
[06:29:53] [Server thread/INFO]: [Citizens] 81{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=154.5,y=40.0,z=-944.5,pitch=0.0,yaw=0.0}]
[06:29:56] [Server thread/INFO]: DonnieBoy_ issued server command: /npc list --page 2
[06:29:57] [Server thread/INFO]: [Citizens] 81{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=135.5,y=40.0,z=-934.5,pitch=0.0,yaw=0.0}]
[06:29:57] [Server thread/INFO]: [Citizens] 81{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=163.5,y=40.0,z=-951.5,pitch=0.0,yaw=0.0}]
[06:29:57] [Server thread/INFO]: [Citizens] 81{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=156.5,y=40.0,z=-945.5,pitch=0.0,yaw=0.0}]
[06:29:57] [Server thread/INFO]: [Citizens] 81{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=127.5,y=39.0,z=-938.5,pitch=0.0,yaw=0.0}]
[06:29:58] [Server thread/INFO]: DonnieBoy_ issued server command: /npc list 9
[06:30:00] [Server thread/INFO]: DonnieBoy_ issued server command: /npc tp --uuid 38395a7b-f100-458d-a470-81f01cf08410
[06:30:00] [Server thread/WARN]: DonnieBoy_ moved too quickly! 189.8343924916513,-5.079487497289698,-110.76505059643807
[06:30:01] [Server thread/INFO]: [Citizens] Removing respawns of 0{&#FB22B8&k0&#CF29CA&k0&#A231DC&k0&#7638ED&k0&#493FFF&k0&#5D42EF&k0&#7145DE&k0&#8548CE&k0&#994BBD&k0&#8A5BC0&k0&#7A6BC4&k0&#6B7BC7&k0&#5B8BCA&k0, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 0{&#FB22B8&k0&#CF29CA&k0&#A231DC&k0&#7638ED&k0&#493FFF&k0&#5D42EF&k0&#7145DE&k0&#8548CE&k0&#994BBD&k0&#8A5BC0&k0&#7A6BC4&k0&#6B7BC7&k0&#5B8BCA&k0, ARMOR_STAND} SpawnReason.PLUGIN
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=PurpleWard} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=wfoodie2} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CoolCow} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=wfoodie} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie1} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie14} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie17} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie18} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie12} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie13} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie16} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie15} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie9} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie8} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie5} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie2} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie3} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie4} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie10} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie11} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie7} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie6} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Marbean} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Juicers} to CraftPlayer{name=DonnieBoy_} (15t delay, reset true)
[06:30:01] [Server thread/INFO]: [Citizens] Respawning all NPCs at [7,-75] due to org.bukkit.event.world.ChunkLoadEvent@65466a39 at [7,-75]
[06:30:01] [Server thread/INFO]: [Citizens] Removing respawns of 85{mulk2, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 85{mulk2, PLAYER} SpawnReason.CHUNK_LOAD
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 85{mulk2, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@65466a39 at [7,-75]
[06:30:01] [Server thread/INFO]: [Citizens] Removing respawns of 84{mulk1, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 84{mulk1, PLAYER} SpawnReason.CHUNK_LOAD
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 84{mulk1, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@65466a39 at [7,-75]
[06:30:01] [Server thread/INFO]: [Citizens] Removing respawns of 31{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 31{, ARMOR_STAND} SpawnReason.PLUGIN
[06:30:01] [Server thread/INFO]: [Citizens] Removing respawns of 32{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 32{, ARMOR_STAND} SpawnReason.PLUGIN
[06:30:01] [Server thread/INFO]: [Citizens] Respawning all NPCs at [6,-74] due to org.bukkit.event.world.ChunkLoadEvent@63d03108 at [6,-74]
[06:30:01] [Server thread/INFO]: [Citizens] Removing respawns of 105{Mark, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 105{Mark, PLAYER} SpawnReason.CHUNK_LOAD
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 105{Mark, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@63d03108 at [6,-74]
[06:30:01] [Server thread/INFO]: [Citizens] Respawning all NPCs at [7,-76] due to org.bukkit.event.world.ChunkLoadEvent@24704eaf at [7,-76]
[06:30:01] [Server thread/INFO]: [Citizens] Removing respawns of 87{mulk4, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 87{mulk4, PLAYER} SpawnReason.CHUNK_LOAD
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 87{mulk4, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@24704eaf at [7,-76]
[06:30:01] [Server thread/INFO]: [Citizens] Removing respawns of 86{mulk3, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 86{mulk3, PLAYER} SpawnReason.CHUNK_LOAD
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 86{mulk3, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@24704eaf at [7,-76]
[06:30:01] [Server thread/INFO]: [Citizens] Respawning all NPCs at [8,-75] due to org.bukkit.event.world.ChunkLoadEvent@1752c0f at [8,-75]
[06:30:01] [Server thread/INFO]: [Citizens] Removing respawns of 5{&6&lRachel, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 5{&6&lRachel, PLAYER} SpawnReason.CHUNK_LOAD
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 5{&6&lRachel, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@1752c0f at [8,-75]
[06:30:01] [Server thread/INFO]: [Citizens] Removing respawns of 33{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 33{, ARMOR_STAND} SpawnReason.PLUGIN
[06:30:01] [Server thread/INFO]: [Citizens] Removing respawns of 34{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:30:01] [Server thread/INFO]: [Citizens] Spawned 34{, ARMOR_STAND} SpawnReason.PLUGIN
[06:30:01] [Server thread/INFO]: [Citizens] 80{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=172.5,y=41.0,z=-947.5,pitch=0.0,yaw=0.0}]
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=PurpleWard} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=wfoodie2} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CoolCow} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=wfoodie} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie1} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie14} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie17} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie18} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie12} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie13} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie16} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie15} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie9} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie8} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie5} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie2} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie3} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie4} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie10} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie11} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie7} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie6} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Marbean} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Juicers} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=PurpleWard} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=wfoodie2} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CoolCow} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=wfoodie} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie1} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie14} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie17} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie18} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie12} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie13} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie16} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie15} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie9} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie8} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie5} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie2} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie3} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie4} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie10} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie11} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie7} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=foodie6} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Marbean} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:01] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Juicers} to CraftPlayer{name=DonnieBoy_} (10t delay, reset false)
[06:30:02] [Server thread/INFO]: [Citizens] Respawning all NPCs at [3,-75] due to org.bukkit.event.world.ChunkLoadEvent@37c96883 at [3,-75]
[06:30:02] [Server thread/INFO]: [Citizens] Removing respawns of 94{coin5, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:30:02] [Server thread/INFO]: [Citizens] Spawned 94{coin5, PLAYER} SpawnReason.CHUNK_LOAD
[06:30:02] [Server thread/INFO]: [Citizens] Spawned 94{coin5, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@37c96883 at [3,-75]
[06:30:02] [Server thread/INFO]: [Citizens] Removing respawns of 93{coin4, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:30:02] [Server thread/INFO]: [Citizens] Spawned 93{coin4, PLAYER} SpawnReason.CHUNK_LOAD
[06:30:02] [Server thread/INFO]: [Citizens] Spawned 93{coin4, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@37c96883 at [3,-75]
[06:30:02] [Server thread/INFO]: [Citizens] Removing respawns of 35{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:30:02] [Server thread/INFO]: [Citizens] Spawned 35{, ARMOR_STAND} SpawnReason.PLUGIN
[06:30:02] [Server thread/INFO]: [Citizens] Removing respawns of 36{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:30:02] [Server thread/INFO]: [Citizens] Spawned 36{, ARMOR_STAND} SpawnReason.PLUGIN
[06:30:02] [Server thread/INFO]: [Citizens] Respawning all NPCs at [2,-75] due to org.bukkit.event.world.ChunkLoadEvent@3f3b18f7 at [2,-75]
[06:30:02] [Server thread/INFO]: [Citizens] Removing respawns of 95{coin6, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:30:02] [Server thread/INFO]: [Citizens] Spawned 95{coin6, PLAYER} SpawnReason.CHUNK_LOAD
[06:30:02] [Server thread/INFO]: [Citizens] Spawned 95{coin6, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@3f3b18f7 at [2,-75]
[06:30:02] [Server thread/INFO]: [Citizens] Removing respawns of 37{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:30:02] [Server thread/INFO]: [Citizens] Spawned 37{, ARMOR_STAND} SpawnReason.PLUGIN
[06:30:03] [Server thread/INFO]: [Citizens] Respawning all NPCs at [2,-76] due to org.bukkit.event.world.ChunkLoadEvent@7b590df3 at [2,-76]
[06:30:03] [Server thread/INFO]: [Citizens] Removing respawns of 92{coin3, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:30:03] [Server thread/INFO]: [Citizens] Spawned 92{coin3, PLAYER} SpawnReason.CHUNK_LOAD
[06:30:03] [Server thread/INFO]: [Citizens] Spawned 92{coin3, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@7b590df3 at [2,-76]
[06:30:03] [Server thread/INFO]: [Citizens] Removing respawns of 91{coin2, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:30:03] [Server thread/INFO]: [Citizens] Spawned 91{coin2, PLAYER} SpawnReason.CHUNK_LOAD
[06:30:03] [Server thread/INFO]: [Citizens] Spawned 91{coin2, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@7b590df3 at [2,-76]
[06:30:03] [Server thread/INFO]: [Citizens] Removing respawns of 90{coin1, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:30:03] [Server thread/INFO]: [Citizens] Spawned 90{coin1, PLAYER} SpawnReason.CHUNK_LOAD
[06:30:03] [Server thread/INFO]: [Citizens] Spawned 90{coin1, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@7b590df3 at [2,-76]
[06:30:03] [Server thread/INFO]: [Citizens] Removing respawns of 96{havenst1, PLAYER} due to SpawnReason.CHUNK_LOAD
[06:30:03] [Server thread/INFO]: [Citizens] Spawned 96{havenst1, PLAYER} SpawnReason.CHUNK_LOAD
[06:30:03] [Server thread/INFO]: [Citizens] Spawned 96{havenst1, PLAYER} during org.bukkit.event.world.ChunkLoadEvent@7b590df3 at [2,-76]
[06:30:03] [Server thread/INFO]: [Citizens] Removing respawns of 38{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:30:03] [Server thread/INFO]: [Citizens] Spawned 38{, ARMOR_STAND} SpawnReason.PLUGIN
[06:30:03] [Server thread/INFO]: [Citizens] Removing respawns of 39{, ARMOR_STAND} due to SpawnReason.PLUGIN
[06:30:03] [Server thread/INFO]: [Citizens] Spawned 39{, ARMOR_STAND} SpawnReason.PLUGIN
[06:30:03] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{&#FB22B8&k0&#CF29CA&k0&#A231DC&k0&#7638ED&k0&#493FFF&k0&#5D42EF&k0&#7145DE&k0&#8548CE&k0&#994BBD&k0&#8A5BC0&k0&#7A6BC4&k0&#6B7BC7&k0&#5B8BCA&k0, null} due to DespawnReason.REMOVAL
[06:30:03] [Server thread/INFO]: [Citizens] Despawned 0{&#FB22B8&k0&#CF29CA&k0&#A231DC&k0&#7638ED&k0&#493FFF&k0&#5D42EF&k0&#7145DE&k0&#8548CE&k0&#994BBD&k0&#8A5BC0&k0&#7A6BC4&k0&#6B7BC7&k0&#5B8BCA&k0, null} DespawnReason.REMOVAL
[06:30:05] [Server thread/INFO]: DonnieBoy_ issued server command: /npc sel
[06:30:08] [Server thread/INFO]: [Citizens] 80{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=149.5,y=40.0,z=-949.5,pitch=0.0,yaw=0.0}]
[06:30:08] [Server thread/INFO]: DonnieBoy_ issued server command: /npc path
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 0{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 0{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 1{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 1{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 2{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 2{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 3{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 3{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 4{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 4{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 5{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 5{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 6{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 6{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 7{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 7{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 8{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 8{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 9{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 9{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 10{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 10{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 11{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 11{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 12{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 12{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 13{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 13{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 14{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 14{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 15{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 15{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 16{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 16{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 17{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 17{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 18{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 18{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 19{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 19{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 20{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 20{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 21{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 21{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 22{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 22{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 23{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 23{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 24{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 24{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 25{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 25{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 26{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 26{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 27{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 27{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 28{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 28{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 29{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 29{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 30{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 30{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 31{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 31{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 32{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 32{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 33{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 33{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 34{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 34{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 35{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 35{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 36{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 36{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 37{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 37{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 38{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 38{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 39{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 39{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 40{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 40{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 41{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 41{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 42{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 42{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 43{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 43{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 44{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 44{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 45{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 45{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 46{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 46{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 47{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 47{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 48{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 48{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 49{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 49{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 50{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 50{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 51{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 51{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 52{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 52{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 53{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 53{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 54{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 54{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 55{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 55{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 56{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 56{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 57{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 57{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 58{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 58{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 59{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 59{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 60{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 60{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 61{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 61{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 62{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 62{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 63{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 63{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 64{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 64{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 65{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 65{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 66{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 66{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 67{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 67{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 68{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 68{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 69{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 69{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 70{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 70{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 71{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 71{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 72{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 72{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 73{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 73{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 74{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 74{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 75{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 75{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 76{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 76{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 77{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 77{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 78{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 78{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 79{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 79{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 80{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 80{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 81{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 81{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 82{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 82{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 83{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 83{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 84{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 84{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 85{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 85{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 86{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 86{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 87{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 87{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 88{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 88{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Removing respawns of 89{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:08] [Server thread/INFO]: [Citizens] Spawned 89{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:10] [Server thread/INFO]: [Citizens] Removing respawns of 90{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:10] [Server thread/INFO]: [Citizens] Spawned 90{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:11] [Server thread/INFO]: [Citizens] Removing respawns of 91{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:11] [Server thread/INFO]: [Citizens] Spawned 91{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:12] [Server thread/INFO]: [Citizens] Removing respawns of 92{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:12] [Server thread/INFO]: [Citizens] Spawned 92{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:16] [Server thread/INFO]: [Citizens] Removing respawns of 93{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:16] [Server thread/INFO]: [Citizens] Spawned 93{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:17] [Server thread/INFO]: [Citizens] Removing respawns of 94{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:17] [Server thread/INFO]: [Citizens] Spawned 94{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:17] [Server thread/INFO]: [Citizens] Removing respawns of 95{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:17] [Server thread/INFO]: [Citizens] Spawned 95{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:17] [Server thread/INFO]: [Citizens] Removing respawns of 96{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:17] [Server thread/INFO]: [Citizens] Spawned 96{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:18] [Server thread/INFO]: [Citizens] Removing respawns of 97{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:18] [Server thread/INFO]: [Citizens] Spawned 97{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:18] [Server thread/INFO]: [Citizens] Removing respawns of 98{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:18] [Server thread/INFO]: [Citizens] Spawned 98{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:18] [Server thread/INFO]: [Citizens] Removing respawns of 99{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:18] [Server thread/INFO]: [Citizens] Spawned 99{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:18] [Server thread/INFO]: [Citizens] Removing respawns of 100{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:18] [Server thread/INFO]: [Citizens] Spawned 100{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:19] [Server thread/INFO]: [Citizens] Removing respawns of 101{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:19] [Server thread/INFO]: [Citizens] Spawned 101{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:19] [Server thread/INFO]: [Citizens] Removing respawns of 102{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:19] [Server thread/INFO]: [Citizens] Spawned 102{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:19] [Server thread/INFO]: [Citizens] Removing respawns of 103{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:19] [Server thread/INFO]: [Citizens] Spawned 103{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:20] [Server thread/INFO]: [Citizens] Removing respawns of 104{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:20] [Server thread/INFO]: [Citizens] Spawned 104{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:20] [Server thread/INFO]: [Citizens] Removing respawns of 105{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:20] [Server thread/INFO]: [Citizens] Spawned 105{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:20] [Server thread/INFO]: [Citizens] Removing respawns of 106{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:20] [Server thread/INFO]: [Citizens] Spawned 106{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:21] [Server thread/INFO]: [Citizens] Removing respawns of 107{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:21] [Server thread/INFO]: [Citizens] Spawned 107{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:21] [Server thread/INFO]: [Citizens] Removing respawns of 108{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:21] [Server thread/INFO]: [Citizens] Spawned 108{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:21] [Server thread/INFO]: [Citizens] Removing respawns of 109{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:21] [Server thread/INFO]: [Citizens] Spawned 109{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:21] [Server thread/INFO]: [Citizens] Removing respawns of 110{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:21] [Server thread/INFO]: [Citizens] Spawned 110{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:22] [Server thread/INFO]: [Citizens] Removing respawns of 111{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:22] [Server thread/INFO]: [Citizens] Spawned 111{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:22] [Server thread/INFO]: [Citizens] Removing respawns of 112{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:22] [Server thread/INFO]: [Citizens] Spawned 112{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:22] [Server thread/INFO]: [Citizens] Removing respawns of 113{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:22] [Server thread/INFO]: [Citizens] Spawned 113{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:22] [Server thread/INFO]: [Citizens] Removing respawns of 114{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:22] [Server thread/INFO]: [Citizens] Spawned 114{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:23] [Server thread/INFO]: [Citizens] Removing respawns of 115{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:23] [Server thread/INFO]: [Citizens] Spawned 115{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:23] [Server thread/INFO]: [Citizens] Removing respawns of 116{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:23] [Server thread/INFO]: [Citizens] Spawned 116{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:23] [Server thread/INFO]: [Citizens] Removing respawns of 117{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:23] [Server thread/INFO]: [Citizens] Spawned 117{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:23] [Server thread/INFO]: [Citizens] Removing respawns of 118{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:23] [Server thread/INFO]: [Citizens] Spawned 118{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:23] [Server thread/INFO]: [Citizens] Removing respawns of 119{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:23] [Server thread/INFO]: [Citizens] Spawned 119{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:24] [Server thread/INFO]: [Citizens] Removing respawns of 120{, SHULKER_BULLET} due to SpawnReason.CREATE
[06:30:24] [Server thread/INFO]: [Citizens] Spawned 120{, SHULKER_BULLET} SpawnReason.CREATE
[06:30:30] [Server thread/INFO]: [Citizens] 80{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=161.5,y=40.0,z=-945.5,pitch=0.0,yaw=0.0}]
[06:30:30] [Server thread/INFO]: [Citizens] 80{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=149.5,y=41.0,z=-946.5,pitch=0.0,yaw=0.0}]
[06:30:30] [Server thread/INFO]: [Citizens] 80{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=173.5,y=40.0,z=-981.5,pitch=0.0,yaw=0.0}]
[06:30:31] [Server thread/INFO]: [Citizens] 80{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=164.5,y=44.0,z=-979.5,pitch=0.0,yaw=0.0}]
[06:30:31] [Server thread/INFO]: [Citizens] 80{foodie, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=Calisto (1)},x=131.5,y=40.0,z=-950.5,pitch=0.0,yaw=0.0}]