Paste #103067: Npc Pathfinding Bug Log

Date: 2022/11/08 11:31:06 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825


[14:25:18] [ServerMain/INFO]: Building unoptimized datafixer
[14:25:19] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[14:25:21] [ServerMain/INFO]: Loaded 7 recipes
[14:25:22] [Server thread/INFO]: Starting minecraft server version 1.19.2
[14:25:22] [Server thread/INFO]: Loading properties
[14:25:22] [Server thread/INFO]: This server is running Paper version git-Paper-263 (MC: 1.19.2) (Implementing API version 1.19.2-R0.1-SNAPSHOT) (Git: 3ac1a8d)
[14:25:22] [Server thread/INFO]: Server Ping Player Sample Count: 12
[14:25:22] [Server thread/INFO]: Using 4 threads for Netty based IO
[14:25:22] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
[14:25:22] [Server thread/INFO]: Default game type: SURVIVAL
[14:25:22] [Server thread/INFO]: Generating keypair
[14:25:22] [Server thread/INFO]: Starting Minecraft server on *:25565
[14:25:22] [Server thread/INFO]: Using default channel type
[14:25:22] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[14:25:22] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[14:25:23] [Server thread/INFO]: [Denizen] Loading 2 libraries... please wait
[14:25:23] [Server thread/INFO]: [Denizen] Loaded library C:\Users\colin\Desktop\Aetheria Test Servers\Duskwater 1.19.2\libraries\org\mongodb\mongodb-driver-sync\4.7.0\mongodb-driver-sync-4.7.0.jar
[14:25:23] [Server thread/INFO]: [Denizen] Loaded library C:\Users\colin\Desktop\Aetheria Test Servers\Duskwater 1.19.2\libraries\org\mongodb\bson\4.7.0\bson-4.7.0.jar
[14:25:23] [Server thread/INFO]: [Denizen] Loaded library C:\Users\colin\Desktop\Aetheria Test Servers\Duskwater 1.19.2\libraries\org\mongodb\mongodb-driver-core\4.7.0\mongodb-driver-core-4.7.0.jar
[14:25:23] [Server thread/INFO]: [Denizen] Loaded library C:\Users\colin\Desktop\Aetheria Test Servers\Duskwater 1.19.2\libraries\org\mongodb\bson-record-codec\4.7.0\bson-record-codec-4.7.0.jar
[14:25:23] [Server thread/INFO]: [Denizen] Loaded library C:\Users\colin\Desktop\Aetheria Test Servers\Duskwater 1.19.2\libraries\redis\clients\jedis\3.7.0\jedis-3.7.0.jar
[14:25:23] [Server thread/INFO]: [Denizen] Loaded library C:\Users\colin\Desktop\Aetheria Test Servers\Duskwater 1.19.2\libraries\org\slf4j\slf4j-api\1.7.30\slf4j-api-1.7.30.jar
[14:25:23] [Server thread/INFO]: [Denizen] Loaded library C:\Users\colin\Desktop\Aetheria Test Servers\Duskwater 1.19.2\libraries\org\apache\commons\commons-pool2\2.10.0\commons-pool2-2.10.0.jar
[14:25:23] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2746)
[14:25:23] [Server thread/INFO]: [Denizen] Loading Denizen v1.2.5-SNAPSHOT (build 6543-DEV)
[14:25:23] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.2-SNAPSHOT-b870
[14:25:23] [Server thread/INFO]: [dDiscordBot] Loading dDiscordBot v0.7 (build 253)
[14:25:23] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[14:25:23] [Server thread/INFO]: Preparing level "world"
[14:25:24] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[14:25:24] [Server thread/INFO]: Time elapsed: 155 ms
[14:25:24] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[14:25:24] [Server thread/INFO]: Time elapsed: 28 ms
[14:25:24] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2746)
[14:25:25] [Server thread/INFO]: [Denizen] Enabling Denizen v1.2.5-SNAPSHOT (build 6543-DEV)
[14:25:25] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.90.2-SNAPSHOT (Build 1283), impl for Spigot v1.2.5-SNAPSHOT (build 6543-DEV) 
[14:25:25] [Server thread/INFO]: +> [Denizen] Running on java version: 18 
[14:25:25] [Server thread/INFO]: +> [Denizen] Running on unrecognized (future?) Java version. May or may not work. 
[14:25:25] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[14:25:25] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[14:25:25] [Server thread/INFO]: +> [Denizen]  
[14:25:25] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[14:25:25] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[14:25:25] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[14:25:25] [Server thread/INFO]: +> [Denizen] version: 1.2.5-SNAPSHOT (build 6543-DEV) 
[14:25:25] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[14:25:26] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[14:25:27] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[14:25:27] [Server thread/INFO]: +> [Denizen] Loaded 151 core commands and 28 core object types, at 1770ms from start. 
[14:25:27] [Server thread/INFO]: +> [ScriptRegistry] Loading 1 script files... 
[14:25:27] [Server thread/INFO]: +> [Denizen] Final full init took 2039ms. 
[14:25:27] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.2-SNAPSHOT-b870
[14:25:27] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.2-SNAPSHOT-b870" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[14:25:27] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[14:25:27] [Server thread/INFO]: [Multiverse-Core] 2 - World(s) loaded.
[14:25:27] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[14:25:27] [Server thread/INFO]: [Multiverse-Core] Version 4.3.2-SNAPSHOT-b870 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[14:25:27] [Server thread/INFO]: [dDiscordBot] Enabling dDiscordBot v0.7 (build 253)
[14:25:27] [Server thread/INFO]: +> [DenizenDisco...] dDiscordBot loaded! 
[14:25:27] [Server thread/INFO]: +> [JDA] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". 
[14:25:27] [Server thread/INFO]: +> [JDA] SLF4J: Defaulting to no-operation (NOP) logger implementation 
[14:25:27] [Server thread/INFO]: +> [JDA] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. 
[14:25:27] [Server thread/INFO]: Running delayed init tasks
[14:25:27] [Server thread/INFO]: [Citizens] Loaded 0 NPCs.
[14:25:27] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[14:25:27] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[14:25:27] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2022/11/08 14:25:25 
[14:25:27] [Server thread/INFO]: Done (5.568s)! For help, type "help"
[14:25:27] [Server thread/INFO]: Timings Reset
[14:25:31] [User Authenticator #0/INFO]: UUID of player Insilvon is 1ab1ee9b-873a-4545-bb5b-254e7b23b0e0
[14:25:31] [Server thread/INFO]: Insilvon joined the game
[14:25:31] [Server thread/INFO]: Insilvon[/127.0.0.1:56881] logged in with entity id 20 at ([world]118.5, 172.0, -4680.5)
[14:25:38] [Server thread/INFO]: Insilvon issued server command: /gamemode creative
[14:25:38] [Server thread/INFO]: [Insilvon: Set own game mode to Creative Mode]
[14:25:43] [Server thread/INFO]: Insilvon issued server command: /ex run SHOW_NPC_PATHFINDING_BUG
[14:25:43] [Server thread/INFO]: Starting InstantQueue 'EXCOMMAND_0_ViiClicking' with player 'Insilvon'... 
[14:25:43] [Server thread/INFO]: +- Queue 'EXCOMMAND_0_ViiClicking' Executing: (line 1) run SHOW_NPC_PATHFINDING_BUG ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'RUN': script='s@show_npc_pathfinding_bug (TASK)'   
[14:25:43] [Server thread/INFO]: Starting InstantQueue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' with player 'Insilvon'... 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 6) define origin <location[npc_start_pos]> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <location[npc_start_pos]> with 'npc_start_pos ([email protected], 171.155893719981, -4676.434463342857, 13.73679352, 89.93769073, world)'. 
[14:25:43] [Server thread/INFO]: +> Executing 'DEFINE': Queue='q@SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest'  definition='origin'  value='npc_start_pos ([email protected], 171.155893719981, -4676.434463342857, 13.73679352, 89.93769073, world)'   
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 7) define destination <location[npc_end_pos]> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <location[npc_end_pos]> with 'npc_end_pos ([email protected], 171.155893719981, -4676.503464856936, 13.73679352, 89.93769073, world)'. 
[14:25:43] [Server thread/INFO]: +> Executing 'DEFINE': Queue='q@SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest'  definition='destination'  value='npc_end_pos ([email protected], 171.155893719981, -4676.503464856936, 13.73679352, 89.93769073, world)'   
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 9) define distance_between_waypoints 15 ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'DEFINE': Queue='q@SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest'  definition='distance_between_waypoints'  value='15'   
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 10) define waypoints <[origin].points_between[<[destination]>].distance[<[distance_between_waypoints]>]> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[destination]> with 'npc_end_pos ([email protected], 171.155893719981, -4676.503464856936, 13.73679352, 89.93769073, world)'. 
[14:25:43] [Server thread/INFO]: Filled tag <[distance_between_waypoints]> with '15'. 
[14:25:43] [Server thread/INFO]: Filled tag <[origin].points_between[l@npc_end_pos].distance[15]> with 'li@ (Size 45): npc_start_pos ([email protected], 171.155893719981, -4676.434463342857, 13.73679352, 89.93769073, world) | [email protected], 171.155893719981, -4676.436016574255, 13.73679352, 89.93769073, world | 
                 [email protected], 171.155893719981... *snip!*..., 171.155893719981, -4676.4981458301445, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.499699061542, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.501252292938, 13.73679352, 
                 89.93769073, world | [email protected], 171.155893719981, -4676.502805524336, 13.73679352, 89.93769073, world'. 
