Paste #104840: NPC talk-close spamming in latest build

Date: 2023/01/01 10:04:17 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
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075


[11:47:10] [ServerMain/INFO]: Building unoptimized datafixer
[11:47:11] [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'
[11:47:14] [ServerMain/INFO]: Loaded 7 recipes
[11:47:14] [Server thread/INFO]: Starting minecraft server version 1.19.3
[11:47:14] [Server thread/INFO]: Loading properties
[11:47:15] [Server thread/INFO]: This server is running Paper version git-Paper-366 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: 8d7d927)
[11:47:15] [Server thread/INFO]: Server Ping Player Sample Count: 12
[11:47:15] [Server thread/INFO]: Using 4 threads for Netty based IO
[11:47:15] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
[11:47:15] [Server thread/INFO]: Default game type: SURVIVAL
[11:47:15] [Server thread/INFO]: Generating keypair
[11:47:15] [Server thread/INFO]: Starting Minecraft server on *:25565
[11:47:15] [Server thread/INFO]: Using epoll channel type
[11:47:15] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[11:47:15] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[11:47:17] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[11:47:23] [Server thread/WARN]: Legacy plugin Fe v0.9 does not specify an api-version.
[11:47:24] [Server thread/INFO]: [Denizen] Loading 2 libraries... please wait
[11:47:24] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/server/libraries/org/mongodb/mongodb-driver-sync/4.7.0/mongodb-driver-sync-4.7.0.jar
[11:47:24] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/server/libraries/org/mongodb/bson/4.7.0/bson-4.7.0.jar
[11:47:24] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/server/libraries/org/mongodb/mongodb-driver-core/4.7.0/mongodb-driver-core-4.7.0.jar
[11:47:24] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/server/libraries/org/mongodb/bson-record-codec/4.7.0/bson-record-codec-4.7.0.jar
[11:47:24] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/server/libraries/redis/clients/jedis/3.7.0/jedis-3.7.0.jar
[11:47:24] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/server/libraries/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar
[11:47:24] [Server thread/INFO]: [Denizen] Loaded library /home/minecraft/server/libraries/org/apache/commons/commons-pool2/2.10.0/commons-pool2-2.10.0.jar
[11:47:24] [Server thread/INFO]: [VotingPlugin] Loading 1 libraries... please wait
[11:47:24] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/server/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[11:47:24] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[11:47:24] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[11:47:24] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[11:47:24] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[11:47:24] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[11:47:24] [Server thread/INFO]: [ChatControlRed] Loading 4 libraries... please wait
[11:47:24] [Server thread/INFO]: [ChatControlRed] Loaded library /home/minecraft/server/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar
[11:47:24] [Server thread/INFO]: [ChatControlRed] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[11:47:24] [Server thread/INFO]: [ChatControlRed] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[11:47:24] [Server thread/INFO]: [ChatControlRed] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[11:47:24] [Server thread/INFO]: [ChatControlRed] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[11:47:24] [Server thread/INFO]: [ChatControlRed] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[11:47:24] [Server thread/INFO]: [ChatControlRed] Loaded library /home/minecraft/server/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[11:47:24] [Server thread/INFO]: [ChatControlRed] Loaded library /home/minecraft/server/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[11:47:24] [Server thread/INFO]: [ChatControlRed] Loaded library /home/minecraft/server/libraries/org/mariadb/jdbc/mariadb-java-client/3.0.8/mariadb-java-client-3.0.8.jar
[11:47:24] [Server thread/INFO]: [ChatControlRed] Loaded library /home/minecraft/server/libraries/com/mysql/mysql-connector-j/8.0.31/mysql-connector-j-8.0.31.jar
[11:47:24] [Server thread/INFO]: [ChatControlRed] Loaded library /home/minecraft/server/libraries/com/google/protobuf/protobuf-java/3.19.4/protobuf-java-3.19.4.jar
[11:47:24] [Server thread/INFO]: [CleanroomGenerator] Loading CleanroomGenerator v1.2.1
[11:47:24] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.56
[11:47:25] [Server thread/INFO]: [Colored Signs] Loading ColoredSigns v6.0.1
[11:47:25] [Server thread/INFO]: [CommandHelper] Loading CommandHelper v3.3.5-SNAPSHOT-293
[11:47:26] [Server thread/INFO]: Help make CommandHelper better! Enable telemetry (or disable this message) by changing the telemetry-on setting in preferences.ini to help us understand what features you're using and are most important to you. No personal information is collected.
[11:47:26] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
[11:47:26] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b608
[11:47:28] [Server thread/INFO]: [LibsDisguises] Loading LibsDisguises v10.0.31-SNAPSHOT
[11:47:28] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[11:47:28] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.14-SNAPSHOT+6290-474c191
[11:47:29] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@7198f473]
[11:47:29] [Server thread/INFO]: [HeadDatabase] Loading HeadDatabase v4.17.0
[11:47:29] [Server thread/INFO]: [PlotSquared] Loading PlotSquared v6.10.5-Premium
[11:47:29] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.8-SNAPSHOT+2215-20044a7
[11:47:29] [Server thread/INFO]: [Fe] Loading Fe v0.9
[11:47:29] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2869)
[11:47:29] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.26.1-SNAPSHOT
[11:47:29] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v5.2.1-fd1d0777
[11:47:29] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[11:47:29] [Server thread/INFO]: [PlayerParticles] Loading PlayerParticles v8.3
[11:47:29] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v21.3
[11:47:29] [Server thread/INFO]: [WESV] Loading WorldEditSelectionVisualizer v2.1.3
[11:47:29] [Server thread/INFO]: [Denizen] Loading Denizen v1.2.6-SNAPSHOT (build 6619-DEV)
[11:47:29] [Server thread/INFO]: [ArmorStandTools] Loading ArmorStandTools v4.4.4
[11:47:29] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[11:47:29] [Server thread/INFO]: [VotingPlugin] Loading VotingPlugin v6.10.0
[11:47:29] [Server thread/INFO]: [GriefPrevention] Loading GriefPrevention v16.18
[11:47:29] [Server thread/INFO]: [ArtMap] Loading ArtMap v3.9.7
[11:47:29] [Server thread/INFO]: [ChatControlRed] Loading ChatControlRed v10.16.2
[11:47:29] [Server thread/INFO]: [Magic] Loading Magic v10.8.6-SNAPSHOT-394e5e7
[11:47:29] [Server thread/INFO]: [Magic] Loading modern compatibility layer for server version 1.19.3
[11:47:29] [Server thread/INFO]: [Magic] Async chunk loading API found
[11:47:29] [Server thread/INFO]: [Magic] Chat component API found
[11:47:29] [Server thread/INFO]: [Magic] Found WorldGuard 7+
[11:47:29] [Server thread/INFO]: [Magic] Pre-check for WorldGuard custom flag registration
[11:47:29] [Server thread/INFO]: [Magic] Registered custom WorldGuard flags: allowed-spells, always-allowed-spells, blocked-spells, always-allowed-spell-categories, allowed-spell-categories, blocked-spell-categories, allowed-wands, always-allowed-wands, blocked-wands, spell-overrides, destructible, reflective, tags, portal-spell, portal-warp
[11:47:29] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[11:47:29] [Server thread/INFO]: [CleanroomGenerator] Enabling CleanroomGenerator v1.2.1
[11:47:29] [Server thread/INFO]: [CleanroomGenerator] CleanroomGenerator v1.2.1 enabled
[11:47:29] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.56
[11:47:30] [Server thread/INFO]:         __    
[11:47:30] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.56
[11:47:30] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[11:47:30] [Server thread/INFO]: 
[11:47:30] [Server thread/INFO]: [LuckPerms] Loading configuration...
[11:47:30] [Server thread/INFO]: [LuckPerms] Loading storage provider... [YAML]
[11:47:30] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[11:47:30] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[11:47:31] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1681ms)
[11:47:31] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b608
[11:47:31] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[11:47:31] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[11:47:31] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[11:47:31] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[11:47:31] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.14-SNAPSHOT+6290-474c191
[11:47:31] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[11:47:31] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[11:47:31] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R2.PaperweightAdapter as the Bukkit adapter
[11:47:32] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v6.10.5-Premium
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Loaded caption map for namespace 'plotsquared': com.plotsquared.core.configuration.caption.LocalizedCaptionMap
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: plot-expiry | Value: false
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worlds | Value: false
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-named-road-mobs | Value: false
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: per-user-locale | Value: false
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worldedit-restrictions | Value: true
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: external-placeholders | Value: true
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-owned-road-mobs | Value: false
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: disable-beacon-effect-overflow | Value: true
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database | Value: true
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: component-presets | Value: true
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: chunk-processor | Value: false
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: extended-username-completion | Value: true
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: events | Value: true
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: commands | Value: true
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-mobs | Value: false
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-items | Value: false
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database-purger | Value: false
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: economy | Value: false
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-road-regen | Value: true
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-vehicles | Value: false
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: default-locale | Value: en
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: use-mvdwapi | Value: true
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-meta | Value: true
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: tab-completed-aliases | Value: [plot, plots, p, plotsquared, plot2, p2, ps, 2, plotme, plotz, ap]
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: ban-deleter | Value: false
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: update-notifications | Value: true
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: rating-cache | Value: true
[11:47:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: comment-notifier | Value: true
[11:47:33] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared version licensed to Spigot user 60079
[11:47:33] [Server thread/INFO]: [PlotSquared/BukkitPlatform] https://www.spigotmc.org/resources/77506
[11:47:33] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Download ID: -1077061136
[11:47:33] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Thanks for supporting us :)
[11:47:33] [Server thread/INFO]: [PlotSquared/PlotSquared] Connection to database established. Type: SQLite
[11:47:33] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into WorldEdit
[11:47:33] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using LuckPerms as a complementary UUID service
[11:47:33] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using Paper as a complementary UUID service
[11:47:33] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) 40 UUIDs will be cached
[11:47:33] [Server thread/INFO]: [Fe] Enabling Fe v0.9*
[11:47:33] [Server thread/INFO]: [Fe] Vault support enabled.
[11:47:33] [Server thread/INFO]: [Fe] All accounts with the default balance have been removed.
[11:47:33] [Server thread/INFO]: [Magic] Enabling Magic v10.8.6-SNAPSHOT-394e5e7
[11:47:33] [Server thread/INFO]: [Magic] EffectLib initialized
[11:47:35] [Server thread/INFO]: [Magic] Loaded 0 attributes
[11:47:35] [Server thread/INFO]: [Magic] Wand crafting is enabled
[11:47:35] [Server thread/INFO]: [Magic] Skin-based spell icons disabled
[11:47:35] [Server thread/INFO]: [Magic] Registered attributes: [target_fall_distance, regeneration, respiration, projectile_protection, bowpower, degrees, seconds, channeling, target_pitch, humidity, pitch, sharpness, darkness, jump, health_max, efficiency, target_luck, blindness, absorption, target_armor, loyalty, slow_digging, silk_touch, fire_resistance, unluck, invisibility, target_health_max, moon, air_max, slow, mana_max, sweeping, bowpull, damage, weeks, swift_sneak, mending, epoch, protection, air, fast_digging, lure, punch, temperature, frost_walker, movement_speed_bps, power, riptide, health_boost, levitation, increase_damage, poison, health, target_temperature, binding_curse, yaw, mana, glowing, target_health, target_humidity, days, infinity, impaling, bad_omen, luck, thorns, hero_of_the_village, target_hunger, smite, location_x, unbreaking, location_y, target_mana, feather_falling, attack_damage, knockback, fire_aspect, luck_of_the_sea, knockback_resistance, saturation, conduit_power, location_z, target_air, bane_of_arthropods, soul_speed, night_vision, level, minutes, water_breathing, fall_distance, quick_charge, aqua_affinity, multishot, hunger, slow_falling, armor, blast_protection, confusion, damage_dealt, harm, piercing, fire_protection, target_yaw, dolphins_grace, speed, damage_resistance, weakness, heal, target_mana_max, hours, fortune, looting, target_air_max, movement_speed, play_time, depth_strider, xp, target_location_x, pi, target_location_y, vanishing_curse, target_knockback_resistance, target_location_z, time, flame, wither]
[11:47:35] [Server thread/INFO]: [Magic] Loaded 182 icons
[11:47:35] [Server thread/INFO]: [Magic] Loaded 12 effect lists
[11:47:35] [Server thread/INFO]: [Magic] Loaded 1424 items
[11:47:35] [Server thread/INFO]: [Magic] Loaded 344 wands
[11:47:36] [Server thread/INFO]: [Magic] Loaded 2 kits
[11:47:36] [Server thread/INFO]: [Magic] Loaded 24 classes
[11:47:36] [Server thread/INFO]: [Magic] Loaded 6 classes
[11:47:36] [Server thread/INFO]: [Magic] Loaded 107 mob templates
[11:47:36] [Server thread/INFO]: [Magic] Loaded 8 automata templates
[11:47:36] [Server thread/INFO]: [Magic] Loaded 0 customized worlds
[11:47:36] [Server thread/INFO]: [Magic] Activated BStats
[11:47:36] [Server thread/INFO]: [Magic] MobArena not found
[11:47:36] [Server thread/INFO]: [Magic] LibsDisguises found, mob disguises and disguise_restricted features enabled
[11:47:36] [Server thread/INFO]: [Magic] ModelEngine integration disabled
[11:47:36] [Server thread/INFO]: [Magic] Found MythicMobs v5.2.1-fd1d0777 (5) will use modern integration layer
[11:47:36] [Server thread/INFO]: [Magic] MythicMobs integration enabled, mobs can be spawned in arenas, spells, actions, etc.
[11:47:36] [Server thread/INFO]: Resource pack configured in server.properties, Magic not using RP from config.yml
[11:47:36] [Server thread/INFO]: Preparing level "earth"
[11:47:37] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[11:47:37] [Server thread/INFO]: Time elapsed: 122 ms
[11:47:37] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[11:47:37] [Server thread/INFO]: Time elapsed: 33 ms
[11:47:37] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[11:47:37] [Server thread/INFO]: Time elapsed: 23 ms
[11:47:37] [Server thread/INFO]: [Colored Signs] Enabling ColoredSigns v6.0.1
[11:47:37] [Server thread/INFO]: [CommandHelper] Enabling CommandHelper v3.3.5-SNAPSHOT-293
[11:47:40] [Server thread/INFO]: [CommandHelper] Extensions initialized.
[11:47:40] [Server thread/INFO]: 
[11:47:40] [Server thread/INFO]: 
[11:47:40] [Server thread/INFO]: 
[11:47:40] [Server thread/INFO]:      _/_/_/                                                                _/
[11:47:40] [Server thread/INFO]:   _/        _/_/   _/_/_/  _/_/   _/_/_/  _/_/     _/_/_/ _/_/_/     _/_/_/  
[11:47:40] [Server thread/INFO]:  _/      _/    _/ _/    _/    _/ _/    _/    _/ _/    _/ _/    _/ _/    _/   
[11:47:40] [Server thread/INFO]: _/      _/    _/ _/    _/    _/ _/    _/    _/ _/    _/ _/    _/ _/    _/    
[11:47:40] [Server thread/INFO]:  _/_/_/  _/_/   _/    _/    _/ _/    _/    _/   _/_/_/ _/    _/   _/_/_/     
[11:47:40] [Server thread/INFO]:                                                                              
[11:47:40] [Server thread/INFO]:                       _/    _/            _/                                 
[11:47:40] [Server thread/INFO]:                      _/    _/    _/_/    _/  _/_/_/      _/_/    _/  _/_/    
[11:47:40] [Server thread/INFO]:                     _/_/_/_/  _/_/_/_/  _/  _/    _/  _/_/_/_/  _/_/         
[11:47:40] [Server thread/INFO]:                    _/    _/  _/        _/  _/    _/  _/        _/            
[11:47:40] [Server thread/INFO]:                   _/    _/    _/_/_/  _/  _/_/_/      _/_/_/  _/             
[11:47:40] [Server thread/INFO]:                                          _/                                  
[11:47:40] [Server thread/INFO]:                                         _/                                   
[11:47:40] [Server thread/INFO]: 
[11:47:42] [Server thread/INFO]: [CommandHelper] CHSpigot 2.0.4 loaded.
[11:47:42] [Server thread/INFO]: [CommandHelper] SKCompat 3.1.4 loaded.
[11:47:42] [Server thread/INFO]: [CommandHelper] CHFiles 2.2.7 loaded.
[11:47:42] [Server thread/INFO]: [CommandHelper] CHPaper 0.4.0 loaded.
[11:47:42] [Server thread/INFO]: [CommandHelper] CHVault 2.1.3 loaded.
[11:47:42] [Server thread/INFO]: --------Server Tip--------
[11:47:42] [Server thread/INFO]: Do /help if you need help
[11:47:42] [Server thread/INFO]: -------------------------
[11:47:42] [Server thread/INFO]: CommandHelper: Loading atlantispvp
[11:47:42] [Server thread/INFO]: Preparing start region for dimension minecraft:atlantispvp
[11:47:42] [Server thread/INFO]: Time elapsed: 132 ms
[11:47:42] [Server thread/INFO]: CommandHelper: Loading boatrace
[11:47:43] [Server thread/INFO]: Preparing start region for dimension minecraft:boatrace
[11:47:43] [pool-23-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared will fetch UUIDs in groups of 200
[11:47:43] [pool-23-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached 100.0% of UUIDs
[11:47:43] [pool-23-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached all UUIDs
[11:47:43] [Server thread/INFO]: Time elapsed: 706 ms
[11:47:43] [Server thread/INFO]: CommandHelper: Loading cavedeathrun
[11:47:44] [Server thread/INFO]: Preparing start region for dimension minecraft:cavedeathrun
[11:47:44] [Server thread/INFO]: Time elapsed: 67 ms
[11:47:44] [Server thread/INFO]: CommandHelper: Loading checkers
[11:47:44] [Server thread/INFO]: Preparing start region for dimension minecraft:checkers
[11:47:44] [Server thread/INFO]: Time elapsed: 71 ms
[11:47:44] [Server thread/INFO]: CommandHelper: Loading deathrun
[11:47:44] [Server thread/INFO]: Preparing start region for dimension minecraft:deathrun
[11:47:44] [Server thread/INFO]: Time elapsed: 58 ms
[11:47:44] [Server thread/INFO]: CommandHelper: Loading deathswaparena
[11:47:44] [Server thread/INFO]: Preparing start region for dimension minecraft:deathswaparena
[11:47:45] [Server thread/INFO]: Time elapsed: 79 ms
[11:47:45] [Server thread/INFO]: CommandHelper: Loading earth
[11:47:45] [Server thread/INFO]: CommandHelper: Loading fishslap
[11:47:45] [Server thread/INFO]: Preparing start region for dimension minecraft:fishslap
[11:47:45] [Server thread/INFO]: Time elapsed: 234 ms
[11:47:45] [Server thread/INFO]: CommandHelper: Loading glidemaster
[11:47:45] [Server thread/INFO]: Preparing start region for dimension minecraft:glidemaster
[11:47:45] [Server thread/INFO]: Time elapsed: 247 ms
[11:47:45] [Server thread/INFO]: CommandHelper: Loading heaven
[11:47:46] [Server thread/INFO]: Preparing start region for dimension minecraft:heaven
[11:47:46] [Server thread/INFO]: Time elapsed: 144 ms
[11:47:46] [Server thread/INFO]: CommandHelper: Loading hell
[11:47:46] [Server thread/INFO]: Preparing start region for dimension minecraft:hell
[11:47:46] [Server thread/INFO]: Time elapsed: 77 ms
[11:47:46] [Server thread/INFO]: CommandHelper: Loading hidenseek
[11:47:46] [Server thread/INFO]: Preparing start region for dimension minecraft:hidenseek
[11:47:46] [Server thread/INFO]: Time elapsed: 45 ms
[11:47:46] [Server thread/INFO]: CommandHelper: Loading hilariousrace
[11:47:47] [Server thread/INFO]: Preparing start region for dimension minecraft:hilariousrace
[11:47:47] [Server thread/INFO]: Time elapsed: 68 ms
[11:47:47] [Server thread/INFO]: CommandHelper: Loading hurdles
[11:47:47] [Server thread/INFO]: Preparing start region for dimension minecraft:hurdles
[11:47:47] [Server thread/INFO]: Time elapsed: 88 ms
[11:47:47] [Server thread/INFO]: CommandHelper: Loading lasertag
[11:47:47] [Server thread/INFO]: Preparing start region for dimension minecraft:lasertag
[11:47:47] [Server thread/INFO]: Time elapsed: 72 ms
[11:47:47] [Server thread/INFO]: CommandHelper: Loading leafdecay
[11:47:48] [Server thread/INFO]: Preparing start region for dimension minecraft:leafdecay
[11:47:48] [Server thread/INFO]: Time elapsed: 171 ms
[11:47:48] [Server thread/INFO]: CommandHelper: Loading levitationgame
[11:47:48] [Server thread/INFO]: Preparing start region for dimension minecraft:levitationgame
[11:47:48] [Server thread/INFO]: Time elapsed: 89 ms
[11:47:48] [Server thread/INFO]: CommandHelper: Loading limbo
[11:47:48] [Server thread/INFO]: Preparing start region for dimension minecraft:limbo
[11:47:48] [Server thread/INFO]: Time elapsed: 119 ms
[11:47:48] [Server thread/INFO]: CommandHelper: Loading mobrun
[11:47:49] [Server thread/INFO]: Preparing start region for dimension minecraft:mobrun
[11:47:49] [Server thread/INFO]: Time elapsed: 81 ms
[11:47:49] [Server thread/INFO]: CommandHelper: Loading moddedsurvivaleasy
[11:47:49] [Server thread/INFO]: Preparing start region for dimension minecraft:moddedsurvivaleasy
[11:47:49] [Server thread/INFO]: Time elapsed: 10 ms
[11:47:49] [Server thread/INFO]: CommandHelper: Loading moddedsurvivaleasy_nether
[11:47:49] [Server thread/INFO]: Preparing start region for dimension minecraft:moddedsurvivaleasy_nether
[11:47:49] [Server thread/INFO]: Time elapsed: 70 ms
[11:47:49] [Server thread/INFO]: CommandHelper: Loading moddedsurvivaleasy_the_end
[11:47:49] [Server thread/INFO]: Preparing start region for dimension minecraft:moddedsurvivaleasy_the_end
[11:47:49] [Server thread/INFO]: Time elapsed: 16 ms
[11:47:49] [Server thread/INFO]: CommandHelper: Loading moddedsurvivalhard
[11:47:50] [Server thread/INFO]: Preparing start region for dimension minecraft:moddedsurvivalhard
[11:47:50] [Server thread/INFO]: Time elapsed: 14 ms
[11:47:50] [Server thread/INFO]: CommandHelper: Loading moddedsurvivalhard_nether
[11:47:50] [Server thread/INFO]: Preparing start region for dimension minecraft:moddedsurvivalhard_nether
[11:47:50] [Server thread/INFO]: Time elapsed: 7 ms
[11:47:50] [Server thread/INFO]: CommandHelper: Loading moddedsurvivalhard_the_end
[11:47:50] [Server thread/INFO]: Preparing start region for dimension minecraft:moddedsurvivalhard_the_end
[11:47:50] [Server thread/INFO]: Time elapsed: 21 ms
[11:47:50] [Server thread/INFO]: CommandHelper: Loading moddedsurvivalnormal
[11:47:50] [Server thread/INFO]: Preparing start region for dimension minecraft:moddedsurvivalnormal
[11:47:50] [Server thread/INFO]: Time elapsed: 15 ms
[11:47:50] [Server thread/INFO]: CommandHelper: Loading moddedsurvivalnormal_nether
[11:47:51] [Server thread/INFO]: Preparing start region for dimension minecraft:moddedsurvivalnormal_nether
[11:47:51] [Server thread/INFO]: Time elapsed: 15 ms
[11:47:51] [Server thread/INFO]: CommandHelper: Loading moddedsurvivalnormal_the_end
[11:47:51] [Server thread/INFO]: Preparing start region for dimension minecraft:moddedsurvivalnormal_the_end
[11:47:51] [Server thread/INFO]: Time elapsed: 8 ms
[11:47:51] [Server thread/INFO]: CommandHelper: Loading moddedsurvivalpeaceful
[11:47:51] [Server thread/INFO]: Preparing start region for dimension minecraft:moddedsurvivalpeaceful
[11:47:51] [Server thread/INFO]: Time elapsed: 7 ms
[11:47:51] [Server thread/INFO]: CommandHelper: Loading moddedsurvivalpeaceful_nether
[11:47:51] [Server thread/INFO]: Preparing start region for dimension minecraft:moddedsurvivalpeaceful_nether
[11:47:51] [Server thread/INFO]: Time elapsed: 9 ms
[11:47:51] [Server thread/INFO]: CommandHelper: Loading moddedsurvivalpeaceful_the_end
[11:47:51] [Server thread/INFO]: Preparing start region for dimension minecraft:moddedsurvivalpeaceful_the_end
[11:47:51] [Server thread/INFO]: Time elapsed: 6 ms
[11:47:51] [Server thread/INFO]: CommandHelper: Loading noobworkshop
[11:47:51] [Server thread/INFO]: Preparing start region for dimension minecraft:noobworkshop
[11:47:51] [Server thread/INFO]: Time elapsed: 8 ms
[11:47:51] [Server thread/INFO]: CommandHelper: Loading npcfights
[11:47:52] [Server thread/INFO]: Preparing start region for dimension minecraft:npcfights
[11:47:52] [Server thread/INFO]: Time elapsed: 12 ms
[11:47:52] [Server thread/INFO]: CommandHelper: Loading obstaclecourse
[11:47:52] [Server thread/INFO]: Preparing start region for dimension minecraft:obstaclecourse
[11:47:52] [Server thread/INFO]: Time elapsed: 51 ms
[11:47:52] [Server thread/INFO]: CommandHelper: Loading paradise
[11:47:52] [Server thread/INFO]: Preparing start region for dimension minecraft:paradise
[11:47:52] [Server thread/INFO]: Time elapsed: 61 ms
[11:47:52] [Server thread/INFO]: CommandHelper: Loading paradise_nether
[11:47:52] [Server thread/INFO]: Preparing start region for dimension minecraft:paradise_nether
[11:47:52] [Server thread/INFO]: Time elapsed: 92 ms
[11:47:52] [Server thread/INFO]: CommandHelper: Loading paradise_the_end
[11:47:52] [Server thread/INFO]: Preparing start region for dimension minecraft:paradise_the_end
[11:47:53] [Server thread/INFO]: Time elapsed: 62 ms
[11:47:53] [Server thread/INFO]: CommandHelper: Loading plots
[11:47:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'plots'
[11:47:53] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[11:47:53] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[11:47:53] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[11:47:53] [Server thread/WARN]: [PlotSquared/PlotArea] Failed to parse default flag with key 'use' and value 'button'. Reason: com.plotsquared.core.configuration.caption.TranslatableCaption@6ebec81d. This flag will not be added as a default flag.
[11:47:53] [Server thread/WARN]: com.plotsquared.core.plot.flag.FlagParseException: Failed to parse flag of type 'use'. Value 'button' was not accepted.
[11:47:53] [Server thread/WARN]:     at PlotSquared-Bukkit-6.10.5-Premium.jar//com.plotsquared.core.plot.flag.types.BlockTypeListFlag.getCategory(BlockTypeListFlag.java:86)
[11:47:53] [Server thread/WARN]:     at PlotSquared-Bukkit-6.10.5-Premium.jar//com.plotsquared.core.plot.flag.types.BlockTypeListFlag.parse(BlockTypeListFlag.java:56)
[11:47:53] [Server thread/WARN]:     at PlotSquared-Bukkit-6.10.5-Premium.jar//com.plotsquared.core.plot.flag.types.BlockTypeListFlag.parse(BlockTypeListFlag.java:35)
[11:47:53] [Server thread/WARN]:     at PlotSquared-Bukkit-6.10.5-Premium.jar//com.plotsquared.core.plot.PlotArea.parseFlags(PlotArea.java:194)
[11:47:53] [Server thread/WARN]:     at PlotSquared-Bukkit-6.10.5-Premium.jar//com.plotsquared.core.plot.PlotArea.loadDefaultConfiguration(PlotArea.java:406)
[11:47:53] [Server thread/WARN]:     at PlotSquared-Bukkit-6.10.5-Premium.jar//com.plotsquared.core.PlotSquared.loadWorld(PlotSquared.java:846)
[11:47:53] [Server thread/WARN]:     at PlotSquared-Bukkit-6.10.5-Premium.jar//com.plotsquared.bukkit.generator.BukkitPlotGenerator.checkLoaded(BukkitPlotGenerator.java:138)
[11:47:53] [Server thread/WARN]:     at PlotSquared-Bukkit-6.10.5-Premium.jar//com.plotsquared.bukkit.generator.BukkitPlotGenerator.getDefaultPopulators(BukkitPlotGenerator.java:112)
[11:47:53] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initWorld(MinecraftServer.java:648)
[11:47:53] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.createWorld(CraftServer.java:1279)
[11:47:53] [Server thread/WARN]:     at org.bukkit.Bukkit.createWorld(Bukkit.java:782)
[11:47:53] [Server thread/WARN]:     at org.bukkit.WorldCreator.createWorld(WorldCreator.java:474)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.abstraction.bukkit.BukkitMCWorldCreator.createWorld(BukkitMCWorldCreator.java:28)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.functions.World$create_world.exec(World.java:1045)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.Script.eval(Script.java:439)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.Script.eval(Script.java:421)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.functions.Exceptions$complex_try.execs(Exceptions.java:497)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.Script.eval(Script.java:411)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.Script.seval(Script.java:301)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.functions.ControlFlow$_if.execs(ControlFlow.java:112)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.Script.eval(Script.java:411)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.Script.eval(Script.java:421)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.functions.ControlFlow$foreach.execs(ControlFlow.java:1418)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.Script.eval(Script.java:411)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.Script.eval(Script.java:421)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.MethodScriptCompiler.execute(MethodScriptCompiler.java:3027)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.MethodScriptCompiler.execute(MethodScriptCompiler.java:2985)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.LocalPackages.executeMS(LocalPackages.java:223)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.core.AliasCore.reload(AliasCore.java:555)
[11:47:53] [Server thread/WARN]:     at commandhelper-3.3.5-SNAPSHOT-full-build-293.jar//com.laytonsmith.commandhelper.CommandHelperPlugin.onEnable(CommandHelperPlugin.java:367)
[11:47:53] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[11:47:53] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[11:47:53] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[11:47:53] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[11:47:53] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[11:47:53] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[11:47:53] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[11:47:53] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:301)
[11:47:53] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[11:47:53] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[11:47:53] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[11:47:53] [Server thread/INFO]: [P2] Area flags: [explosion;true, lectern-read-book;true, use;button, vehicle-place;false]
[11:47:53] [Server thread/INFO]: [P2] Road flags: []
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - schematic: false
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name plots
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = false
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic_height = -1
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 3
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 46
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = minecraft:stone
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = minecraft:grass_block
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = minecraft:stone_slab
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = minecraft:sandstone_slab
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = minecraft:stone
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = minecraft:quartz_block
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 42
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 7
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[11:47:53] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 49
[11:47:53] [Server thread/INFO]: Preparing start region for dimension minecraft:plots
[11:47:53] [Server thread/INFO]: Time elapsed: 26 ms
[11:47:53] [Server thread/INFO]: CommandHelper: Loading publicescaperoom
[11:47:53] [Server thread/INFO]: Preparing start region for dimension minecraft:publicescaperoom
[11:47:53] [Server thread/INFO]: Time elapsed: 4 ms
[11:47:53] [Server thread/INFO]: CommandHelper: Loading publicparkour
[11:47:53] [Server thread/INFO]: Preparing start region for dimension minecraft:publicparkour
[11:47:53] [Server thread/INFO]: Time elapsed: 17 ms
[11:47:53] [Server thread/INFO]: CommandHelper: Loading publicrollercoaster
[11:47:53] [Server thread/INFO]: Preparing start region for dimension minecraft:publicrollercoaster
[11:47:54] [Server thread/INFO]: Time elapsed: 185 ms
[11:47:54] [Server thread/INFO]: CommandHelper: Loading pvelobby
[11:47:54] [Server thread/INFO]: Preparing start region for dimension minecraft:pvelobby
[11:47:54] [Server thread/INFO]: Time elapsed: 9 ms
[11:47:54] [Server thread/INFO]: CommandHelper: Loading pvpdeathrun
[11:47:54] [Server thread/INFO]: Preparing start region for dimension minecraft:pvpdeathrun
[11:47:54] [Server thread/INFO]: Time elapsed: 57 ms
[11:47:54] [Server thread/INFO]: CommandHelper: Loading racelobby
[11:47:54] [Server thread/INFO]: Preparing start region for dimension minecraft:racelobby
[11:47:54] [Server thread/INFO]: Time elapsed: 217 ms
[11:47:54] [Server thread/INFO]: CommandHelper: Loading shop
[11:47:55] [Server thread/INFO]: Preparing start region for dimension minecraft:shop
[11:47:55] [Server thread/INFO]: Time elapsed: 53 ms
[11:47:55] [Server thread/INFO]: CommandHelper: Loading siegepvp
[11:47:55] [Server thread/INFO]: Preparing start region for dimension minecraft:siegepvp
[11:47:55] [Server thread/INFO]: Time elapsed: 13 ms
[11:47:55] [Server thread/INFO]: CommandHelper: Loading skyblock
[11:47:55] [Server thread/INFO]: Preparing start region for dimension minecraft:skyblock
[11:47:55] [Server thread/INFO]: Time elapsed: 211 ms
[11:47:55] [Server thread/INFO]: CommandHelper: Loading spleef
[11:47:55] [Server thread/INFO]: Preparing start region for dimension minecraft:spleef
[11:47:55] [Server thread/INFO]: Time elapsed: 34 ms
[11:47:55] [Server thread/INFO]: CommandHelper: Loading starwarsdropper
[11:47:56] [Server thread/INFO]: Preparing start region for dimension minecraft:starwarsdropper
[11:47:56] [Server thread/INFO]: Time elapsed: 93 ms
[11:47:56] [Server thread/INFO]: CommandHelper: Loading survivalgames
[11:47:56] [Server thread/INFO]: Preparing start region for dimension minecraft:survivalgames
[11:47:56] [Server thread/INFO]: Time elapsed: 20 ms
[11:47:56] [Server thread/INFO]: CommandHelper: Loading survivalgameslobby
[11:47:56] [Server thread/INFO]: Preparing start region for dimension minecraft:survivalgameslobby
[11:47:56] [Server thread/INFO]: Time elapsed: 133 ms
[11:47:56] [Server thread/INFO]: CommandHelper: Loading thegauntlet
[11:47:56] [Server thread/INFO]: Preparing start region for dimension minecraft:thegauntlet
[11:47:56] [Server thread/INFO]: Time elapsed: 14 ms
[11:47:56] [Server thread/INFO]: CommandHelper: Loading thehorde
[11:47:57] [Server thread/INFO]: Preparing start region for dimension minecraft:thehorde
[11:47:57] [Server thread/INFO]: Time elapsed: 67 ms
[11:47:57] [Server thread/INFO]: CommandHelper: Loading thelongestparkour
[11:47:57] [Server thread/INFO]: Preparing start region for dimension minecraft:thelongestparkour
[11:47:57] [Server thread/INFO]: Time elapsed: 63 ms
[11:47:57] [Server thread/INFO]: CommandHelper: Loading wipeout
[11:47:57] [Server thread/INFO]: Preparing start region for dimension minecraft:wipeout
[11:47:57] [Server thread/INFO]: Time elapsed: 102 ms
[11:47:57] [Server thread/INFO]: CommandHelper: loading game publicrollercoaster
[11:47:57] [Server thread/INFO]: CommandHelper: loading game deathrun
[11:47:57] [Server thread/INFO]: CommandHelper: loading game glidemaster
[11:47:57] [Server thread/INFO]: CommandHelper: loading game levitationgame
[11:47:57] [Server thread/INFO]: CommandHelper: loading game mobrun4
[11:47:57] [Server thread/INFO]: CommandHelper: loading game hilariousrace
[11:47:57] [Server thread/INFO]: CommandHelper: loading game mobrun3
[11:47:57] [Server thread/INFO]: CommandHelper: loading game thelongestparkour
[11:47:57] [Server thread/INFO]: CommandHelper: loading game hurdles
[11:47:57] [Server thread/INFO]: CommandHelper: loading game npcfights
[11:47:57] [Server thread/INFO]: CommandHelper: loading game mobrun2
[11:47:57] [Server thread/INFO]: CommandHelper: loading game hurdles2
[11:47:57] [Server thread/INFO]: CommandHelper: loading game publicparkour
[11:47:57] [Server thread/INFO]: CommandHelper: loading game obstaclecourse2
[11:47:57] [Server thread/INFO]: CommandHelper: loading game atlantispvp
[11:47:57] [Server thread/INFO]: CommandHelper: loading game wipeout
[11:47:57] [Server thread/INFO]: CommandHelper: loading game obstaclecourse
[11:47:57] [Server thread/INFO]: CommandHelper: loading game publicescaperoom
[11:47:57] [Server thread/INFO]: CommandHelper: loading game skyblock
[11:47:57] [Server thread/INFO]: CommandHelper: loading game spleef
[11:47:57] [Server thread/INFO]: CommandHelper: loading game siegepvp
[11:47:57] [Server thread/INFO]: CommandHelper: loading game thehorde
[11:47:57] [Server thread/INFO]: CommandHelper: loading game mobrun1
[11:47:57] [Server thread/INFO]: CommandHelper: loading game hidenseek
[11:47:57] [Server thread/INFO]: CommandHelper: loading game highspeedislandboatrace
[11:47:57] [Server thread/INFO]: CommandHelper: loading game thegauntlet
[11:47:57] [Server thread/INFO]: CommandHelper: loading game deathswaparena
[11:47:57] [Server thread/INFO]: CommandHelper: loading game checkers
[11:47:57] [Server thread/INFO]: CommandHelper: loading game starwarsdropper
[11:47:57] [Server thread/INFO]: CommandHelper: loading game deathswap
[11:47:57] [Server thread/INFO]: CommandHelper: loading game pvpdeathrun
[11:47:57] [Server thread/INFO]: CommandHelper: loading game healthsteal
[11:47:57] [Server thread/INFO]: CommandHelper: loading game leafdecay
[11:47:57] [Server thread/INFO]: CommandHelper: loading game fishslap
[11:47:57] [Server thread/INFO]: CommandHelper: loading game lasertag
[11:47:57] [Server thread/INFO]: CommandHelper: loading game manhunt
[11:47:57] [Server thread/INFO]: [CommandHelper] Load complete. 436 files processed.
[11:47:57] [Server thread/INFO]: [CommandHelper] CommandHelper 3.3.5-SNAPSHOT-293 enabled
[11:47:57] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[11:47:57] [Server thread/INFO]: [Votifier] Loaded token for website: default
[11:47:58] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[11:47:58] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[11:47:58] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.31-SNAPSHOT
[11:47:58] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises.jar
[11:47:58] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_19_R2 (v1_19_R2)
[11:47:58] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1153
[11:47:58] [Server thread/INFO]: [LibsDisguises] Build Date: 30/12/2022 12:22
[11:47:58] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:8192.
[11:47:58] [Server thread/INFO]: [LibsDisguises] Found a premium Lib's Disguises jar (v10.0.31, build #1119, created 09/08/2022 06:41)
[11:47:58] [Server thread/INFO]: [LibsDisguises] Registered to: 60079 (22)
[11:47:58] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[11:48:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[11:48:01] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[11:48:01] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[11:48:01] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.17.0
[11:48:01] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[11:48:01] [Server thread/INFO]: [HeadDatabase] Economy successfully setup using CURRENCY!
[11:48:01] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8-SNAPSHOT+2215-20044a7
[11:48:02] [Server thread/INFO]: [WorldGuard] (earth) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (earth) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (earth) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (earth) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'earth'
[11:48:02] [Server thread/INFO]: [WorldGuard] (earth_nether) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (earth_nether) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (earth_nether) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (earth_nether) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'earth_nether'
[11:48:02] [Server thread/INFO]: [WorldGuard] (earth_the_end) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (earth_the_end) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (earth_the_end) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (earth_the_end) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'earth_the_end'
[11:48:02] [Server thread/INFO]: [WorldGuard] (atlantispvp) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (atlantispvp) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (atlantispvp) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (atlantispvp) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'atlantispvp'
[11:48:02] [Server thread/INFO]: [WorldGuard] (boatrace) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (boatrace) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (boatrace) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (boatrace) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'boatrace'
[11:48:02] [Server thread/INFO]: [WorldGuard] (cavedeathrun) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (cavedeathrun) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (cavedeathrun) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (cavedeathrun) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'cavedeathrun'
[11:48:02] [Server thread/INFO]: [WorldGuard] (checkers) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (checkers) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (checkers) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (checkers) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'checkers'
[11:48:02] [Server thread/INFO]: [WorldGuard] (deathrun) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (deathrun) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (deathrun) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (deathrun) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'deathrun'
[11:48:02] [Server thread/INFO]: [WorldGuard] (deathswaparena) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (deathswaparena) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (deathswaparena) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (deathswaparena) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'deathswaparena'
[11:48:02] [Server thread/INFO]: [WorldGuard] (fishslap) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (fishslap) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (fishslap) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (fishslap) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'fishslap'
[11:48:02] [Server thread/INFO]: [WorldGuard] (glidemaster) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (glidemaster) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (glidemaster) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (glidemaster) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'glidemaster'
[11:48:02] [Server thread/INFO]: [WorldGuard] (heaven) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (heaven) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (heaven) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (heaven) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'heaven'
[11:48:02] [Server thread/INFO]: [WorldGuard] (hell) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (hell) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (hell) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (hell) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'hell'
[11:48:02] [Server thread/INFO]: [WorldGuard] (hidenseek) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (hidenseek) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (hidenseek) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (hidenseek) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'hidenseek'
[11:48:02] [Server thread/INFO]: [WorldGuard] (hilariousrace) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (hilariousrace) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (hilariousrace) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (hilariousrace) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'hilariousrace'
[11:48:02] [Server thread/INFO]: [WorldGuard] (hurdles) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (hurdles) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (hurdles) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (hurdles) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'hurdles'
[11:48:02] [Server thread/INFO]: [WorldGuard] (lasertag) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (lasertag) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (lasertag) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (lasertag) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lasertag'
[11:48:02] [Server thread/INFO]: [WorldGuard] (leafdecay) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (leafdecay) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (leafdecay) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (leafdecay) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'leafdecay'
[11:48:02] [Server thread/INFO]: [WorldGuard] (levitationgame) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (levitationgame) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (levitationgame) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (levitationgame) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'levitationgame'
[11:48:02] [Server thread/INFO]: [WorldGuard] (limbo) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (limbo) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (limbo) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (limbo) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'limbo'
[11:48:02] [Server thread/INFO]: [WorldGuard] (mobrun) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (mobrun) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (mobrun) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (mobrun) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mobrun'
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivaleasy) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivaleasy) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivaleasy) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivaleasy) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'moddedsurvivaleasy'
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivaleasy_nether) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivaleasy_nether) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivaleasy_nether) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivaleasy_nether) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'moddedsurvivaleasy_nether'
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivaleasy_the_end) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivaleasy_the_end) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivaleasy_the_end) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivaleasy_the_end) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'moddedsurvivaleasy_the_end'
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalhard) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalhard) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalhard) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalhard) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'moddedsurvivalhard'
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalhard_nether) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalhard_nether) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalhard_nether) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalhard_nether) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'moddedsurvivalhard_nether'
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalhard_the_end) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalhard_the_end) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalhard_the_end) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalhard_the_end) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'moddedsurvivalhard_the_end'
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalnormal) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalnormal) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalnormal) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalnormal) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'moddedsurvivalnormal'
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalnormal_nether) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalnormal_nether) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalnormal_nether) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalnormal_nether) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'moddedsurvivalnormal_nether'
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalnormal_the_end) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalnormal_the_end) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalnormal_the_end) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalnormal_the_end) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'moddedsurvivalnormal_the_end'
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalpeaceful) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalpeaceful) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalpeaceful) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalpeaceful) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'moddedsurvivalpeaceful'
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalpeaceful_nether) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalpeaceful_nether) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalpeaceful_nether) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalpeaceful_nether) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'moddedsurvivalpeaceful_nether'
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalpeaceful_the_end) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalpeaceful_the_end) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalpeaceful_the_end) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (moddedsurvivalpeaceful_the_end) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'moddedsurvivalpeaceful_the_end'
[11:48:02] [Server thread/INFO]: [WorldGuard] (noobworkshop) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (noobworkshop) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (noobworkshop) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (noobworkshop) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'noobworkshop'
[11:48:02] [Server thread/INFO]: [WorldGuard] (npcfights) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (npcfights) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (npcfights) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (npcfights) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'npcfights'
[11:48:02] [Server thread/INFO]: [WorldGuard] (obstaclecourse) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (obstaclecourse) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (obstaclecourse) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (obstaclecourse) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'obstaclecourse'
[11:48:02] [Server thread/INFO]: [WorldGuard] (paradise) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (paradise) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (paradise) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (paradise) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'paradise'
[11:48:02] [Server thread/INFO]: [WorldGuard] (paradise_nether) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (paradise_nether) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (paradise_nether) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (paradise_nether) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'paradise_nether'
[11:48:02] [Server thread/INFO]: [WorldGuard] (paradise_the_end) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (paradise_the_end) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (paradise_the_end) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (paradise_the_end) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'paradise_the_end'
[11:48:02] [Server thread/INFO]: [WorldGuard] (plots) Blacklist loaded with 6 entries.
[11:48:02] [Server thread/INFO]: [WorldGuard] (plots) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (plots) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (plots) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (plots) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plots'
[11:48:02] [Server thread/INFO]: [WorldGuard] (publicescaperoom) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (publicescaperoom) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (publicescaperoom) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (publicescaperoom) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'publicescaperoom'
[11:48:02] [Server thread/INFO]: [WorldGuard] (publicparkour) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (publicparkour) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (publicparkour) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (publicparkour) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'publicparkour'
[11:48:02] [Server thread/INFO]: [WorldGuard] (publicrollercoaster) Blacklist loaded with 1 entries.
[11:48:02] [Server thread/INFO]: [WorldGuard] (publicrollercoaster) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (publicrollercoaster) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (publicrollercoaster) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (publicrollercoaster) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'publicrollercoaster'
[11:48:02] [Server thread/INFO]: [WorldGuard] (pvelobby) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (pvelobby) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (pvelobby) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (pvelobby) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'pvelobby'
[11:48:02] [Server thread/INFO]: [WorldGuard] (pvpdeathrun) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (pvpdeathrun) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (pvpdeathrun) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (pvpdeathrun) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'pvpdeathrun'
[11:48:02] [Server thread/INFO]: [WorldGuard] (racelobby) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (racelobby) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (racelobby) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (racelobby) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'racelobby'
[11:48:02] [Server thread/INFO]: [WorldGuard] (shop) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (shop) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (shop) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (shop) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'shop'
[11:48:02] [Server thread/INFO]: [WorldGuard] (siegepvp) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (siegepvp) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (siegepvp) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (siegepvp) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'siegepvp'
[11:48:02] [Server thread/INFO]: [WorldGuard] (skyblock) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (skyblock) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (skyblock) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (skyblock) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'skyblock'
[11:48:02] [Server thread/INFO]: [WorldGuard] (spleef) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (spleef) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (spleef) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (spleef) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spleef'
[11:48:02] [Server thread/INFO]: [WorldGuard] (starwarsdropper) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (starwarsdropper) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (starwarsdropper) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (starwarsdropper) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'starwarsdropper'
[11:48:02] [Server thread/INFO]: [WorldGuard] (survivalgames) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (survivalgames) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (survivalgames) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (survivalgames) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survivalgames'
[11:48:02] [Server thread/INFO]: [WorldGuard] (survivalgameslobby) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (survivalgameslobby) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (survivalgameslobby) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (survivalgameslobby) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survivalgameslobby'
[11:48:02] [Server thread/INFO]: [WorldGuard] (thegauntlet) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (thegauntlet) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (thegauntlet) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (thegauntlet) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'thegauntlet'
[11:48:02] [Server thread/INFO]: [WorldGuard] (thehorde) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (thehorde) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (thehorde) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (thehorde) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'thehorde'
[11:48:02] [Server thread/INFO]: [WorldGuard] (thelongestparkour) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (thelongestparkour) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (thelongestparkour) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (thelongestparkour) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'thelongestparkour'
[11:48:02] [Server thread/INFO]: [WorldGuard] (wipeout) TNT ignition is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (wipeout) Lighters are PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (wipeout) Lava fire is PERMITTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] (wipeout) Fire spread is UNRESTRICTED.
[11:48:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'wipeout'
[11:48:02] [Server thread/INFO]: [WorldGuard] Loading region data...
[11:48:02] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2869)
[11:48:02] [Server thread/INFO]: [Citizens] Loading external libraries
[11:48:03] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[11:48:03] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.1-SNAPSHOT
[11:48:03] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.1-fd1d0777
[11:48:03] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.3)...
[11:48:03] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[11:48:03] [Server thread/WARN]: [MythicMobs] Loaded class org.slf4j.impl.StaticLoggerBinder from DiscordSRV v1.26.1-SNAPSHOT which is not a depend or softdepend of this plugin.
[11:48:03] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 67 ms to scan 1 urls, producing 3 keys and 21 values 
[11:48:03] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 19 ms to scan 1 urls, producing 6 keys and 101 values 
[11:48:03] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 63 ms to scan 114 urls, producing 0 keys and 0 values 
[11:48:03] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 7 ms to scan 1 urls, producing 3 keys and 36 values 
[11:48:03] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 9 ms to scan 1 urls, producing 4 keys and 14 values 
[11:48:03] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 9 ms to scan 1 urls, producing 4 keys and 14 values 
[11:48:03] [Server thread/INFO]: [MythicMobs] MythicMobs GriefPrevention Support has been enabled!
[11:48:03] [Server thread/INFO]: [MythicMobs] MythicMobs LibsDisguises Support has been enabled!
[11:48:03] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[11:48:03] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[11:48:03] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[11:48:03] [Server thread/INFO]: [MythicMobs] Base directory /home/minecraft/server/plugins/MythicMobs/SavedData
[11:48:03] [Server thread/INFO]: [MythicMobs] Module directory /home/minecraft/server/plugins/MythicMobs/SavedData/worlds
[11:48:03] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 30 ms to scan 1 urls, producing 11 keys and 445 values 
[11:48:03] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 45 ms to scan 1 urls, producing 29 keys and 885 values 
[11:48:03] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[11:48:04] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 21 ms to scan 1 urls, producing 9 keys and 152 values 
[11:48:04] [pool-372-thread-1/INFO]: [DiscordSRV] This build of DiscordSRV is identical to develop. [latest public dev build]
[11:48:04] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 12 ms to scan 1 urls, producing 2 keys and 11 values 
[11:48:04] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[11:48:04] [Server thread/INFO]: [MythicMobs] LOADED
[11:48:04] [Server thread/INFO]: [MythicMobs] Loading Packs...
[11:48:04] [Server thread/INFO]: [MythicMobs] Loading Items...
[11:48:04] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[11:48:04] [Server thread/INFO]: [MythicMobs] Loading Skills...
[11:48:04] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[11:48:04] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:The Afterlife(715702779020050522)
[11:48:04] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:general(715702779020050525)
[11:48:04] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:server-chat(715705457976803380)
[11:48:04] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:server-console(715705491505938522)
[11:48:04] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:caught-on-tape(726852148855308413)
[11:48:04] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:polls-and-voting(1046848392388673646)
[11:48:04] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:suggestions(1050527282600628254)
[11:48:04] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:server-console(715705491505938522)
[11:48:04] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[11:48:04] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[11:48:04] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[11:48:04] [Server thread/INFO]: [MythicMobs] ✓ Loaded 37 mobs.
[11:48:04] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 vanilla mob overrides.
[11:48:04] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[11:48:04] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 skills.
[11:48:04] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[11:48:04] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[11:48:04] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[11:48:04] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[11:48:04] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[11:48:04] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[11:48:04] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.2.1 ( build fd1d0777 ) has been successfully loaded!
[11:48:04] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.3
[11:48:05] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[11:48:05] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[11:48:05] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[11:48:05] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[11:48:05] [Server thread/INFO]: --------------------
[11:48:05] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[11:48:05] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[11:48:05] [Server thread/INFO]: --------------------
[11:48:05] [Server thread/INFO]: [WESV] Enabling WorldEditSelectionVisualizer v2.1.3
[11:48:05] [Server thread/INFO]: [WESV] Using WorldEdit 7 api
[11:48:05] [Server thread/INFO]: [Denizen] Enabling Denizen v1.2.6-SNAPSHOT (build 6619-DEV)
[11:48:05] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.90.2-SNAPSHOT (Build 1301), impl for Spigot v1.2.6-SNAPSHOT (build 6619-DEV) 
[11:48:05] [Server thread/INFO]: +> [Denizen] Running on java version: 18.0.1.1 
[11:48:05] [Server thread/WARN]: [Denizen] Running unreliable future Java version. modern Minecraft versions are built for Java 17. Other Java versions are not guaranteed to function properly.
[11:48:05] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[11:48:05] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[11:48:05] [Server thread/INFO]: +> [Denizen]  
[11:48:05] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[11:48:05] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[11:48:05] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[11:48:05] [Server thread/INFO]: +> [Denizen] version: 1.2.6-SNAPSHOT (build 6619-DEV) 
[11:48:05] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[11:48:06] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[11:48:07] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[11:48:07] [Server thread/INFO]: +> [Denizen] Loaded 148 core commands and 28 core object types, at 1954ms from start. 
[11:48:07] [Server thread/INFO]: +> [ScriptHelper] No scripts in /plugins/Denizen/scripts/ to load! 
[11:48:07] [Server thread/INFO]: +> [ScriptRegistry] Loading 0 script files... 
[11:48:07] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! Pre-init 4ms, file load 2ms, processing 1ms. 
[11:48:07] [Server thread/INFO]: +> [Denizen] Final full init took 1998ms. 
[11:48:07] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.4
[11:48:07] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin was found. PlotSquared support enabled.
[11:48:07] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[11:48:07] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.10.0
[11:48:08] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[11:48:09] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.10.0
[11:48:09] [Server thread/INFO]: [VotingPlugin] Using dev build, this is not a stable build, use at your own risk. Build number: 574
[11:48:09] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from minecraftlist.org, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[11:48:09] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18
[11:48:09] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[11:48:09] [Server thread/INFO]: [GriefPrevention] 93 total claims loaded.
[11:48:09] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[11:48:09] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[11:48:09] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[11:48:09] [Server thread/INFO]: [GriefPrevention] Boot finished.
[11:48:09] [Server thread/INFO]: [ArtMap] Enabling ArtMap v3.9.7
[11:48:09] [Server thread/INFO]: [ArtMap] Loading 'english' language file
[11:48:09] [Server thread/INFO]: [ArtMap] Sabre Factions not detected.  Hooks skipped.
[11:48:09] [Server thread/INFO]: [ArtMap] Grief Defender not detected.  Hooks skipped.
[11:48:09] [Server thread/INFO]: [ArtMap] Red Protect not detected.  Hooks skipped.
[11:48:09] [Server thread/INFO]: [ArtMap] ASkyBlock not detected.  Hooks skipped.
[11:48:09] [Server thread/INFO]: [ArtMap] uSkyBlock not detected.  Hooks skipped.
[11:48:09] [Server thread/INFO]: [ArtMap] BentoBox/BSkyBlock not detected.  Hooks skipped.
[11:48:09] [Server thread/INFO]: [ArtMap] Residence not detected.  Hooks skipped.
[11:48:09] [Server thread/INFO]: [ArtMap] Towny not detected.  Hooks skipped.
[11:48:09] [Server thread/INFO]: [ArtMap] Marriage Master not detected.  Hooks skipped.
[11:48:09] [Server thread/INFO]: [ArtMap] CMI not detected.  Hooks skipped.
[11:48:09] [Server thread/INFO]: [ArtMap] Essentials not detected.  Hooks skipped.
[11:48:09] [Server thread/INFO]: [ArtMap] Denizen reflection handler enabled.
[11:48:09] [Server thread/INFO]: [ArtMap] WorldGuard hooks enabled.
[11:48:09] [Server thread/INFO]: [ArtMap] GriefPrevention hooks enabled.
[11:48:09] [Server thread/INFO]: [ArtMap] ProtocolLib hooks enabled.
[11:48:09] [Server thread/INFO]: [ArtMap]  MC version: v1_18
[11:48:09] [Server thread/INFO]: [ChatControlRed] Enabling ChatControlRed v10.16.2
[11:48:09] [Server thread/INFO]:  ____ _  _ ____ ___ ____ ____ _  _ ___ ____ ____ _
[11:48:09] [Server thread/INFO]:  |    |__| |__|  |  |    |  | |\ |  |  |__/ |  | |
[11:48:09] [Server thread/INFO]:  |___ |  | |  |  |  |___ |__| | \|  |  |  \ |__| |___
[11:48:09] [Server thread/INFO]:   
[11:48:09] [Server thread/INFO]: Cleaned data of 8 inactive players.
[11:48:10] [Server thread/INFO]:   
[11:48:10] [Server thread/INFO]: Tutorial & help:
[11:48:10] [Server thread/INFO]: https://github.com/kangarko/ChatControl-Red/wiki
[11:48:10] [Server thread/INFO]:   
[11:48:10] [Server thread/INFO]: Loaded! Random joke: Uses outdated log4j! #joke
[11:48:10] [Server thread/INFO]:   
[11:48:10] [Server thread/INFO]: [DiscordSRV] API listener org.mineacademy.chatcontrol.lib.model.DiscordListener$DiscordListenerImpl unsubscribed
[11:48:10] [Server thread/INFO]: [DiscordSRV] API listener org.mineacademy.chatcontrol.lib.model.DiscordListener$DiscordListenerImpl subscribed (3 methods)
[11:48:11] [Server thread/INFO]: Starting GS4 status listener
[11:48:11] [Server thread/INFO]: Thread Query Listener started
[11:48:11] [Query Listener #1/INFO]: Query running on 0.0.0.0:25565
[11:48:11] [Server thread/INFO]: Running delayed init tasks
[11:48:11] [Craft Scheduler Thread - 9 - PlayerParticles/INFO]: [PlayerParticles] Data handler connected using SQLite.
[11:48:11] [Craft Scheduler Thread - 4 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] Congratulations! You are running the latest PlotSquared version
[11:48:11] [Craft Scheduler Thread - 4 - ArtMap/INFO]: [ArtMap] Async load of 1 artists started. 624 retrieved from disk cache.
[11:48:11] [Craft Scheduler Thread - 4 - ArtMap/INFO]: [ArtMap] Loaded 0 from disk cache, 0 from server, and 0 from mojang out of 0 artists with 0 failures
[11:48:11] [Craft Scheduler Thread - 4 - ArtMap/INFO]: [ArtMap] Remaining artists will be loaded when needed.
[11:48:11] [Craft Scheduler Thread - 14 - Vault/INFO]: [Vault] Checking for Updates ... 
[11:48:11] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[11:48:11] [Server thread/INFO]: [Magic] Vault found, 'currency' cost types available
[11:48:11] [Server thread/INFO]: [Magic] Registered currencies: item,ac,mana,xp,health,currency,sp,levels,hunger,tc
[11:48:11] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[11:48:12] [Craft Scheduler Thread - 14 - Vault/INFO]: [Vault] No new version available
[11:48:12] [Server thread/INFO]: [Magic] Loaded 851 spells
[11:48:12] [Server thread/INFO]: [Magic] Loaded 36 progression paths
[11:48:12] [Server thread/INFO]: [Magic] Loaded 25 crafting recipes
[11:48:12] [Server thread/INFO]: [Magic] LogBlock not found
[11:48:12] [Server thread/INFO]: [Magic] Factions not found
[11:48:12] [Server thread/INFO]: [Magic] WorldGuard found, will respect build permissions for construction spells
[11:48:12] [Server thread/INFO]: [Magic] Towny not found, region protection and pvp checks will not be used.
[11:48:12] [Server thread/INFO]: [Magic] Lockette nor LockettePro found, will not integrate.
[11:48:12] [Server thread/INFO]: [Magic] GriefPrevention found, will respect claim build permissions for construction spells
[11:48:12] [Server thread/INFO]: [Magic] NoCheatPlus not found, will not integrate.
[11:48:12] [Server thread/INFO]: [Magic] dynmap not found, not integrating.
[11:48:12] [Server thread/INFO]: [Magic] Citizens found, enabling magic and command traits
[11:48:12] [Server thread/INFO]: [Magic] LightAPI not found, Light action will not work
[11:48:12] [Server thread/INFO]: [Magic] Loaded 0 arenas
[11:48:12] [Server thread/INFO]: [Magic] Finished loading configuration
[11:48:13] [Server thread/INFO]: [Citizens] Loaded 11 NPCs.
[11:48:13] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[11:48:13] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[11:48:13] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2023/01/01 11:48:05 
[11:48:13] [Server thread/INFO]: Done (59.249s)! For help, type "help"
[11:48:13] [Server thread/INFO]: Timings Reset
[11:48:13] [Server thread/INFO]: [Magic] Finished loading data.
[11:48:13] [Craft Scheduler Thread - 8 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 50761 heads!
[11:48:13] [Craft Scheduler Thread - 8 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[11:48:14] [Server thread/INFO]: com.mojang.authlib.GameProfile@3fd0d77a[id=<null>,name=fuse_____,properties={},legacy=false] (/73.137.236.98:59102) lost connection: Disconnected
[11:48:14] [Server thread/INFO]: com.mojang.authlib.GameProfile@7c5f8cba[id=<null>,name=fuse_____,properties={},legacy=false] (/73.137.236.98:59109) lost connection: Disconnected
[11:48:14] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[11:48:14] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[11:48:14] [Craft Scheduler Thread - 16 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.10.0
[11:48:15] [Craft Scheduler Thread - 16 - VotingPlugin/WARN]: [VotingPlugin] Detected an issue with voting sites, check the server startup log for more details: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[11:48:15] [User Authenticator #0/INFO]: UUID of player fuse_____ is dbc00dee-6bbd-44ef-a1f5-a8ae9d000a5f
[11:48:16] [Server thread/INFO]: fuse_____ is here! :D
[11:48:16] [Server thread/INFO]: [ChatControlRed] TIP: Joining player to his saved channel standard in mode write
[11:48:16] [Server thread/INFO]: [ChatControlRed] TIP: Not joining fuse_____ to channel standard because he left it manually
[11:48:16] [Server thread/INFO]: fuse_____[/73.137.236.98:59110] logged in with entity id 331 at ([moddedsurvivalhard]10050.490981830702, 65.0, -9672.358361893403)
[11:48:28] [User Authenticator #0/INFO]: UUID of player Supermalon is 87fb3c6c-5ff6-4bf6-b326-992c6137ea12
[11:48:28] [Server thread/INFO]: Supermalon is here! :D
[11:48:28] [Server thread/INFO]: [ChatControlRed] TIP: Joining player to his saved channel admin in mode read
[11:48:28] [Server thread/INFO]: [ChatControlRed] TIP: Joining player to his saved channel global in mode read
[11:48:28] [Server thread/INFO]: [ChatControlRed] TIP: Joining player to his saved channel ranged in mode read
[11:48:28] [Server thread/INFO]: [ChatControlRed] TIP: Joining player to his saved channel standard in mode write
[11:48:28] [Server thread/INFO]: [ChatControlRed] TIP: Not joining Supermalon to channel standard because he left it manually
[11:48:28] [Server thread/INFO]: Supermalon[/173.21.213.149:57389] logged in with entity id 549 at ([fishslap]-1.3208928426265403, 107.74293160172489, -3.8428990405491805)
[11:48:32] [User Authenticator #0/INFO]: UUID of player PoultryGirl6699 is 391762eb-24f6-4d95-84d6-bfac682d575a
[11:48:32] [Server thread/INFO]: PoultryGirl6699 is here! :D
[11:48:32] [Server thread/INFO]: [ChatControlRed] TIP: Joining player to his saved channel standard in mode write
[11:48:32] [Server thread/INFO]: [ChatControlRed] TIP: Not joining PoultryGirl6699 to channel standard because he left it manually
[11:48:32] [Server thread/INFO]: PoultryGirl6699[/173.21.213.149:57391] logged in with entity id 551 at ([fishslap]0.1699409934511894, 105.92159999847412, 2.0778996716342877)
[11:48:35] [User Authenticator #0/INFO]: UUID of player lissakitty is d741dd01-8fac-496e-adc6-f88e1087e57c
[11:48:35] [Server thread/INFO]: lissakitty is here! :D
[11:48:35] [Server thread/INFO]: [ChatControlRed] TIP: Joining player to his saved channel standard in mode write
[11:48:35] [Server thread/INFO]: lissakitty[/173.21.213.149:57395] logged in with entity id 552 at ([fishslap]1.7788268280024988, 105.92159999847412, 2.8199136147595594)
[11:48:42] [Server thread/INFO]: Supermalon issued server command: /warp skycade
[11:48:42] [Server thread/INFO]: [ChatControlRed] Note: Not sending Supermalon's command to spying players because he had 'chatcontrol.bypass.spy' permission. Player messages with such permission are not spied on. To disable that, negate this permission (a false value if using LuckPerms). This message only shows once per 3 hours.
[11:48:45] [Server thread/INFO]: Supermalon issued server command: /tp lissakitty Supermalon
[11:48:45] [Server thread/INFO]: [Supermalon: Teleported lissakitty to Supermalon]
[11:48:47] [Async Chat Thread - #1/INFO]: [standard] fuse_____: test fish slap
[11:48:47] [Async Chat Thread - #1/INFO]: [ChatControlRed 10.16.2] ChatListener listening to AsyncPlayerChatEvent at HIGH priority took 282.04 ms
[11:48:48] [Server thread/INFO]: Supermalon issued server command: /tp PoultryGirl6699 Supermalon
[11:48:48] [Server thread/INFO]: [Supermalon: Teleported PoultryGirl6699 to Supermalon]
[11:48:50] [Async Chat Thread - #0/INFO]: [ChatControlRed] Note: Not logging Supermalon's chat because he had 'chatcontrol.bypass.log' permission. Players with these permission do not get their content logged. To disable that, negate this permission (a false value if using LuckPerms). This message only shows once per 3 hours.
[11:48:50] [Async Chat Thread - #0/INFO]: [standard] Supermalon: i am
[11:48:56] [Async Chat Thread - #0/INFO]: [standard] fuse_____: i will
[11:48:57] [Server thread/INFO]: fuse_____ fell from a high place
[11:49:01] [Async Chat Thread - #1/INFO]: [standard] fuse_____: w
[11:49:19] [Server thread/INFO]: lissakitty issued server command: /invite PoultryGirl6699
[11:49:23] [Server thread/INFO]: PoultryGirl6699 issued server command: /partyjoin lissakitty
[11:49:26] [Async Chat Thread - #0/INFO]: [standard] fuse_____: oh god
[11:49:32] [Async Chat Thread - #1/INFO]: [standard] fuse_____: i keep getting spammed messages
[11:49:42] [Async Chat Thread - #0/INFO]: [standard] Supermalon: loooooooooooooooooooook
[11:49:45] [Async Chat Thread - #1/INFO]: [standard] Supermalon: yup
[11:49:46] [Async Chat Thread - #0/INFO]: [standard] Supermalon: same here
[11:49:49] [Async Chat Thread - #1/INFO]: [standard] Supermalon: i updated npc plugin
[11:49:52] [Async Chat Thread - #1/INFO]: [standard] Supermalon: guess they got a glitch
[11:49:53] [Async Chat Thread - #0/INFO]: [standard] Supermalon: lmaoooo
[11:50:00] [Async Chat Thread - #1/INFO]: [standard] fuse_____: its spamming right click me
[11:50:03] [Async Chat Thread - #0/INFO]: [standard] Supermalon: same
[11:50:15] [User Authenticator #1/INFO]: UUID of player PaulHenryAdams is ee111d36-847c-4f90-b0d5-206374d6f360
[11:50:15] [Server thread/INFO]: PaulHenryAdams is here! :D
[11:50:15] [Server thread/INFO]: [ChatControlRed] TIP: Joining player to his saved channel standard in mode write
[11:50:15] [Server thread/INFO]: [ChatControlRed] TIP: Not joining PaulHenryAdams to channel standard because he left it manually
[11:50:15] [Server thread/INFO]: PaulHenryAdams[/84.173.13.187:58558] logged in with entity id 588 at ([moddedsurvivalhard]7604.837490083595, 71.53292827534491, -2284.520485519872)
[11:50:46] [Server thread/INFO]: PaulHenryAdams issued server command: /fly
[11:51:17] [Server thread/INFO]: fuse_____ lost connection: Disconnected
[11:51:17] [Server thread/INFO]: fuse_____ left. Boo :(
[11:51:36] [Async Chat Thread - #2/INFO]: [standard] PaulHenryAdams: malon there is a random house in my are but i guess you know the person who made it
[11:51:51] [Async Chat Thread - #2/INFO]: [standard] PaulHenryAdams: can i make the house a little bit prettier lol
[11:51:56] [Async Chat Thread - #3/INFO]: [standard] Supermalon: paul
[11:52:02] [Async Chat Thread - #2/INFO]: [standard] Supermalon: remember how u can check who placed blocks?
[11:52:06] [Async Chat Thread - #3/INFO]: [standard] Supermalon: just do that
[11:52:19] [Async Chat Thread - #3/INFO]: [standard] Supermalon: then u know whos house it is
[11:52:20] [Async Chat Thread - #3/INFO]: [standard] PaulHenryAdams: AC WARRIOR
[11:52:24] [Async Chat Thread - #2/INFO]: [standard] Supermalon: booya
[11:52:43] [User Authenticator #2/INFO]: UUID of player SpeedsterToo is 19277e77-ec94-402e-b080-ec8887b1ad7d
[11:52:43] [Server thread/INFO]: SpeedsterToo is here! :D
[11:52:43] [Server thread/INFO]: [ChatControlRed] TIP: Joining player to his saved channel standard in mode write
[11:52:43] [Server thread/INFO]: SpeedsterToo[/212.69.62.158:33962] logged in with entity id 1192 at ([moddedsurvivalhard]7629.861830273475, 63.9375, -2308.4760989340257)
[11:52:47] [Async Chat Thread - #3/INFO]: [standard] PaulHenryAdams: but there are a lot of signs saying Supermalon loves you
[11:52:57] [Async Chat Thread - #2/INFO]: [standard] PaulHenryAdams: so i thought maybe you did it
[11:53:42] [Server thread/INFO]: --------Server Tip--------
[11:53:42] [Server thread/INFO]: Do /help if you need help
[11:53:42] [Server thread/INFO]: -------------------------
[11:53:46] [Server thread/INFO]: PaulHenryAdams issued server command: /fly
[11:53:49] [Server thread/INFO]: PaulHenryAdams issued server command: /fly
[11:56:02] [Server thread/INFO]: Supermalon issued server command: /npc select
[11:56:06] [Server thread/INFO]: Supermalon issued server command: /npc talk
[11:56:08] [Server thread/INFO]: Supermalon issued server command: /npc text
[11:56:11] [Server thread/INFO]: Supermalon issued server command: /npc text
[11:57:30] [Server thread/INFO]: SpeedsterToo was blown up by Creeper
[11:57:35] [Server thread/INFO]: SpeedsterToo issued server command: /deathpoint
[11:58:09] [Server thread/INFO]: SpeedsterToo issued server command: /deathpoint
[11:58:46] [Server thread/INFO]: SpeedsterToo issued server command: /deathpoint
[11:59:42] [Server thread/INFO]: --------Server Tip--------
[11:59:42] [Server thread/INFO]: Do /help if you need help
[11:59:42] [Server thread/INFO]: -------------------------
[11:59:53] [Server thread/INFO]: Unknown command.
[11:59:57] [Server thread/INFO]: Unknown command.
[11:59:58] [Server thread/INFO]: SpeedsterToo issued server command: /SPAWN
[11:59:59] [Server thread/INFO]: =====[ Citizens v2.0.30-SNAPSHOT (build 2869) ]=====
[11:59:59] [Server thread/INFO]:      -- Author: fullwall
[11:59:59] [Server thread/INFO]:      -- Website Support
[12:00:00] [Server thread/INFO]: [Heaven] You've granted 15 Prayers to SpeedsterToo.
[12:00:00] [Server thread/INFO]: [Heaven] You've granted 15 Prayers to PaulHenryAdams.
[12:00:00] [Server thread/INFO]: [Heaven] You've granted 15 Prayers to Supermalon.
[12:00:00] [Server thread/INFO]: [Heaven] You've granted 15 Prayers to PoultryGirl6699.
[12:00:00] [Server thread/INFO]: [Heaven] You've granted 15 Prayers to lissakitty.
[12:00:09] [Server thread/INFO]: SpeedsterToo issued server command: /span
[12:00:14] [Server thread/INFO]: SpeedsterToo issued server command: /spawn
[12:00:24] [Server thread/INFO]: Unknown command. Type "/help" for help.
[12:00:25] [Server thread/INFO]: Checking version, please wait...
[12:00:26] [Thread-213/INFO]: This server is running Paper version git-Paper-366 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: 8d7d927)
You are running the latest version
Previous version: git-Paper-364 (MC: 1.19.3)
[12:00:40] [Server thread/INFO]: com.mojang.authlib.GameProfile@60fac71a[id=<null>,name=lighthouse,properties={},legacy=false] (/207.244.245.94:48910) lost connection: Disconnected
[12:01:44] [Server thread/INFO]: SpeedsterToo drowned
[12:02:22] [Async Chat Thread - #4/INFO]: [standard] SpeedsterToo: OMG
[12:02:41] [Async Chat Thread - #5/INFO]: [standard] SpeedsterToo: OOOOOOOOOOOOOMMMMMMMMMMMMMMGGGGGGGGGGGGGG
[12:02:51] [Async Chat Thread - #4/INFO]: [standard] PaulHenryAdams: what?
[12:03:07] [Async Chat Thread - #4/INFO]: [standard] SpeedsterToo: the NPC's are broken