[14:25:43] [Server thread/INFO]: +> Executing 'DEFINE': Queue='q@SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest'  definition='waypoints'  value='li@ (Size 45): npc_start_pos ([email protected], 171.155893719981, -4676.434463342857, 13.73679352, 89.93769073, world) | [email protected], 171.155893719981, -4676.436016574255, 
                 13.73679352, 89.93769073, world | [email protected], 171.1558937... *snip!*... 171.155893719981, -4676.4981458301445, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.499699061542, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, 
                 -4676.501252292938, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.502805524336, 13.73679352, 89.93769073, world'   
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 12) foreach <[waypoints]> as:waypoint ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoints]> with 'li@ (Size 45): npc_start_pos ([email protected], 171.155893719981, -4676.434463342857, 13.73679352, 89.93769073, world) | [email protected], 171.155893719981, -4676.436016574255, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, 
                 -4676.437569805652, 13.73679352, 89.93769073,<Y... *snip!*..., 171.155893719981, -4676.4981458301445, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.499699061542, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.501252292938, 
                 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.502805524336, 13.73679352, 89.93769073, world'. 
[14:25:43] [Server thread/INFO]: +> Executing 'FOREACH': list='li@ (Size 45): npc_start_pos ([email protected], 171.155893719981, -4676.434463342857, 13.73679352, 89.93769073, world) | [email protected], 171.155893719981, -4676.436016574255, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, 
                 -4676.437569805652, 13.73679352, 89.93769073, world | [email protected],<Y... *snip!*... -4676.4981458301445, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.499699061542, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.501252292938, 
                 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.502805524336, 13.73679352, 89.93769073, world'  as='waypoint'   
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 2 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 3 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 4 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 5 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 6 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 7 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 8 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 9 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 10 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 11 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 12 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 13 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 14 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 15 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 16 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 17 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 18 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 19 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 20 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 21 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 22 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 23 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 24 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 25 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 26 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 27 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 28 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 29 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 30 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 31 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 32 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 33 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 34 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 35 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 36 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 37 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 38 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'false'. 
[14:25:43] [Server thread/INFO]: If command passed, running block. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 14) chunkload <[waypoint].chunk> duration:10m ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk> with 'ch@42,-293,world'. 
[14:25:43] [Server thread/INFO]: +> Executing 'CHUNKLOAD': action='ADD'  location='li@ (Size 1): ch@42,-293,world'  duration='d@10m (10m)'   
[14:25:43] [Server thread/INFO]: ...added chunk 42, -293 with a delay of 600.0 seconds. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 39 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'false'. 
[14:25:43] [Server thread/INFO]: If command passed, running block. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 14) chunkload <[waypoint].chunk> duration:10m ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk> with 'ch@43,-293,world'. 
[14:25:43] [Server thread/INFO]: +> Executing 'CHUNKLOAD': action='ADD'  location='li@ (Size 1): ch@43,-293,world'  duration='d@10m (10m)'   
[14:25:43] [Server thread/INFO]: ...added chunk 43, -293 with a delay of 600.0 seconds. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 40 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'false'. 
[14:25:43] [Server thread/INFO]: If command passed, running block. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 14) chunkload <[waypoint].chunk> duration:10m ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk> with 'ch@44,-293,world'. 
[14:25:43] [Server thread/INFO]: +> Executing 'CHUNKLOAD': action='ADD'  location='li@ (Size 1): ch@44,-293,world'  duration='d@10m (10m)'   
[14:25:43] [Server thread/INFO]: ...added chunk 44, -293 with a delay of 600.0 seconds. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 41 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'false'. 
[14:25:43] [Server thread/INFO]: If command passed, running block. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 14) chunkload <[waypoint].chunk> duration:10m ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk> with 'ch@45,-293,world'. 
[14:25:43] [Server thread/INFO]: +> Executing 'CHUNKLOAD': action='ADD'  location='li@ (Size 1): ch@45,-293,world'  duration='d@10m (10m)'   
[14:25:43] [Server thread/INFO]: ...added chunk 45, -293 with a delay of 600.0 seconds. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 42 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'false'. 
[14:25:43] [Server thread/INFO]: If command passed, running block. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 14) chunkload <[waypoint].chunk> duration:10m ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk> with 'ch@46,-293,world'. 
[14:25:43] [Server thread/INFO]: +> Executing 'CHUNKLOAD': action='ADD'  location='li@ (Size 1): ch@46,-293,world'  duration='d@10m (10m)'   
[14:25:43] [Server thread/INFO]: ...added chunk 46, -293 with a delay of 600.0 seconds. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 43 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: No part of the if command passed, no block will run. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 44 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'false'. 
[14:25:43] [Server thread/INFO]: If command passed, running block. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 14) chunkload <[waypoint].chunk> duration:10m ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk> with 'ch@47,-293,world'. 
[14:25:43] [Server thread/INFO]: +> Executing 'CHUNKLOAD': action='ADD'  location='li@ (Size 1): ch@47,-293,world'  duration='d@10m (10m)'   
[14:25:43] [Server thread/INFO]: ...added chunk 47, -293 with a delay of 600.0 seconds. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop 45 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 13) if !<[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: +> Executing 'IF': use_braces='true'   
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'false'. 
[14:25:43] [Server thread/INFO]: If command passed, running block. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 14) chunkload <[waypoint].chunk> duration:10m ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk> with 'ch@48,-293,world'. 
[14:25:43] [Server thread/INFO]: +> Executing 'CHUNKLOAD': action='ADD'  location='li@ (Size 1): ch@48,-293,world'  duration='d@10m (10m)'   
[14:25:43] [Server thread/INFO]: ...added chunk 48, -293 with a delay of 600.0 seconds. 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 15) narrate <[waypoint].chunk.is_loaded> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint].chunk.is_loaded> with 'true'. 
[14:25:43] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:25:43] [Server thread/INFO]: +- Foreach loop complete ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 17) create parrot bird_1 <[origin]> save:bird ---------+ 
[14:25:43] [Server thread/INFO]: ...remembering this script entry as 'bird'! 
[14:25:43] [Server thread/INFO]: Filled tag <[origin]> with 'npc_start_pos ([email protected], 171.155893719981, -4676.434463342857, 13.73679352, 89.93769073, world)'. 
[14:25:43] [Server thread/INFO]: +> Executing 'CREATE': name='bird_1'  entity_type='e@parrot'  spawn_location='npc_start_pos ([email protected], 171.155893719981, -4676.434463342857, 13.73679352, 89.93769073, world)'   
[14:25:43] [Server thread/INFO]: [Citizens] Removing respawns of 136{bird_1, PLAYER} due to SpawnReason.PLUGIN
[14:25:43] [Server thread/INFO]: [Citizens] Spawned 136{bird_1, PARROT} SpawnReason.PLUGIN
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 18) define bird <entry[bird].created_npc> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <entry[bird].created_npc> with 'n@136 (bird_1)'. 
[14:25:43] [Server thread/INFO]: +> Executing 'DEFINE': Queue='q@SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest'  definition='bird'  value='n@136 (bird_1)'   
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 20) foreach <[waypoints]> as:waypoint ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoints]> with 'li@ (Size 45): npc_start_pos ([email protected], 171.155893719981, -4676.434463342857, 13.73679352, 89.93769073, world) | [email protected], 171.155893719981, -4676.436016574255, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, 
                 -4676.437569805652, 13.73679352, 89.93769073,<Y... *snip!*..., 171.155893719981, -4676.4981458301445, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.499699061542, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.501252292938, 
                 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.502805524336, 13.73679352, 89.93769073, world'. 
[14:25:43] [Server thread/INFO]: +> Executing 'FOREACH': list='li@ (Size 45): npc_start_pos ([email protected], 171.155893719981, -4676.434463342857, 13.73679352, 89.93769073, world) | [email protected], 171.155893719981, -4676.436016574255, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, 
                 -4676.437569805652, 13.73679352, 89.93769073, world | [email protected],<Y... *snip!*... -4676.4981458301445, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.499699061542, 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.501252292938, 
                 13.73679352, 89.93769073, world | [email protected], 171.155893719981, -4676.502805524336, 13.73679352, 89.93769073, world'  as='waypoint'   
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint]> with 'npc_start_pos ([email protected], 171.155893719981, -4676.434463342857, 13.73679352, 89.93769073, world)'. 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint]> with 'npc_start_pos ([email protected], 171.155893719981, -4676.434463342857, 13.73679352, 89.93769073, world)'. 
[14:25:43] [Server thread/INFO]: +> Executing 'WALK': lookat='npc_start_pos ([email protected], 171.155893719981, -4676.434463342857, 13.73679352, 89.93769073, world)'  auto_range='true'  lookat='npc_start_pos ([email protected], 171.155893719981, -4676.434463342857, 13.73679352, 89.93769073, world)'  stop='false'  
                 entities='[n@136 (bird_1)]'   
[14:25:43] [Server thread/INFO]: Forcing queue SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest into a timed queue... 
[14:25:43] [Server thread/INFO]: Completing queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' in 391ms. 
[14:25:43] [Server thread/INFO]: Starting TimedQueue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' with player 'Insilvon'... 
[14:25:43] [Server thread/INFO]: Completing queue 'EXCOMMAND_0_ViiClicking' in 397ms. 
[14:25:43] [Server thread/INFO]: +- Foreach loop 2 ---------+ 
[14:25:43] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:25:43] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.436016574255, 13.73679352, 89.93769073, world'. 
[14:25:43] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.436016574255, 13.73679352, 89.93769073, world'. 
[14:25:43] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.436016574255, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.436016574255, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:25:46] [Server thread/INFO]: +- Foreach loop 3 ---------+ 
[14:25:46] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:25:46] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:25:46] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.437569805652, 13.73679352, 89.93769073, world'. 
[14:25:46] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.437569805652, 13.73679352, 89.93769073, world'. 
[14:25:46] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.437569805652, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.437569805652, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:25:49] [Server thread/INFO]: +- Foreach loop 4 ---------+ 
[14:25:49] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:25:49] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:25:49] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.439123037049, 13.73679352, 89.93769073, world'. 
[14:25:49] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.439123037049, 13.73679352, 89.93769073, world'. 
[14:25:49] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.439123037049, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.439123037049, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:25:52] [Server thread/INFO]: +- Foreach loop 5 ---------+ 
[14:25:52] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:25:52] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:25:52] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.440676268447, 13.73679352, 89.93769073, world'. 
[14:25:52] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.440676268447, 13.73679352, 89.93769073, world'. 
[14:25:52] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.440676268447, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.440676268447, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:25:55] [Server thread/INFO]: +- Foreach loop 6 ---------+ 
[14:25:55] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:25:55] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:25:55] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.442229499843, 13.73679352, 89.93769073, world'. 
[14:25:55] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.442229499843, 13.73679352, 89.93769073, world'. 
[14:25:55] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.442229499843, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.442229499843, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:25:58] [Server thread/INFO]: +- Foreach loop 7 ---------+ 
[14:25:58] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:25:58] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:25:58] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.44378273124, 13.73679352, 89.93769073, world'. 
[14:25:58] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.44378273124, 13.73679352, 89.93769073, world'. 
[14:25:58] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.44378273124, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.44378273124, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:26:01] [Server thread/INFO]: +- Foreach loop 8 ---------+ 
[14:26:01] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:26:01] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:26:01] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.445335962638, 13.73679352, 89.93769073, world'. 
[14:26:01] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.445335962638, 13.73679352, 89.93769073, world'. 
[14:26:01] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.445335962638, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.445335962638, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:26:04] [Server thread/INFO]: +- Foreach loop 9 ---------+ 
[14:26:04] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:26:04] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:26:04] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.446889194035, 13.73679352, 89.93769073, world'. 
[14:26:04] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.446889194035, 13.73679352, 89.93769073, world'. 
[14:26:04] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.446889194035, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.446889194035, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:26:07] [Server thread/INFO]: +- Foreach loop 10 ---------+ 
[14:26:07] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:26:07] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:26:07] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.448442425432, 13.73679352, 89.93769073, world'. 
[14:26:07] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.448442425432, 13.73679352, 89.93769073, world'. 
[14:26:07] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.448442425432, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.448442425432, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:26:10] [Server thread/INFO]: +- Foreach loop 11 ---------+ 
[14:26:10] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:26:10] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:26:10] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.44999565683, 13.73679352, 89.93769073, world'. 
[14:26:10] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.44999565683, 13.73679352, 89.93769073, world'. 
[14:26:10] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.44999565683, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.44999565683, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:26:13] [Server thread/INFO]: +- Foreach loop 12 ---------+ 
[14:26:13] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:26:13] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:26:13] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.451548888227, 13.73679352, 89.93769073, world'. 
[14:26:13] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.451548888227, 13.73679352, 89.93769073, world'. 
[14:26:13] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.451548888227, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.451548888227, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:26:16] [Server thread/INFO]: +- Foreach loop 13 ---------+ 
[14:26:16] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:26:16] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:26:16] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.453102119624, 13.73679352, 89.93769073, world'. 
[14:26:16] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.453102119624, 13.73679352, 89.93769073, world'. 
[14:26:16] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.453102119624, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.453102119624, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:26:19] [Server thread/INFO]: +- Foreach loop 14 ---------+ 
[14:26:19] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:26:19] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:26:19] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.454655351022, 13.73679352, 89.93769073, world'. 
[14:26:19] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.454655351022, 13.73679352, 89.93769073, world'. 
[14:26:19] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.454655351022, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.454655351022, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:26:23] [Server thread/INFO]: +- Foreach loop 15 ---------+ 
[14:26:23] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:26:23] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:26:23] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.456208582419, 13.73679352, 89.93769073, world'. 
[14:26:23] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.456208582419, 13.73679352, 89.93769073, world'. 
[14:26:23] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.456208582419, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.456208582419, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:26:26] [Server thread/INFO]: +- Foreach loop 16 ---------+ 
[14:26:26] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:26:26] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:26:26] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.4577618138155, 13.73679352, 89.93769073, world'. 
[14:26:26] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.4577618138155, 13.73679352, 89.93769073, world'. 
[14:26:26] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.4577618138155, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.4577618138155, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:26:29] [Server thread/INFO]: +- Foreach loop 17 ---------+ 
[14:26:29] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:26:29] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:26:29] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.459315045213, 13.73679352, 89.93769073, world'. 
[14:26:29] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.459315045213, 13.73679352, 89.93769073, world'. 
[14:26:29] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.459315045213, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.459315045213, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:26:32] [Server thread/INFO]: +- Foreach loop 18 ---------+ 
[14:26:32] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:26:32] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:26:32] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.46086827661, 13.73679352, 89.93769073, world'. 
[14:26:32] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.46086827661, 13.73679352, 89.93769073, world'. 
[14:26:32] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.46086827661, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.46086827661, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:26:35] [Server thread/INFO]: +- Foreach loop 19 ---------+ 
[14:26:35] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:26:35] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:26:35] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.4624215080075, 13.73679352, 89.93769073, world'. 
[14:26:35] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.4624215080075, 13.73679352, 89.93769073, world'. 
[14:26:35] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.4624215080075, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.4624215080075, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:26:38] [Server thread/INFO]: +- Foreach loop 20 ---------+ 
[14:26:38] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:26:38] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:26:38] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.463974739405, 13.73679352, 89.93769073, world'. 
[14:26:38] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.463974739405, 13.73679352, 89.93769073, world'. 
[14:26:38] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.463974739405, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.463974739405, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:27:32] [Async Chat Thread - #0/INFO]: <Insilvon> At this point, the bird has stopped moving.
[14:27:47] [Async Chat Thread - #0/INFO]: <Insilvon> I'm going to fly in the direction it was going - logs should start showing it moving again.
[14:27:52] [Server thread/INFO]: Insilvon issued server command: /npc list
[14:28:01] [Server thread/INFO]: Insilvon issued server command: /ex narrate <npc[136].location.chunk.is_loaded>
[14:28:01] [Server thread/INFO]: Starting InstantQueue 'EXCOMMAND_3_VolSecond' with player 'Insilvon'... 
[14:28:01] [Server thread/INFO]: +- Queue 'EXCOMMAND_3_VolSecond' Executing: (line 1) narrate <npc[136].location.chunk.is_loaded> ---------+ 
[14:28:01] [Server thread/INFO]: Filled tag <npc[136].location.chunk.is_loaded> with 'true'. 
[14:28:01] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='true'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:28:01] [Server thread/INFO]: Completing queue 'EXCOMMAND_3_VolSecond' in 1ms. 
[14:28:11] [Async Chat Thread - #0/INFO]: <Insilvon> As you can see, the chunk it is in is still loaded
[14:28:17] [Server thread/INFO]: +- Foreach loop 21 ---------+ 
[14:28:17] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:17] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:17] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.465527970802, 13.73679352, 89.93769073, world'. 
[14:28:17] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.465527970802, 13.73679352, 89.93769073, world'. 
[14:28:17] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.465527970802, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.465527970802, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:28:20] [Server thread/INFO]: +- Foreach loop 22 ---------+ 
[14:28:20] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:20] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:20] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.4670812022, 13.73679352, 89.93769073, world'. 
[14:28:20] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.4670812022, 13.73679352, 89.93769073, world'. 
[14:28:20] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.4670812022, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.4670812022, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:28:23] [Server thread/INFO]: +- Foreach loop 23 ---------+ 
[14:28:23] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:23] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:23] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.468634433597, 13.73679352, 89.93769073, world'. 
[14:28:23] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.468634433597, 13.73679352, 89.93769073, world'. 
[14:28:23] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.468634433597, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.468634433597, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:28:26] [Server thread/INFO]: +- Foreach loop 24 ---------+ 
[14:28:26] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:26] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:26] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.470187664994, 13.73679352, 89.93769073, world'. 
[14:28:26] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.470187664994, 13.73679352, 89.93769073, world'. 
[14:28:26] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.470187664994, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.470187664994, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:28:29] [Server thread/INFO]: +- Foreach loop 25 ---------+ 
[14:28:29] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:29] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:29] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.471740896391, 13.73679352, 89.93769073, world'. 
[14:28:29] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.471740896391, 13.73679352, 89.93769073, world'. 
[14:28:29] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.471740896391, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.471740896391, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:28:32] [Server thread/INFO]: +- Foreach loop 26 ---------+ 
[14:28:32] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:32] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:32] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.473294127788, 13.73679352, 89.93769073, world'. 
[14:28:32] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.473294127788, 13.73679352, 89.93769073, world'. 
[14:28:32] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.473294127788, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.473294127788, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:28:35] [Server thread/INFO]: +- Foreach loop 27 ---------+ 
[14:28:35] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:35] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:35] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.474847359185, 13.73679352, 89.93769073, world'. 
[14:28:35] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.474847359185, 13.73679352, 89.93769073, world'. 
[14:28:35] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.474847359185, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.474847359185, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:28:38] [Server thread/INFO]: +- Foreach loop 28 ---------+ 
[14:28:38] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:38] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:38] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.476400590583, 13.73679352, 89.93769073, world'. 
[14:28:38] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.476400590583, 13.73679352, 89.93769073, world'. 
[14:28:38] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.476400590583, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.476400590583, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:28:41] [Server thread/INFO]: +- Foreach loop 29 ---------+ 
[14:28:41] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:41] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:41] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.47795382198, 13.73679352, 89.93769073, world'. 
[14:28:41] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.47795382198, 13.73679352, 89.93769073, world'. 
[14:28:41] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.47795382198, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.47795382198, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:28:44] [Server thread/INFO]: +- Foreach loop 30 ---------+ 
[14:28:44] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:44] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:44] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.479507053377, 13.73679352, 89.93769073, world'. 
[14:28:44] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.479507053377, 13.73679352, 89.93769073, world'. 
[14:28:44] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.479507053377, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.479507053377, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:28:47] [Server thread/INFO]: +- Foreach loop 31 ---------+ 
[14:28:47] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:47] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:47] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.481060284775, 13.73679352, 89.93769073, world'. 
[14:28:47] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.481060284775, 13.73679352, 89.93769073, world'. 
[14:28:47] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.481060284775, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.481060284775, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:28:50] [Server thread/INFO]: +- Foreach loop 32 ---------+ 
[14:28:50] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:50] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:50] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.482613516172, 13.73679352, 89.93769073, world'. 
[14:28:50] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.482613516172, 13.73679352, 89.93769073, world'. 
[14:28:50] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.482613516172, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.482613516172, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:28:53] [Server thread/INFO]: +- Foreach loop 33 ---------+ 
[14:28:53] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:53] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:53] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.484166747569, 13.73679352, 89.93769073, world'. 
[14:28:53] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.484166747569, 13.73679352, 89.93769073, world'. 
[14:28:53] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.484166747569, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.484166747569, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:28:56] [Server thread/INFO]: +- Foreach loop 34 ---------+ 
[14:28:56] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:56] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:56] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.485719978967, 13.73679352, 89.93769073, world'. 
[14:28:56] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.485719978967, 13.73679352, 89.93769073, world'. 
[14:28:56] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.485719978967, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.485719978967, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:28:59] [Server thread/INFO]: +- Foreach loop 35 ---------+ 
[14:28:59] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:28:59] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:28:59] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.487273210363, 13.73679352, 89.93769073, world'. 
[14:28:59] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.487273210363, 13.73679352, 89.93769073, world'. 
[14:28:59] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.487273210363, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.487273210363, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:29:02] [Server thread/INFO]: +- Foreach loop 36 ---------+ 
[14:29:02] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:29:02] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:29:02] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.4888264417605, 13.73679352, 89.93769073, world'. 
[14:29:02] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.4888264417605, 13.73679352, 89.93769073, world'. 
[14:29:02] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.4888264417605, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.4888264417605, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:29:06] [Server thread/INFO]: +- Foreach loop 37 ---------+ 
[14:29:06] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:29:06] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:29:06] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.490379673158, 13.73679352, 89.93769073, world'. 
[14:29:06] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.490379673158, 13.73679352, 89.93769073, world'. 
[14:29:06] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.490379673158, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.490379673158, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:29:09] [Server thread/INFO]: +- Foreach loop 38 ---------+ 
[14:29:09] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:29:09] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:29:09] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.491932904555, 13.73679352, 89.93769073, world'. 
[14:29:09] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.491932904555, 13.73679352, 89.93769073, world'. 
[14:29:09] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.491932904555, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.491932904555, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:29:12] [Server thread/INFO]: +- Foreach loop 39 ---------+ 
[14:29:12] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:29:12] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:29:12] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.4934861359525, 13.73679352, 89.93769073, world'. 
[14:29:12] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.4934861359525, 13.73679352, 89.93769073, world'. 
[14:29:12] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.4934861359525, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.4934861359525, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:29:15] [Server thread/INFO]: +- Foreach loop 40 ---------+ 
[14:29:15] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:29:15] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:29:15] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.49503936735, 13.73679352, 89.93769073, world'. 
[14:29:15] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.49503936735, 13.73679352, 89.93769073, world'. 
[14:29:15] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.49503936735, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.49503936735, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:29:18] [Server thread/INFO]: +- Foreach loop 41 ---------+ 
[14:29:18] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:29:18] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:29:18] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.496592598747, 13.73679352, 89.93769073, world'. 
[14:29:18] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.496592598747, 13.73679352, 89.93769073, world'. 
[14:29:18] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.496592598747, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.496592598747, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:29:21] [Server thread/INFO]: +- Foreach loop 42 ---------+ 
[14:29:21] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:29:21] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:29:21] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.4981458301445, 13.73679352, 89.93769073, world'. 
[14:29:21] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.4981458301445, 13.73679352, 89.93769073, world'. 
[14:29:21] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.4981458301445, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.4981458301445, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:29:24] [Server thread/INFO]: +- Foreach loop 43 ---------+ 
[14:29:24] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:29:24] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:29:24] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.499699061542, 13.73679352, 89.93769073, world'. 
[14:29:24] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.499699061542, 13.73679352, 89.93769073, world'. 
[14:29:24] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.499699061542, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.499699061542, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:29:27] [Server thread/INFO]: +- Foreach loop 44 ---------+ 
[14:29:27] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:29:27] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:29:27] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.501252292938, 13.73679352, 89.93769073, world'. 
[14:29:27] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.501252292938, 13.73679352, 89.93769073, world'. 
[14:29:27] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.501252292938, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.501252292938, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:29:30] [Server thread/INFO]: +- Foreach loop 45 ---------+ 
[14:29:30] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 21) ~walk <[bird]> <[waypoint]> auto_range lookat:<[waypoint]> ---------+ 
[14:29:30] [Server thread/INFO]: Filled tag <[bird]> with 'n@136 (bird_1)'. 
[14:29:30] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.502805524336, 13.73679352, 89.93769073, world'. 
[14:29:30] [Server thread/INFO]: Filled tag <[waypoint]> with '[email protected], 171.155893719981, -4676.502805524336, 13.73679352, 89.93769073, world'. 
[14:29:30] [Server thread/INFO]: +> Executing 'WALK': lookat='[email protected], 171.155893719981, -4676.502805524336, 13.73679352, 89.93769073, world'  auto_range='true'  lookat='[email protected], 171.155893719981, -4676.502805524336, 13.73679352, 89.93769073, world'  stop='false'  entities='[n@136 (bird_1)]'   
[14:29:33] [Server thread/INFO]: +- Foreach loop complete ---------+ 
[14:29:33] [Server thread/INFO]: +- Queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' Executing: (line 23) narrate "Done - Bird reached destination." ---------+ 
[14:29:33] [Server thread/INFO]: +> Executing 'NARRATE': Narrating='Done - Bird reached destination.'  Targets='[p@1ab1ee9b-873a-4545-bb5b-254e7b23b0e0 (Insilvon)]'   
[14:29:33] [Server thread/INFO]: Completing queue 'SHOW_NPC_PATHFINDING_BUG_1_ExclusionContest' in 229882ms. 
[14:29:39] [Server thread/INFO]: Stopping the server
[14:29:40] [Server thread/INFO]: Stopping server
[14:29:40] [Server thread/INFO]: [dDiscordBot] Disabling dDiscordBot v0.7 (build 253)
[14:29:40] [Server thread/INFO]: [Denizen]  v1.2.5-SNAPSHOT (build 6543-DEV) disabled.
[14:29:40] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.2-SNAPSHOT-b870
[14:29:40] [Server thread/INFO]: [Denizen] Disabling Denizen v1.2.5-SNAPSHOT (build 6543-DEV)
[14:29:40] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.30-SNAPSHOT (build 2746)
[14:29:40] [Server thread/INFO]: [Citizens] Despawned 136{bird_1, null} DespawnReason.RELOAD
[14:29:40] [Server thread/INFO]: Saving players
[14:29:40] [Server thread/INFO]: Insilvon lost connection: Server closed
[14:29:40] [Server thread/INFO]: Insilvon left the game
[14:29:40] [Server thread/INFO]: Saving worlds
[14:29:40] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[14:29:40] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[14:29:40] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[14:29:40] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[14:29:50] [Server thread/INFO]: [ChunkHolderManager] Saved 6650 chunks (95.55%) in world 'world'
[14:29:50] [Server thread/INFO]: [ChunkHolderManager] Saved 6964 block chunks, 6964 entity chunks, 0 poi chunks in world 'world' in 10.43s
[14:29:52] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[14:29:52] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[14:29:52] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[14:29:52] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[14:29:52] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[14:29:52] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_the_end' in 0.10s
[14:29:53] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[14:29:53] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[14:29:53] [Server thread/INFO]: Flushing Chunk IO
[14:29:53] [Server thread/INFO]: Closing Thread Pool
[14:29:53] [Server thread/INFO]: Closing Server