Paste #134747: Unnamed Server Log Paste

Date: 2025/07/11 16:33:04 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[22:45:36] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.7+6-LTS; Eclipse Adoptium Temurin-21.0.7+6) on Linux 5.15.0-143-generic (amd64)
[22:45:36] [ServerMain/INFO]: [bootstrap] Loading Purpur 1.21.4-2416-HEAD@51aafbc (2025-04-12T23:37:33Z) for Minecraft 1.21.4
[22:45:36] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[22:45:36] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/citizens-2.0.37-SNAPSHOT.jar'...
[22:45:38] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/citizens-2.0.37-SNAPSHOT.jar' in 1416ms.
[22:45:38] [ServerMain/INFO]: [PluginInitializerManager] Initialized 36 plugins
[22:45:38] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (36):
 - AdvancedChat (1.9.19), AdvancedReplay (1.8.14), AnimatedScoreboard (0.3.7), AntiBackdoor (1.3.2), AntiCheatReplay (2.7.21), Citizens (2.0.37-SNAPSHOT (build 3763)), DecentHolograms (2.9.5), DeluxeHub (3.6.3), DeluxeMenus (1.14.1-DEV-199), Essentials (2.21.1), ExploitFixer (3.2.7), FastAsyncWorldEdit (2.12.3), Geyser-Spigot (2.8.2-SNAPSHOT), HamsterAPI (0.2.5), LuckPerms (5.5.9), MiniMOTD (2.1.6), MyCommand (5.7.5), Pl-Hide-Free (2.0.2), PlaceholderAPI (2.11.6), Plan (5.6 build 2965), PlasmoVoice (2.1.5), PlayTime (3.8.1), ProtocolLib (5.4.0-SNAPSHOT-741), StaffPlusPlus (1.21.14), TAB (5.2.2), ViaBackwards (5.4.1), ViaRewind (4.0.8), ViaVersion (5.4.1), VoidWorld (1.0), Vulcan (2.9.5), WorldGuard (7.0.13+82fdc65), WorldGuardExtraFlags (4.2.4-SNAPSHOT), floodgate (2.2.4-SNAPSHOT (b116-0e3163c)), packetevents (2.9.1), pv-addon-discs (1.1.6), pv-addon-lavaplayer-lib (1.1.7)
[22:45:41] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[22:45:43] [ServerMain/INFO]: Loaded 1370 recipes
[22:45:43] [ServerMain/INFO]: Loaded 1481 advancements
[22:45:43] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[22:45:43] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 150.9ms
[22:45:43] [Server thread/INFO]: Starting minecraft server version 1.21.4
[22:45:43] [Server thread/INFO]: Loading properties
[22:45:43] [Server thread/INFO]: This server is running Purpur version 1.21.4-2416-HEAD@51aafbc (2025-04-12T23:37:33Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
[22:45:43] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[22:45:43] [Server thread/INFO]: Server Ping Player Sample Count: 12
[22:45:43] [Server thread/INFO]: Using 4 threads for Netty based IO
[22:45:44] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
[22:45:44] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[22:45:44] [Server thread/INFO]: Default game type: SURVIVAL
[22:45:44] [Server thread/INFO]: Generating keypair
[22:45:44] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25500
[22:45:44] [Server thread/INFO]: Using epoll channel type
[22:45:45] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[22:45:45] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[22:45:45] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loading 1 libraries... please wait
[22:45:45] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[22:45:45] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[22:45:45] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[22:45:45] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[22:45:45] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[22:45:45] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[22:45:46] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[22:45:46] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[22:45:52] [Server thread/WARN]: Legacy plugin PlayTime v3.8.1 does not specify an api-version.
[22:45:52] [Server thread/WARN]: Legacy plugin VoidWorld v1.0 does not specify an api-version.
[22:45:52] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.4.1
[22:45:52] [Server thread/INFO]: [ViaVersion] ViaVersion 5.4.1 is now loaded. Registering protocol transformers and injecting...
[22:45:52] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[22:45:52] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[22:45:53] [Server thread/INFO]: [ViaBackwards] Loading translations...
[22:45:53] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[22:45:53] [Server thread/INFO]: [ViaRewind] Registering protocols...
[22:45:53] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[22:45:54] [Server thread/INFO]: [floodgate] Took 403ms to boot Floodgate
[22:45:54] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.4.1
[22:45:54] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-741
[22:45:54] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.4) has not yet been tested! Proceed with caution.
[22:45:54] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[22:45:54] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.8.2-SNAPSHOT
[22:45:54] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[22:45:54] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[22:45:54] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v4.0.8
[22:45:54] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.5.9
[22:45:54] [Server thread/INFO]: [LuckPerms] Loading configuration...
[22:45:54] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.12.3
[22:45:55] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2ea831b5]
[22:45:55] [Server thread/INFO]: [AdvancedChat] Loading server plugin AdvancedChat v1.9.19
[22:45:55] [Server thread/INFO]: [DeluxeHub] Loading server plugin DeluxeHub v3.6.3
[22:45:55] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.9.1
[22:45:56] [Server thread/INFO]: [PlasmoVoice] Loading server plugin PlasmoVoice v2.1.5
[22:45:56] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13+82fdc65
[22:45:56] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.1
[22:45:56] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.9.5
[22:45:56] [Server thread/INFO]: [AdvancedReplay] Loading server plugin AdvancedReplay v1.8.14
[22:45:56] [Server thread/INFO]: [pv-addon-lavaplayer-lib] Loading server plugin pv-addon-lavaplayer-lib v1.1.7
[22:45:56] [Server thread/INFO]: [HamsterAPI] Loading server plugin HamsterAPI v0.2.5
[22:45:56] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3763)
[22:45:56] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-DEV-199
[22:45:56] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[22:45:56] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.2.2
[22:45:56] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[22:45:56] [Server thread/INFO]: [AnimatedScoreboard] Loading server plugin AnimatedScoreboard v0.3.7
[22:45:56] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.9.5
[22:45:56] [Server thread/INFO]: [Plan] Loading server plugin Plan v5.6 build 2965
[22:45:56] [Server thread/INFO]: [AntiBackdoor] Loading server plugin AntiBackdoor v1.3.2
[22:45:56] [Server thread/INFO]: [AntiCheatReplay] Loading server plugin AntiCheatReplay v2.7.21
[22:45:56] [Server thread/INFO]: [pv-addon-discs] Loading server plugin pv-addon-discs v1.1.6
[22:45:56] [Server thread/INFO]: [StaffPlusPlus] Loading server plugin StaffPlusPlus v1.21.14
[22:45:56] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.1.6
[22:45:56] [Server thread/INFO]: [PlayTime] Loading server plugin PlayTime v3.8.1
[22:45:56] [Server thread/INFO]: [Pl-Hide-Free] Loading server plugin Pl-Hide-Free v2.0.2
[22:45:56] [Server thread/INFO]: [Pl-Hide-Free] Loading library caffeine
[22:45:56] [Server thread/INFO]: [ExploitFixer] Loading server plugin ExploitFixer v3.2.7
[22:45:56] [Server thread/INFO]: [VoidWorld] Loading server plugin VoidWorld v1.0
[22:45:56] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.5
[22:45:56] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[22:45:56] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-741
[22:45:56] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v4.0.8
[22:45:56] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.5.9
[22:45:56] [Server thread/INFO]:         __    
[22:45:56] [Server thread/INFO]:   |    |__)   LuckPerms v5.5.9
[22:45:56] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[22:45:56] [Server thread/INFO]: 
[22:45:56] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[22:45:57] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[22:45:57] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[22:45:57] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1147ms)
[22:45:57] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.12.3
[22:45:57] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[22:45:57] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[22:45:57] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[22:45:57] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[22:45:57] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_4.PaperweightFaweAdapter as the Bukkit adapter
[22:45:58] [Server thread/INFO]: [PlasmoVoice] Enabling PlasmoVoice v2.1.5
[22:45:58] [Server thread/INFO]: [PlasmoVoice] LuckPerms permissions listener attached
[22:45:58] [Server thread/INFO]: [PlasmoVoice] pv-addon-lavaplayer-lib v1.1.7 by Apehum loaded
[22:45:58] [Server thread/INFO]: [PlasmoVoice] pv-addon-discs v1.1.6 by KPidS, Apehum loaded
[22:45:58] [Server thread/INFO]: [PlasmoVoice] UDP server is started on /[0:0:0:0:0:0:0:0]:25501
[22:45:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plasmovoice [2.1.5]
[22:45:58] [Server thread/INFO]: [pv-addon-lavaplayer-lib] Enabling pv-addon-lavaplayer-lib v1.1.7
[22:45:58] [Server thread/INFO]: [AntiBackdoor] Enabling AntiBackdoor v1.3.2
[22:45:58] [Server thread/INFO]:  -> AntiBackdoor > Checking PlaceholderAPI...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking 'DeluxeHub'...
[22:45:59] [pool-28-thread-1/WARN]: [PlasmoVoice] New version available 2.1.6+60bf85a: https://cdn.modrinth.com/data/1bZhdhsH/versions/aLnbX09d/PlasmoVoice-Paper-2.1.6%2B60bf85a-SNAPSHOT.jar
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking MyCommand...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking VoidWorld...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking ProtocolLib...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking ExploitFixer...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking Pl-Hide-Free...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking HamsterAPI...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking pv-addon-lavaplayer-lib...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking Essentials...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking PlayTime...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking AdvancedReplay...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking floodgate...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking MiniMOTD...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking Vulcan...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking LuckPerms...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking packetevents...
[22:45:59] [Server thread/INFO]:  -> AntiBackdoor > Checking StaffPlusPlus...
[22:46:00] [Server thread/INFO]:  -> AntiBackdoor > Checking pv-addon-discs...
[22:46:00] [Server thread/INFO]:  -> AntiBackdoor > Checking PlasmoVoice...
[22:46:00] [Server thread/INFO]:  -> AntiBackdoor > Checking FastAsyncWorldEdit...
[22:46:00] [Server thread/INFO]:  -> AntiBackdoor > Checking AdvancedChat...
[22:46:00] [Server thread/INFO]:  -> AntiBackdoor > Checking AntiCheatReplay...
[22:46:00] [Server thread/INFO]:  -> AntiBackdoor > Checking AntiBackdoor...
[22:46:00] [Server thread/INFO]:  -> AntiBackdoor > Checking Plan...
[22:46:00] [Server thread/INFO]:  -> AntiBackdoor > Checking "DecentHolograms"...
[22:46:00] [Server thread/INFO]:  -> AntiBackdoor > Checking AnimatedScoreboard...
[22:46:00] [Server thread/INFO]:  -> AntiBackdoor > Checking Geyser-Spigot...
[22:46:00] [Server thread/INFO]:  -> AntiBackdoor > Checking WorldGuardExtraFlags...
[22:46:00] [Server thread/INFO]:  -> AntiBackdoor > Checking TAB...
[22:46:00] [Server thread/INFO]:  -> AntiBackdoor > Checking ViaVersion...
[22:46:01] [Server thread/INFO]:  -> AntiBackdoor > Checking ViaRewind...
[22:46:01] [Server thread/INFO]:  -> AntiBackdoor > Checking DeluxeMenus...
[22:46:01] [Server thread/INFO]:  -> AntiBackdoor > Checking Citizens...
[22:46:01] [Server thread/INFO]:  -> AntiBackdoor > Checking WorldGuard...
[22:46:01] [Server thread/INFO]:  -> AntiBackdoor > Checking ViaBackwards...
[22:46:01] [Server thread/INFO]: [pv-addon-discs] Enabling pv-addon-discs v1.1.6
[22:46:01] [DefaultDispatcher-worker-1/INFO]: [pv-addon-discs] YouTube clients: [MUSIC, ANDROID_VR, WEB, WEBEMBEDDED, TVHTML5EMBEDDED]
[22:46:01] [Server thread/INFO]: [VoidWorld] Enabling VoidWorld v1.0*
[22:46:01] [Server thread/INFO]: Preparing level "world"
[22:46:02] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[22:46:02] [Server thread/INFO]: Preparing spawn area: 0%
[22:46:02] [Server thread/INFO]: Preparing spawn area: 4%
[22:46:03] [Server thread/INFO]: Time elapsed: 878 ms
[22:46:03] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[22:46:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:46:03] [Server thread/INFO]: Time elapsed: 96 ms
[22:46:03] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[22:46:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:46:03] [Server thread/INFO]: Time elapsed: 98 ms
[22:46:03] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.4.1
[22:46:03] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.4 (769)
[22:46:03] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[22:46:03] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.4.1
[22:46:03] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[22:46:03] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[22:46:03] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.8.2-SNAPSHOT
[22:46:04] [Server thread/INFO]: [AdvancedChat] Enabling AdvancedChat v1.9.19
[22:46:04] [Server thread/INFO]: [AdvancedChat] Loaded 18 chat colors
[22:46:04] [Server thread/INFO]: [AdvancedChat] Loaded 33 tags
[22:46:04] [Server thread/INFO]: [AdvancedChat] Loading chat rules...
[22:46:04] [Server thread/INFO]: [AdvancedChat] Registered caps chat rule
[22:46:04] [Server thread/INFO]: [AdvancedChat] Registered emojis chat rule
[22:46:04] [Server thread/INFO]: [AdvancedChat] Registered advertising chat rule
[22:46:04] [Server thread/INFO]: [AdvancedChat] Loaded 3 chat rules
[22:46:04] [Server thread/INFO]: [AdvancedChat] Customizer has been enabled.
[22:46:04] [Server thread/INFO]: [AdvancedChat] Loaded 1 message customizations.
[22:46:04] [Server thread/INFO]: [AdvancedChat] Registered developer chat format
[22:46:04] [Server thread/INFO]: [AdvancedChat] Registered helper chat format
[22:46:04] [Server thread/INFO]: [AdvancedChat] Registered vip chat format
[22:46:04] [Server thread/INFO]: [AdvancedChat] Registered admin chat format
[22:46:04] [Server thread/INFO]: [AdvancedChat] Registered mod chat format
[22:46:04] [Server thread/INFO]: [AdvancedChat] Registered coowner chat format
[22:46:04] [Server thread/INFO]: [AdvancedChat] Registered default chat format
[22:46:04] [Server thread/INFO]: [AdvancedChat] Registered owner chat format
[22:46:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedchat [1.0.0]
[22:46:04] [Server thread/INFO]: [DeluxeHub] Enabling DeluxeHub v3.6.3
[22:46:04] [Server thread/INFO]: [DeluxeHub]  _   _            _          _    _ 
[22:46:04] [Server thread/INFO]: [DeluxeHub] | \ |_ |  | | \/ |_ |_| | | |_)   _)
[22:46:04] [Server thread/INFO]: [DeluxeHub] |_/ |_ |_ |_| /\ |_ | | |_| |_)   _)
[22:46:04] [Server thread/INFO]: [DeluxeHub] 
[22:46:04] [Server thread/INFO]: [DeluxeHub] Version: 3.6.3
[22:46:04] [Server thread/INFO]: [DeluxeHub] Author: ItsLewizzz
[22:46:04] [Server thread/INFO]: [DeluxeHub] 
[22:46:04] [Server thread/INFO]: [DeluxeHub]  Hooked into PlaceholderAPI
[22:46:04] [Server thread/INFO]: [DeluxeHub] Loaded custom menu 'serverselector'.
[22:46:05] [Server thread/WARN]: [DeluxeHub] Inventory with name 'serverselector.yml' already exists, skipping duplicate..
[22:46:05] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[22:46:05] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[22:46:05] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DeluxeHub' to create a bStats instance!
[22:46:05] [Server thread/INFO]: [DeluxeHub] Loaded 12 plugin modules.
[22:46:05] [Server thread/INFO]: [DeluxeHub] 
[22:46:05] [Server thread/INFO]: [DeluxeHub] Successfully loaded in 707ms
[22:46:05] [Server thread/INFO]: [packetevents] Enabling packetevents v2.9.1
[22:46:05] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[22:46:05] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13+82fdc65
[22:46:05] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.9.1)
[22:46:05] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[22:46:05] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[22:46:05] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[22:46:05] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[22:46:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[22:46:05] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[22:46:05] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[22:46:05] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[22:46:05] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[22:46:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[22:46:05] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[22:46:05] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[22:46:05] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[22:46:05] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[22:46:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[22:46:05] [Server thread/INFO]: [WorldGuard] Loading region data...
[22:46:06] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.1
[22:46:06] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[22:46:06] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[22:46:06] [Server thread/INFO]: [Essentials] No kits found to migrate.
[22:46:06] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[22:46:06] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[22:46:06] [Server thread/INFO]: [Essentials] Loaded 43517 items from items.json.
[22:46:06] [Server thread/INFO]: [Essentials] Using locale en_US
[22:46:06] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[22:46:07] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[22:46:07] [Server thread/WARN]: [Essentials] Detected supported permissions plugin LuckPerms without Vault installed.
[22:46:07] [Server thread/WARN]: [Essentials] Features such as chat prefixes/suffixes and group-related functionality will not work until you install Vault.
[22:46:07] [Server thread/INFO]: [Essentials] Using superperms-based permissions.
[22:46:07] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.9.5
[22:46:07] [Server thread/INFO]: [Vulcan] Server Version: .1.21.4 detected!
[22:46:07] [Server thread/INFO]: [Vulcan] Floodgate 2.0 found. Enabling hook!
[22:46:07] [Server thread/INFO]: [Vulcan] BStats enabled!
[22:46:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.9.5]
[22:46:07] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[22:46:07] [Server thread/INFO]: [AdvancedReplay] Enabling AdvancedReplay v1.8.14
[22:46:07] [Server thread/INFO]: [AdvancedReplay] Loading Replay v1.8.14 by Jumper251
[22:46:07] [Server thread/INFO]: [AdvancedReplay] Finished (27ms)
[22:46:07] [Server thread/INFO]: [HamsterAPI] Enabling HamsterAPI v0.2.5
[22:46:07] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3763)
[22:46:07] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[22:46:08] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[22:46:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizens [1.0.0]
[22:46:08] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-DEV-199
[22:46:08] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[22:46:08] [Server thread/INFO]: [DeluxeMenus] 0 GUI menus loaded!
[22:46:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-DEV-199]
[22:46:08] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[22:46:08] [Server thread/INFO]: [TAB] Enabling TAB v5.2.2
[22:46:08] [Server thread/INFO]: [TAB] Enabled in 202ms
[22:46:08] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[22:46:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[22:46:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[22:46:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[22:46:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[22:46:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[22:46:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[22:46:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[22:46:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[22:46:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[22:46:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[22:46:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[22:46:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[22:46:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[22:46:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[22:46:08] [Server thread/INFO]: [AnimatedScoreboard] Enabling AnimatedScoreboard v0.3.7
[22:46:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: animatedscoreboard [0.0.1]
[22:46:08] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.9.5
[22:46:08] [Server thread/INFO]: [DecentHolograms] Initialized NMS adapter for v1_21_R3 (1.21.4).
[22:46:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[22:46:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[22:46:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[22:46:08] [Server thread/INFO]: [DecentHolograms] NBT-API loaded successfully.
[22:46:08] [Server thread/INFO]: [Plan] Enabling Plan v5.6 build 2965
[22:46:09] [Server thread/INFO]: [Plan] 
[22:46:09] [Server thread/INFO]: [Plan]            ██▌
[22:46:09] [Server thread/INFO]: [Plan]      ██▌   ██▌
[22:46:09] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  Player Analytics
[22:46:09] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  v5.6 build 2965
[22:46:09] [Server thread/INFO]: [Plan] 
[22:46:09] [Server thread/INFO]: [Plan] Locale: 'English' by AuroraLS3
[22:46:09] [Server thread/INFO]: [Plan] Downloading SQLite Driver, this may take a while...
[22:46:09] [Plan SQLiteDB-transaction-thread-1/INFO]: [Plan] Database: Making sure schema is up to date..
[22:46:09] [Server thread/INFO]: [Plan] SQLite-database connection established.
[22:46:09] [Server thread/INFO]: [Plan] WebServer was not initialized. (WebServer.DisableWebServer: true)
[22:46:09] [Server thread/INFO]: [Plan] Loading server identifying information
[22:46:09] [Server thread/INFO]: [Plan] Server identifier loaded: fac3ffb0-ba31-4627-9df8-cfad4f4c9f8e
[22:46:09] [Plan Non critical-pool-3/WARN]: [Plan] Downloading GeoLite2 requires accepting GeoLite2 EULA - see 'Data_gathering.Accept_GeoLite2_EULA' in the config.
[22:46:09] [Plan Non critical-pool-3/ERROR]: [Plan] Failed to enable geolocation.
[22:46:09] [Plan SQLiteDB-transaction-thread-1/INFO]: [Plan] All database patches applied successfully.
[22:46:09] [Server thread/INFO]: [Plan] Registered extension: Essentials
[22:46:09] [Server thread/INFO]: [Plan] Registered extension: EssentialsEco
[22:46:09] [Server thread/INFO]: [Plan] Registered extension: Floodgate
[22:46:09] [Server thread/INFO]: [Plan] Registered extension: LuckPerms
[22:46:09] [Server thread/INFO]: [Plan] Registered extension: PlaceholderAPI
[22:46:09] [Server thread/INFO]: [Plan] Registered extension: ViaVersion
[22:46:09] [Server thread/INFO]: [Plan] Player Analytics Enabled.
[22:46:09] [Server thread/INFO]: [AntiCheatReplay] Enabling AntiCheatReplay v2.7.21
[22:46:09] [Server thread/INFO]: [StaffPlusPlus] Enabling StaffPlusPlus v1.21.14
[22:46:12] [Server thread/INFO]: [StaffPlusPlus] Using SQLITE storage
[22:46:12] [Server thread/INFO]: [StaffPlusPlus] Permissions handled by Bukkit
[22:46:12] [Server thread/INFO]: [StaffPlusPlus] Hooked into PlaceholderAPI 2.11.6
[22:46:12] [Server thread/INFO]: [StaffPlusPlus] No styles directory present
[22:46:12] [Server thread/INFO]: [StaffPlusPlus] Hooked into PlaceholderAPI 2.11.6
[22:46:12] [Server thread/INFO]: [StaffPlusPlus] Luckperms enabled
[22:46:12] [Server thread/INFO]: [StaffPlusPlus] Registering 'StaffMode' calculator.
[22:46:12] [Server thread/INFO]: [StaffPlusPlus] Registering 'Frozen' calculator.
[22:46:12] [Server thread/INFO]: [StaffPlusPlus] Registering 'Vanished' calculator.
[22:46:12] [Server thread/INFO]: [StaffPlusPlus] Staff++ has been enabled!
[22:46:12] [Server thread/INFO]: [StaffPlusPlus] Plugin created by Shortninja continued by Qball - Revisited by Garagepoort
[22:46:12] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.1.6
[22:46:12] [Server thread/INFO]: [PlayTime] Enabling PlayTime v3.8.1*
[22:46:12] [Server thread/INFO]: [PlayTime] PlaceholderAPI was found! Registering Placeholders.
[22:46:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playtime [3.8.1]
[22:46:12] [Server thread/INFO]: [PlayTime] You got a fork of a fork installed!
[22:46:12] [Server thread/INFO]: [PlayTime] michael's 3.7 --> 852DuartePls' 3.7 --> tbm00's 3.8
[22:46:12] [Server thread/INFO]: [PlayTime] https://github.com/tbm00/PlayTime
[22:46:12] [Server thread/INFO]: [Pl-Hide-Free] Enabling Pl-Hide-Free v2.0.2
[22:46:12] [Server thread/INFO]: [ExploitFixer] Enabling ExploitFixer v3.2.7
[22:46:12] [Server thread/INFO]: [ExploitFixer] Successfully hooked with HamsterAPI!
[22:46:12] [Server thread/INFO]: [ExploitFixer] Loaded languages: de, ru, pt, fr, hu, uk, sk, id, sv, ko, en, it, zh, es, cs, ar, vi, th, ja, pl, ro, he, da, nl, tr
[22:46:12] [Server thread/INFO]: [ExploitFixer] ActionCooldowns module reloaded with 11 cooldown entries
[22:46:12] [Server thread/INFO]: [ExploitFixer] PacketFilter module reloaded with 4 cooldown entries
[22:46:12] [Server thread/INFO]: [ExploitFixer] Invalid Recipe ID module initialized successfully
[22:46:12] [Server thread/INFO]: [ExploitFixer] Successfully registered commands!
[22:46:13] [Server thread/INFO]: [ExploitFixer] Successfully registered tasks!
[22:46:13] [Server thread/INFO]: [ExploitFixer] Successfully registered listeners!
[22:46:13] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.5
[22:46:13] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.5*-=-=-=-=-=-=-=-=-=-*
[22:46:13] [Server thread/INFO]: | Vault plugin not found. Using BukkitPermissions
[22:46:13] [Server thread/INFO]: | No Economy support without Vault!
[22:46:13] [Server thread/INFO]: | Command file(s) found : 1
[22:46:13] [Server thread/INFO]: | Config : Ready.
[22:46:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[22:46:13] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[22:46:13] [Server thread/INFO]: | Custom commands loaded : 44
[22:46:13] [Server thread/INFO]: | You're running the latest version of MyCommand.
[22:46:13] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[22:46:13] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[22:46:13] [Server thread/INFO]: [spark] Starting background profiler...
[22:46:13] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[22:46:13] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[22:46:13] [Server thread/INFO]: [Geyser-Spigot] 
[22:46:13] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.8.2-b875 (git-master-3174154)
[22:46:13] [Server thread/INFO]: [Geyser-Spigot] 
[22:46:13] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[22:46:16] [epollEventLoopGroup-5-1/INFO]: [Geyser-Spigot] Started Geyser on UDP port 25500
[22:46:16] [Server thread/INFO]: [Geyser-Spigot] Done (2.736s)! Run /geyser help for help!
[22:46:16] [Server thread/INFO]: Done preparing level "world" (15.301s)
[22:46:16] [Server thread/INFO]: Running delayed init tasks
[22:46:16] [Craft Scheduler Thread - 6 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[22:46:16] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[22:46:16] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[22:46:16] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[22:46:16] [Craft Scheduler Thread - 18 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] Checking for an update!
[22:46:16] [Craft Scheduler Thread - 9 - Essentials/INFO]: [Essentials] Fetching version information...
[22:46:16] [Server thread/INFO]: [AdvancedChat] 1
[22:46:16] [Server thread/INFO]: [AdvancedChat] 6
[22:46:16] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[22:46:16] [Craft Scheduler Thread - 18 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] No new versions found for the plugin!
[22:46:16] [Craft Scheduler Thread - 8 - AdvancedChat/INFO]: [AdvancedChat] Loaded 132 swear words.
[22:46:16] [Craft Scheduler Thread - 15 - Plan/INFO]: [Plan] You're using the latest version.
[22:46:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plan [5.6 build 2965]
[22:46:17] [Server thread/INFO]: [AntiCheatReplay] Vulcan detected, enabling support..
[22:46:17] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playerstats due to a missing plugin: PlayerStats
[22:46:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.2]
[22:46:17] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[22:46:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [3.0.8]
[22:46:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[22:46:17] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion vault due to a missing plugin: Vault
[22:46:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: formatter [2.8.1]
[22:46:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: utils [1.0.9]
[22:46:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[22:46:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[22:46:17] [Server thread/INFO]: 7 placeholder hook(s) registered!
[22:46:17] [OkHttp https://staffplusplus.org/.../INFO]: Your Staff++ version is up to date!
[22:46:17] [Server thread/INFO]: [Citizens] Loaded 17 NPCs.
[22:46:18] [Server thread/INFO]: Done (42.567s)! For help, type "help"
[22:46:18] [Craft Scheduler Thread - 8 - AntiCheatReplay/INFO]: [AntiCheatReplay] Checking if Vulcan API is enabled
[22:46:18] [Craft Scheduler Thread - 10 - AntiCheatReplay/INFO]: [AntiCheatReplay] You are up to date!
[22:46:18] [Craft Scheduler Thread - 8 - AntiCheatReplay/INFO]: [AntiCheatReplay] Vulcan API is enabled
[22:46:18] [Server thread/INFO]: [AdvancedChat] Successfully hooked into ProtocolLib, PlaceholderAPI, Geyser-Spigot, LuckPerms, ViaVersion.
[22:46:18] [Craft Scheduler Thread - 7 - Citizens/ERROR]: Got an error with a html body connecting to https://api.minecraftservices.com/minecraft/profile/lookup/bulk/byname: <html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>Microsoft-Azure-Application-Gateway/v2</center>
</body>
</html>

[22:46:19] [Craft Scheduler Thread - 7 - Citizens/ERROR]: Got an error with a html body connecting to https://api.minecraftservices.com/minecraft/profile/lookup/bulk/byname: <html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>Microsoft-Azure-Application-Gateway/v2</center>
</body>
</html>

[22:46:20] [Craft Scheduler Thread - 7 - Citizens/ERROR]: Got an error with a html body connecting to https://api.minecraftservices.com/minecraft/profile/lookup/bulk/byname: <html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>Microsoft-Azure-Application-Gateway/v2</center>
</body>
</html>

[22:46:20] [Craft Scheduler Thread - 7 - Citizens/ERROR]: Got an error with a html body connecting to https://api.minecraftservices.com/minecraft/profile/lookup/bulk/byname: <html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>Microsoft-Azure-Application-Gateway/v2</center>
</body>
</html>

[22:46:20] [Craft Scheduler Thread - 7 - Citizens/ERROR]: Got an error with a html body connecting to https://api.minecraftservices.com/minecraft/profile/lookup/bulk/byname: <html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>Microsoft-Azure-Application-Gateway/v2</center>
</body>
</html>

[22:46:21] [User Authenticator #0/INFO]: UUID of player poepah is 682703c2-902e-407d-a08b-1695adeedf28
[22:46:21] [Craft Scheduler Thread - 7 - Citizens/ERROR]: Got an error with a html body connecting to https://api.minecraftservices.com/minecraft/profile/lookup/bulk/byname: <html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>Microsoft-Azure-Application-Gateway/v2</center>
</body>
</html>

[22:46:22] [Server thread/INFO]: poepah[/         ip         ] logged in with entity id 75 at ([world]43.62742381971462, -0.9375, -73.19417350803784)
[22:46:27] [User Authenticator #0/INFO]: UUID of player jxxoeee is 18272c5a-28b7-4274-9c45-b25fc963fe5f
[22:46:28] [Server thread/INFO]: jxxoeee[/         ip          ] logged in with entity id 120 at ([world]1.038124088863081, 0.0, -2.0004706204616665)
[22:46:36] [Server thread/INFO]: poepah issued server command: /gamemode creative
[22:46:37] [Server thread/INFO]: jxxoeee issued server command: /npc sel 17
[22:46:39] [Server thread/INFO]: jxxoeee issued server command: /npc list
[22:46:41] [Server thread/INFO]: jxxoeee issued server command: /npc list --page 2
[22:46:47] [Server thread/INFO]: jxxoeee issued server command: /npc sel 19
[22:46:48] [Server thread/INFO]: jxxoeee issued server command: /npc name
[22:46:56] [Server thread/INFO]: jxxoeee issued server command: /npc sel 18
[22:50:08] [Server thread/INFO]: jxxoeee issued server command: /npc
[22:50:14] [Server thread/INFO]: jxxoeee issued server command: /npc skin jxxoeee -l
[22:50:18] [Server thread/INFO]: jxxoeee issued server command: /npc sel 19
[22:50:23] [Server thread/INFO]: jxxoeee issued server command: /npc skin poepah -l
[22:50:26] [Server thread/INFO]: jxxoeee issued server command: /npc name
[22:50:29] [Server thread/INFO]: jxxoeee issued server command: /npc name
[22:52:14] [Async Chat Thread - #2/INFO]:                 chat                 
[22:52:16] [Async Chat Thread - #2/INFO]:              chat             
[22:52:25] [Server thread/INFO]: poepah issued server command: /gamemode spectator
[22:52:37] [Server thread/INFO]: poepah issued server command: /gamemode creative
[22:52:46] [Server thread/INFO]: poepah issued server command: /give poepah light
[22:52:52] [Server thread/INFO]: poepah issued server command: //wand
[22:53:15] [Server thread/INFO]: poepah issued server command: //set light
[22:53:15] [AsyncNotifyKeyedQueue - 0/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_4.PaperweightStarlightRelighterFactory as relighter factory.
[22:53:50] [Server thread/INFO]: poepah issued server command: //undo
[22:54:43] [Server thread/INFO]: poepah issued server command: //brush sphere light
[22:54:47] [Server thread/INFO]: poepah issued server command: //mask air
[22:54:52] [Server thread/INFO]: poepah issued server command: //brush size 20
[22:55:42] [Server thread/INFO]: poepah issued server command: //undo
[22:55:43] [Server thread/INFO]: poepah issued server command: //undo
[22:55:43] [Server thread/INFO]: poepah issued server command: //undo
[22:55:43] [Server thread/INFO]: poepah issued server command: //undo
[22:55:44] [Server thread/INFO]: poepah issued server command: //undo
[22:55:44] [Server thread/INFO]: poepah issued server command: //undo
[22:55:44] [Server thread/INFO]: poepah issued server command: //undo
[22:55:45] [Server thread/INFO]: poepah issued server command: //undo
[22:55:45] [Server thread/INFO]: poepah issued server command: //undo
[22:55:46] [Server thread/INFO]: poepah issued server command: //undo
[22:55:46] [Server thread/INFO]: poepah issued server command: //undo
[22:55:46] [Server thread/INFO]: poepah issued server command: //undo
[22:55:47] [Server thread/INFO]: poepah issued server command: //undo
[22:55:47] [Server thread/INFO]: poepah issued server command: //undo
[22:55:48] [Server thread/INFO]: poepah issued server command: //undo
[22:55:48] [Server thread/INFO]: poepah issued server command: //undo
[22:55:48] [Server thread/INFO]: poepah issued server command: //undo
[22:55:49] [Server thread/INFO]: poepah issued server command: //undo\
[22:55:49] [Server thread/INFO]: poepah issued server command: //undo\
[22:55:49] [Server thread/INFO]: poepah issued server command: //undo\
[22:55:50] [Server thread/INFO]: poepah issued server command: //undo\
[22:55:55] [Server thread/INFO]: poepah issued server command: //undo
[22:55:55] [Server thread/INFO]: poepah issued server command: //undo
[22:55:56] [Server thread/INFO]: poepah issued server command: //undo
[22:55:56] [Server thread/INFO]: poepah issued server command: //undo
[22:55:56] [Server thread/INFO]: poepah issued server command: //undo
[22:55:57] [Server thread/INFO]: poepah issued server command: //undo
[22:55:57] [Server thread/INFO]: poepah issued server command: //undo
[22:55:58] [Server thread/INFO]: poepah issued server command: //undo
[22:55:58] [Server thread/INFO]: poepah issued server command: //undo
[22:55:58] [Server thread/INFO]: poepah issued server command: //undo
[22:55:59] [Server thread/INFO]: poepah issued server command: //undo
[22:56:00] [Server thread/INFO]: poepah issued server command: //undo
[22:56:00] [Server thread/INFO]: poepah issued server command: //undo
[22:56:00] [Server thread/INFO]: poepah issued server command: //undo
[22:56:01] [Server thread/INFO]: poepah issued server command: //undo
[22:56:01] [Server thread/INFO]: poepah issued server command: //undo
[22:56:01] [Server thread/INFO]: poepah issued server command: //undo
[22:56:02] [Server thread/INFO]: poepah issued server command: //undo
[22:56:02] [Server thread/INFO]: poepah issued server command: //undo
[22:56:02] [Server thread/INFO]: poepah issued server command: //undo
[22:56:03] [Server thread/INFO]: poepah issued server command: //undo
[22:56:03] [Server thread/INFO]: poepah issued server command: //undo
[22:56:03] [Server thread/INFO]: poepah issued server command: //undo
[22:56:04] [Server thread/INFO]: poepah issued server command: //undo
[22:56:04] [Server thread/INFO]: poepah issued server command: //undo
[22:56:04] [Server thread/INFO]: poepah issued server command: //undo
[22:56:05] [Server thread/INFO]: poepah issued server command: //undo
[22:56:05] [Server thread/INFO]: poepah issued server command: //undo
[22:56:05] [Server thread/INFO]: poepah issued server command: //undo
[22:56:06] [Server thread/INFO]: poepah issued server command: //undo
[22:56:06] [Server thread/INFO]: poepah issued server command: //undo
[22:56:06] [Server thread/INFO]: poepah issued server command: //undo
[22:56:07] [Server thread/INFO]: poepah issued server command: //undo
[22:56:07] [Server thread/INFO]: poepah issued server command: //undo
[22:56:07] [Server thread/INFO]: poepah issued server command: //undo
[22:56:08] [Server thread/INFO]: poepah issued server command: //undo
[22:56:08] [Server thread/INFO]: poepah issued server command: //undo
[22:56:09] [Server thread/INFO]: poepah issued server command: //undo
[22:56:09] [Server thread/INFO]: poepah issued server command: //undo
[22:56:09] [Server thread/INFO]: poepah issued server command: //undo
[22:56:10] [Server thread/INFO]: poepah issued server command: //undo
[22:56:10] [Server thread/INFO]: poepah issued server command: //undo
[22:56:10] [Server thread/INFO]: poepah issued server command: //undo
[22:56:11] [Server thread/INFO]: poepah issued server command: //undo
[22:56:11] [Server thread/INFO]: poepah issued server command: //undo
[22:56:11] [Server thread/INFO]: poepah issued server command: //undo
[22:56:12] [Server thread/INFO]: poepah issued server command: //undo
[22:56:12] [Server thread/INFO]: poepah issued server command: //undo
[22:56:13] [Server thread/INFO]: poepah issued server command: //undo
[22:56:13] [Server thread/INFO]: poepah issued server command: //undo
[22:56:13] [Server thread/INFO]: poepah issued server command: //undo
[22:56:14] [Server thread/INFO]: poepah issued server command: //undo
[22:56:14] [Server thread/INFO]: poepah issued server command: //undo
[22:56:14] [Server thread/INFO]: poepah issued server command: //undo
[22:56:15] [Server thread/INFO]: poepah issued server command: //undo
[22:56:15] [Server thread/INFO]: poepah issued server command: //undo
[22:56:16] [Server thread/INFO]: poepah issued server command: //undot
[22:56:21] [Server thread/INFO]: poepah issued server command: //undo
[22:56:21] [Server thread/INFO]: poepah issued server command: //undo
[22:56:22] [Server thread/INFO]: poepah issued server command: //undo
[22:56:22] [Server thread/INFO]: poepah issued server command: //undo
[22:56:23] [Server thread/INFO]: poepah issued server command: //undo
[22:56:23] [Server thread/INFO]: poepah issued server command: //undo
[22:56:23] [Server thread/INFO]: poepah issued server command: //undo
[22:56:24] [Server thread/INFO]: poepah issued server command: //undo
[22:56:24] [Server thread/INFO]: poepah issued server command: //undo
[22:56:25] [Server thread/INFO]: poepah issued server command: //undo
[22:56:25] [Server thread/INFO]: poepah issued server command: //undo
[22:56:25] [Server thread/INFO]: poepah issued server command: //undo
[22:56:26] [Server thread/INFO]: poepah issued server command: //undo
[22:56:26] [Server thread/INFO]: poepah issued server command: //undo
[22:56:27] [Server thread/INFO]: poepah issued server command: //undo
[22:56:27] [Server thread/INFO]: poepah issued server command: //undo
[22:56:27] [Server thread/INFO]: poepah issued server command: //undo
[22:56:28] [Server thread/INFO]: poepah issued server command: //undo
[22:56:28] [Server thread/INFO]: poepah issued server command: //undo
[22:56:28] [Server thread/INFO]: poepah issued server command: //undo
[22:56:29] [Server thread/INFO]: poepah issued server command: //undo
[22:56:29] [Server thread/INFO]: poepah issued server command: //undo
[22:56:30] [Server thread/INFO]: poepah issued server command: //undo
[22:56:30] [Server thread/INFO]: poepah issued server command: //undo
[22:56:30] [Server thread/INFO]: poepah issued server command: //undo
[22:56:31] [Server thread/INFO]: poepah issued server command: //undo
[22:56:31] [Server thread/INFO]: poepah issued server command: //undo
[22:56:34] [Server thread/INFO]: poepah issued server command: //undo
[22:56:35] [Server thread/INFO]: poepah issued server command: //undo
[22:56:38] [Server thread/INFO]: poepah issued server command: //undo
[22:56:38] [Server thread/INFO]: poepah issued server command: //undo
[22:56:44] [Server thread/INFO]: poepah issued server command: //undo
[22:56:45] [Server thread/INFO]: poepah issued server command: //undo
[22:56:45] [Server thread/INFO]: poepah issued server command: //undo
[22:56:46] [Server thread/INFO]: poepah issued server command: //undo
[22:56:46] [Server thread/INFO]: poepah issued server command: //undo
[22:56:47] [Server thread/INFO]: poepah issued server command: //undo
[22:56:47] [Server thread/INFO]: poepah issued server command: //undo
[22:56:47] [Server thread/INFO]: poepah issued server command: //undo
[22:56:48] [Server thread/INFO]: poepah issued server command: //undo
[22:56:48] [Server thread/INFO]: poepah issued server command: //undo
[22:56:48] [Server thread/INFO]: poepah issued server command: //undo
[22:56:49] [Server thread/INFO]: poepah issued server command: //undo
[22:56:49] [Server thread/INFO]: poepah issued server command: //undo
[22:56:50] [Server thread/INFO]: poepah issued server command: //undo
[22:56:50] [Server thread/INFO]: poepah issued server command: //undo
[22:56:50] [Server thread/INFO]: poepah issued server command: //undo
[22:56:51] [Server thread/INFO]: poepah issued server command: //undot
[22:56:56] [Server thread/INFO]: poepah issued server command: //undo
[22:56:56] [Server thread/INFO]: poepah issued server command: //undo
[22:56:56] [Server thread/INFO]: poepah issued server command: //undo
[22:56:57] [Server thread/INFO]: poepah issued server command: //undo
[22:56:57] [Server thread/INFO]: poepah issued server command: //undo
[22:56:57] [Server thread/INFO]: poepah issued server command: //undo
[22:56:58] [Server thread/INFO]: poepah issued server command: //undo
[22:56:58] [Server thread/INFO]: poepah issued server command: //undo
[22:56:58] [Server thread/INFO]: poepah issued server command: //undo
[22:56:59] [Server thread/INFO]: poepah issued server command: //undo
[22:56:59] [Server thread/INFO]: poepah issued server command: //undo
[22:57:00] [Server thread/INFO]: poepah issued server command: //undo
[22:57:00] [Server thread/INFO]: poepah issued server command: //undo
[22:57:00] [Server thread/INFO]: poepah issued server command: //undo
[22:57:01] [Server thread/INFO]: poepah issued server command: //undo
[22:57:01] [Server thread/INFO]: poepah issued server command: //undo
[22:57:01] [Server thread/INFO]: poepah issued server command: //undo
[22:57:02] [Server thread/INFO]: poepah issued server command: //undo
[22:57:02] [Server thread/INFO]: poepah issued server command: //undo
[22:57:02] [Server thread/INFO]: poepah issued server command: //undo
[22:57:03] [Server thread/INFO]: poepah issued server command: //undo
[22:57:03] [Server thread/INFO]: poepah issued server command: //undo
[22:57:04] [Server thread/INFO]: poepah issued server command: //undo
[22:57:04] [Server thread/INFO]: poepah issued server command: //undo
[22:57:04] [Server thread/INFO]: poepah issued server command: //undo
[22:57:05] [Server thread/INFO]: poepah issued server command: //undo
[22:57:05] [Server thread/INFO]: poepah issued server command: //undo
[22:57:05] [Server thread/INFO]: poepah issued server command: //undo
[22:57:06] [Server thread/INFO]: poepah issued server command: //undo
[22:57:06] [Server thread/INFO]: poepah issued server command: //undo
[22:57:07] [Server thread/INFO]: poepah issued server command: //undo
[22:57:07] [Server thread/INFO]: poepah issued server command: //undo
[22:57:07] [Server thread/INFO]: poepah issued server command: //undo
[22:57:08] [Server thread/INFO]: poepah issued server command: //undo
[22:57:08] [Server thread/INFO]: poepah issued server command: //undo
[22:57:08] [Server thread/INFO]: poepah issued server command: //undo
[22:57:09] [Server thread/INFO]: poepah issued server command: //undo
[22:57:09] [Server thread/INFO]: poepah issued server command: //undo
[22:57:10] [Server thread/INFO]: poepah issued server command: //undo
[22:57:10] [Server thread/INFO]: poepah issued server command: //undo
[22:57:10] [Server thread/INFO]: poepah issued server command: //undo
[22:57:11] [Server thread/INFO]: poepah issued server command: //undo
[22:57:11] [Server thread/INFO]: poepah issued server command: //undo
[22:57:11] [Server thread/INFO]: poepah issued server command: //undo
[22:57:12] [Server thread/INFO]: poepah issued server command: //undo
[22:57:12] [Server thread/INFO]: poepah issued server command: //undo
[22:57:13] [Server thread/INFO]: poepah issued server command: //undo
[22:57:13] [Server thread/INFO]: poepah issued server command: //undo
[22:57:13] [Server thread/INFO]: poepah issued server command: //undo
[22:57:14] [Server thread/INFO]: poepah issued server command: //undo
[22:57:14] [Server thread/INFO]: poepah issued server command: //undo
[22:57:15] [Server thread/INFO]: poepah issued server command: //undo
[22:57:21] [Server thread/INFO]: poepah issued server command: //undo
[22:57:22] [Server thread/INFO]: poepah issued server command: //undo
[22:57:22] [Server thread/INFO]: poepah issued server command: //undo
[22:57:23] [Server thread/INFO]: poepah issued server command: //undo
[22:57:23] [Server thread/INFO]: poepah issued server command: //undo
[22:57:23] [Server thread/INFO]: poepah issued server command: //undo
[22:57:33] [Server thread/INFO]: jxxoeee issued server command: /gmc
[22:57:36] [Server thread/INFO]: jxxoeee issued server command: /speed 10
[22:57:51] [Server thread/INFO]: jxxoeee issued server command: /give jxxoeee light
[22:58:00] [Async Chat Thread - #3/INFO]:                chat                
[22:58:11] [Async Chat Thread - #3/INFO]:              chat             
[22:58:14] [Async Chat Thread - #3/INFO]:           chat          
[22:58:14] [Server thread/INFO]: jxxoeee lost connection: Disconnected
[22:58:16] [User Authenticator #1/INFO]: UUID of player jxxoeee is 18272c5a-28b7-4274-9c45-b25fc963fe5f
[22:58:16] [Server thread/INFO]: jxxoeee[/         ip          ] logged in with entity id 129 at ([world]4.644789913318431, 155.60317906315066, -27.84567946142351)
[22:58:18] [Server thread/INFO]: jxxoeee lost connection: Disconnected
[22:58:29] [Server thread/INFO]: poepah lost connection: Disconnected
[22:58:30] [User Authenticator #1/INFO]: UUID of player poepah is 682703c2-902e-407d-a08b-1695adeedf28
[22:58:30] [Server thread/INFO]: poepah[/         ip         ] logged in with entity id 130 at ([world]-13.446888769796496, 128.17553984961114, -25.90353133778541)
[22:58:41] [Server thread/INFO]: poepah issued server command: /gamemode creative
[22:58:48] [User Authenticator #1/INFO]: UUID of player jxxoeee is 18272c5a-28b7-4274-9c45-b25fc963fe5f
[22:58:48] [Server thread/INFO]: jxxoeee[/         ip          ] logged in with entity id 131 at ([world]4.644789913318431, 152.52621345139033, -27.84567946142351)
[22:58:52] [Server thread/INFO]: jxxoeee issued server command: /gmc
[22:59:01] [Server thread/INFO]: jxxoeee issued server command: /give jxxoeee light
[22:59:19] [Server thread/INFO]: jxxoeee issued server command: //fixlighting
[22:59:24] [Server thread/INFO]: jxxoeee issued server command: //pos1
[22:59:26] [Server thread/INFO]: jxxoeee issued server command: //thru
[22:59:28] [Server thread/INFO]: jxxoeee issued server command: /gmsp
[22:59:32] [Server thread/INFO]: jxxoeee issued server command: //pos2
[22:59:36] [Server thread/INFO]: jxxoeee issued server command: //fixlighting
[22:59:40] [Async Chat Thread - #3/INFO]:                chat                
[22:59:43] [Server thread/INFO]: jxxoeee issued server command: /gmc
[22:59:53] [Server thread/INFO]: jxxoeee issued server command: //pos1
[23:00:03] [Server thread/INFO]: jxxoeee issued server command: //pos2
[23:00:04] [Server thread/INFO]: jxxoeee issued server command: //fixlighting
[23:00:26] [Async Chat Thread - #3/INFO]:                   chat                   
[23:00:51] [Async Chat Thread - #3/INFO]:                        chat                        
[23:01:09] [Async Chat Thread - #3/INFO]:                   chat                  
[23:01:15] [Async Chat Thread - #3/INFO]:               chat              
[23:01:21] [Async Chat Thread - #3/INFO]:                       chat                       
[23:01:23] [Async Chat Thread - #3/INFO]:             chat            
[23:01:35] [Async Chat Thread - #3/INFO]:                chat                
[23:01:49] [Async Chat Thread - #3/INFO]:                  chat                  
[23:01:49] [Async Chat Thread - #3/INFO]:           chat          
[23:01:56] [Async Chat Thread - #3/INFO]:                       chat                      
[23:02:07] [Server thread/INFO]: poepah issued server command: //brush light[level=7]
[23:02:19] [Server thread/INFO]: poepah issued server command: //brush light 7
[23:02:20] [Async Chat Thread - #3/INFO]:              chat             
[23:02:23] [Async Chat Thread - #3/INFO]:                     chat                     
[23:02:32] [Async Chat Thread - #3/INFO]:                       chat                       
[23:02:33] [Async Chat Thread - #3/INFO]:                       chat                       
[23:02:34] [Async Chat Thread - #3/INFO]:                       chat                       
[23:02:34] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:34] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:34] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:35] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:35] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:35] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:35] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:36] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:36] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:37] [Server thread/INFO]: jxxoeee issued server command: /\
[23:02:40] [Server thread/INFO]: poepah issued server command: //brush light[level=7]
[23:02:40] [Async Chat Thread - #5/INFO]:             chat            
[23:02:47] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:48] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:48] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:48] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:48] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:49] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:49] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:49] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:49] [Async Chat Thread - #5/INFO]:                       chat                       
[23:02:51] [Server thread/INFO]: poepah issued server command: //brush sphere light[level=7]
[23:02:59] [Server thread/INFO]: poepah issued server command: //brush size 20
[23:08:05] [Server thread/INFO]: poepah issued server command: //brush sphere light[level=10]
[23:08:12] [Server thread/INFO]: poepah issued server command: //brush size 10
[23:08:17] [Server thread/INFO]: poepah issued server command: //undo
[23:08:21] [Server thread/INFO]: poepah issued server command: //mask air
[23:08:30] [Server thread/INFO]: poepah issued server command: //mask
[23:08:36] [Server thread/INFO]: poepah issued server command: //undo
[23:08:49] [Server thread/INFO]: poepah issued server command: //brush sphere light[level=10]
[23:09:12] [Server thread/INFO]: poepah issued server command: //undo
[23:09:14] [Server thread/INFO]: poepah issued server command: //undo
[23:09:21] [Server thread/INFO]: poepah issued server command: //undo
[23:09:31] [Server thread/INFO]: poepah issued server command: //undo
[23:09:35] [Server thread/INFO]: poepah issued server command: //brush size 20
[23:09:38] [Server thread/INFO]: poepah issued server command: //undo
[23:09:45] [Server thread/INFO]: poepah issued server command: //undo
[23:09:49] [Server thread/INFO]: poepah issued server command: //undo
[23:11:09] [Server thread/INFO]: poepah issued server command: //undo
[23:11:10] [Server thread/INFO]: poepah issued server command: //undo
[23:11:11] [Server thread/INFO]: poepah issued server command: //undo
[23:11:11] [Server thread/INFO]: poepah issued server command: //undo
[23:11:12] [Server thread/INFO]: poepah issued server command: //undo
[23:11:12] [Server thread/INFO]: poepah issued server command: //undo
[23:11:12] [Server thread/INFO]: poepah issued server command: //undo
[23:11:13] [Server thread/INFO]: poepah issued server command: //undo
[23:11:13] [Server thread/INFO]: poepah issued server command: //undo
[23:11:13] [Server thread/INFO]: poepah issued server command: //undo
[23:11:14] [Server thread/INFO]: poepah issued server command: //undo
[23:11:14] [Server thread/INFO]: poepah issued server command: //undo
[23:11:14] [Server thread/INFO]: poepah issued server command: //undo
[23:11:15] [Server thread/INFO]: poepah issued server command: //undo
[23:11:15] [Server thread/INFO]: poepah issued server command: //undo
[23:11:15] [Server thread/INFO]: poepah issued server command: //undo
[23:11:16] [Server thread/INFO]: poepah issued server command: //undo
[23:11:16] [Server thread/INFO]: poepah issued server command: //undo
[23:11:16] [Server thread/INFO]: poepah issued server command: //undo
[23:11:17] [Server thread/INFO]: poepah issued server command: //undo
[23:11:17] [Server thread/INFO]: poepah issued server command: //undo
[23:11:17] [Server thread/INFO]: poepah issued server command: //undo
[23:11:18] [Server thread/INFO]: poepah issued server command: //undo
[23:11:18] [Server thread/INFO]: poepah issued server command: //undo
[23:11:18] [Server thread/INFO]: poepah issued server command: //undo
[23:11:19] [Server thread/INFO]: poepah issued server command: //undo
[23:11:19] [Server thread/INFO]: poepah issued server command: //undo
[23:11:19] [Server thread/INFO]: poepah issued server command: //undo
[23:11:20] [Server thread/INFO]: poepah issued server command: //undo
[23:11:20] [Server thread/INFO]: poepah issued server command: //undo
[23:11:20] [Server thread/INFO]: poepah issued server command: //undo
[23:11:21] [Server thread/INFO]: poepah issued server command: //undo
[23:11:21] [Server thread/INFO]: poepah issued server command: //undot
[23:11:22] [Server thread/INFO]: poepah issued server command: //undot
[23:11:22] [Server thread/INFO]: poepah issued server command: //undot
[23:11:26] [Server thread/INFO]: poepah issued server command: //undo
[23:11:26] [Server thread/INFO]: poepah issued server command: //undo
[23:11:26] [Server thread/INFO]: poepah issued server command: //undo
[23:11:27] [Server thread/INFO]: poepah issued server command: //undo
[23:11:27] [Server thread/INFO]: poepah issued server command: //undo
[23:11:27] [Server thread/INFO]: poepah issued server command: //undo
[23:11:28] [Server thread/INFO]: poepah issued server command: //undo
[23:11:28] [Server thread/INFO]: poepah issued server command: //undo
[23:11:28] [Server thread/INFO]: poepah issued server command: //undo
[23:11:29] [Server thread/INFO]: poepah issued server command: //undo
[23:11:29] [Server thread/INFO]: poepah issued server command: //undo
[23:11:29] [Server thread/INFO]: poepah issued server command: //undo
[23:11:30] [Server thread/INFO]: poepah issued server command: //undot
[23:11:30] [Server thread/INFO]: poepah issued server command: //undot
[23:11:30] [Server thread/INFO]: poepah issued server command: //undot
[23:11:32] [Server thread/INFO]: poepah issued server command: //undot
[23:11:34] [Server thread/INFO]: poepah issued server command: //undo
[23:11:34] [Server thread/INFO]: poepah issued server command: //undo
[23:11:35] [Server thread/INFO]: poepah issued server command: //undo
[23:11:35] [Server thread/INFO]: poepah issued server command: //undo
[23:11:36] [Server thread/INFO]: poepah issued server command: //undo
[23:11:36] [Server thread/INFO]: poepah issued server command: //undo
[23:11:36] [Server thread/INFO]: poepah issued server command: //undo
[23:11:37] [Server thread/INFO]: poepah issued server command: //undo
[23:11:37] [Server thread/INFO]: poepah issued server command: //undo
[23:11:38] [Server thread/INFO]: poepah issued server command: //undo
[23:11:38] [Server thread/INFO]: poepah issued server command: //undo
[23:11:38] [Server thread/INFO]: poepah issued server command: //undo
[23:11:39] [Server thread/INFO]: poepah issued server command: //undo
[23:11:39] [Server thread/INFO]: poepah issued server command: //undo
[23:11:39] [Server thread/INFO]: poepah issued server command: //undo
[23:11:40] [Server thread/INFO]: poepah issued server command: //undo
[23:11:40] [Server thread/INFO]: poepah issued server command: //undo
[23:11:40] [Server thread/INFO]: poepah issued server command: //undo
[23:11:41] [Server thread/INFO]: poepah issued server command: //undo
[23:11:41] [Server thread/INFO]: poepah issued server command: //undo
[23:11:41] [Server thread/INFO]: poepah issued server command: //undo
[23:11:42] [Server thread/INFO]: poepah issued server command: //undo
[23:11:42] [Server thread/INFO]: poepah issued server command: //undo
[23:11:43] [Server thread/INFO]: poepah issued server command: //undo
[23:11:43] [Server thread/INFO]: poepah issued server command: //undo
[23:11:43] [Server thread/INFO]: poepah issued server command: //undo
[23:11:44] [Server thread/INFO]: poepah issued server command: //undo
[23:11:47] [Server thread/INFO]: poepah issued server command: //undo
[23:11:48] [Server thread/INFO]: poepah issued server command: //undo
[23:11:48] [Server thread/INFO]: poepah issued server command: //undo
[23:11:52] [Server thread/INFO]: poepah issued server command: //undo
[23:11:53] [Server thread/INFO]: poepah issued server command: //undo
[23:11:53] [Server thread/INFO]: poepah issued server command: //undo
[23:11:54] [Server thread/INFO]: poepah issued server command: //undo
[23:12:04] [Server thread/INFO]: poepah issued server command: //undo
[23:12:16] [Server thread/INFO]: poepah issued server command: //mask air
[23:13:05] [Server thread/INFO]: poepah issued server command: //mask light
[23:13:09] [Server thread/INFO]: jxxoeee issued server command: /up 1
[23:13:13] [Server thread/INFO]: jxxoeee issued server command: /npc sel 0
[23:13:17] [Server thread/INFO]: jxxoeee issued server command: /npc move
[23:13:56] [Server thread/INFO]: poepah issued server command: //mask light
[23:14:00] [Server thread/INFO]: poepah issued server command: //brush size 10
[23:15:06] [Server thread/INFO]: poepah issued server command: //brush size 20
[23:15:33] [Server thread/INFO]: poepah issued server command: //undo
[23:15:37] [Server thread/INFO]: poepah issued server command: //brush size 10
[23:16:01] [Server thread/INFO]: poepah issued server command: //undo
[23:16:04] [Server thread/INFO]: poepah issued server command: //mask air
[23:16:16] [Server thread/INFO]: poepah issued server command: //brush size 1
[23:16:26] [Server thread/INFO]: poepah issued server command: /give poepah light
[23:16:57] [Server thread/INFO]: poepah issued server command: /flyspeed 1
[23:17:04] [Server thread/INFO]: poepah issued server command: /flyspeed 1
[23:17:10] [Server thread/INFO]: poepah issued server command: /flyspeed 1
[23:17:17] [Server thread/INFO]: poepah issued server command: /flyspeed 1
[23:18:39] [Server thread/INFO]: jxxoeee has made the advancement [Getting an Upgrade]
[23:19:46] [Server thread/INFO]: poepah issued server command: //mask air
[23:20:07] [Server thread/INFO]: jxxoeee issued server command: /holo reload
[23:20:07] [Craft Scheduler Thread - 45 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:20:07] [Craft Scheduler Thread - 45 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[23:20:34] [Server thread/INFO]: jxxoeee issued server command: /holo reload
[23:20:34] [Craft Scheduler Thread - 54 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:20:34] [Craft Scheduler Thread - 54 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[23:20:42] [Server thread/INFO]: jxxoeee issued server command: /holo reload
[23:20:42] [Craft Scheduler Thread - 55 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:20:42] [Craft Scheduler Thread - 55 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[23:21:16] [Server thread/INFO]: jxxoeee issued server command: /holo reload
[23:21:16] [Craft Scheduler Thread - 22 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:21:16] [Craft Scheduler Thread - 22 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[23:22:01] [Server thread/INFO]: jxxoeee issued server command: /holo reload
[23:22:01] [Craft Scheduler Thread - 59 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:22:01] [Craft Scheduler Thread - 59 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[23:22:12] [Server thread/INFO]: jxxoeee issued server command: /holo reload
[23:22:12] [Craft Scheduler Thread - 50 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:22:12] [Craft Scheduler Thread - 50 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[23:22:27] [Server thread/INFO]: jxxoeee issued server command: /holo reload
[23:22:27] [Craft Scheduler Thread - 28 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:22:27] [Craft Scheduler Thread - 28 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[23:23:03] [Server thread/INFO]: poepah issued server command: //undo
[23:23:09] [Server thread/INFO]: jxxoeee issued server command: /holo reload
[23:23:09] [Craft Scheduler Thread - 63 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:23:09] [Craft Scheduler Thread - 63 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[23:23:22] [Server thread/INFO]: jxxoeee issued server command: /holo reload
[23:23:22] [Craft Scheduler Thread - 59 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:23:22] [Craft Scheduler Thread - 59 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[23:23:47] [Server thread/INFO]: poepah issued server command: /gamemode spectator
[23:23:49] [Server thread/INFO]: jxxoeee issued server command: /gms
[23:24:05] [Server thread/INFO]: poepah issued server command: /gamemode creative
[23:24:30] [Server thread/INFO]: poepah issued server command: //brush sphere light[level=8]
[23:24:33] [Server thread/INFO]: poepah issued server command: //mask air
[23:25:20] [Async Chat Thread - #6/INFO]:                 chat                
[23:25:25] [Server thread/INFO]: poepah issued server command: //brush size 20
[23:25:30] [Server thread/INFO]: jxxoeee issued server command: /holo reload
[23:25:31] [Craft Scheduler Thread - 62 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:25:31] [Craft Scheduler Thread - 62 - DecentHolograms/WARN]: [DecentHolograms] Failed to load config file at path 'holograms/creditsnames1.yml'.
[23:25:31] [Craft Scheduler Thread - 62 - DecentHolograms/WARN]: [DecentHolograms] Failed to load hologram from file 'creditsnames1.yml'!
java.lang.NullPointerException: location is marked non-null but is null
    at DecentHolograms-2.9.5.jar/eu.decentsoftware.holograms.api.holograms.objects.HologramObject.<init>(HologramObject.java:37) ~[DecentHolograms-2.9.5.jar:?]
    at DecentHolograms-2.9.5.jar/eu.decentsoftware.holograms.api.holograms.objects.UpdatingHologramObject.<init>(UpdatingHologramObject.java:26) ~[DecentHolograms-2.9.5.jar:?]
    at DecentHolograms-2.9.5.jar/eu.decentsoftware.holograms.api.holograms.Hologram.<init>(Hologram.java:332) ~[DecentHolograms-2.9.5.jar:?]
    at DecentHolograms-2.9.5.jar/eu.decentsoftware.holograms.api.holograms.Hologram.<init>(Hologram.java:319) ~[DecentHolograms-2.9.5.jar:?]
    at DecentHolograms-2.9.5.jar/eu.decentsoftware.holograms.api.holograms.Hologram.fromFile(Hologram.java:133) ~[DecentHolograms-2.9.5.jar:?]
    at DecentHolograms-2.9.5.jar/eu.decentsoftware.holograms.api.holograms.HologramManager.loadHolograms(HologramManager.java:193) ~[DecentHolograms-2.9.5.jar:?]
    at DecentHolograms-2.9.5.jar/eu.decentsoftware.holograms.api.holograms.HologramManager.reload(HologramManager.java:174) ~[DecentHolograms-2.9.5.jar:?]
    at DecentHolograms-2.9.5.jar/eu.decentsoftware.holograms.api.DecentHolograms.reload(DecentHolograms.java:107) ~[DecentHolograms-2.9.5.jar:?]
    at DecentHolograms-2.9.5.jar/eu.decentsoftware.holograms.plugin.commands.HologramsCommand$ReloadSubCommand.lambda$null$0(HologramsCommand.java:204) ~[DecentHolograms-2.9.5.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[purpur-1.21.4.jar:1.21.4-2416-51aafbc]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[purpur-1.21.4.jar:1.21.4-2416-51aafbc]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[purpur-1.21.4.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:25:31] [Craft Scheduler Thread - 62 - DecentHolograms/INFO]: [DecentHolograms] Loaded 2 holograms!
[23:25:40] [Server thread/INFO]: poepah issued server command: //undo
[23:25:42] [Server thread/INFO]: poepah issued server command: //undo
[23:25:43] [Server thread/INFO]: poepah issued server command: //undo
[23:25:44] [Server thread/INFO]: poepah issued server command: //undo
[23:25:44] [Server thread/INFO]: poepah issued server command: //undo
[23:25:45] [Server thread/INFO]: poepah issued server command: //undo
[23:25:45] [Server thread/INFO]: poepah issued server command: //undo
[23:25:46] [Server thread/INFO]: poepah issued server command: //undo
[23:25:46] [Server thread/INFO]: poepah issued server command: //undo
[23:25:47] [Server thread/INFO]: poepah issued server command: //undo
[23:25:51] [Async Chat Thread - #6/INFO]:            chat            
[23:25:51] [Server thread/INFO]: poepah issued server command: //undo
[23:25:52] [Server thread/INFO]: poepah issued server command: //undo
[23:25:58] [Async Chat Thread - #6/INFO]:            chat           
[23:26:07] [Async Chat Thread - #6/INFO]:         chat         
[23:26:10] [Async Chat Thread - #6/INFO]:                 chat                
[23:26:24] [Server thread/INFO]: jxxoeee issued server command: /holo reload
[23:26:24] [Craft Scheduler Thread - 28 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:26:24] [Craft Scheduler Thread - 28 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[23:28:58] [Server thread/INFO]: poepah issued server command: //brush sphere light[level=15]
[23:29:03] [Server thread/INFO]: poepah issued server command: //mask air
[23:29:15] [Server thread/INFO]: poepah issued server command: //brush size 20
[23:29:21] [Server thread/INFO]: poepah issued server command: //undo
[23:29:31] [Server thread/INFO]: poepah issued server command: //mask light
[23:29:34] [Server thread/INFO]: poepah issued server command: //brush size 10
[23:29:39] [Server thread/INFO]: poepah issued server command: //undo
[23:29:42] [Server thread/INFO]: jxxoeee issued server command: /holo reload
[23:29:42] [Craft Scheduler Thread - 55 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:29:42] [Craft Scheduler Thread - 55 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[23:29:44] [Server thread/INFO]: poepah issued server command: //brush size 7
[23:29:56] [Server thread/INFO]: jxxoeee issued server command: /holo reload
[23:29:56] [Craft Scheduler Thread - 66 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:29:56] [Craft Scheduler Thread - 66 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[23:30:00] [Server thread/INFO]: jxxoeee issued server command: /holo reload
[23:30:00] [Craft Scheduler Thread - 60 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:30:00] [Craft Scheduler Thread - 60 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[23:30:10] [Server thread/INFO]: poepah issued server command: //mask light
[23:30:14] [Server thread/INFO]: poepah issued server command: //brush size 7
[23:30:25] [Server thread/INFO]: poepah issued server command: //undo 4
[23:30:29] [Server thread/INFO]: poepah issued server command: //undo
[23:30:31] [Server thread/INFO]: poepah issued server command: //undo
[23:30:32] [Server thread/INFO]: poepah issued server command: //undo
[23:30:33] [Server thread/INFO]: poepah issued server command: //undo
[23:30:33] [Server thread/INFO]: poepah issued server command: //undo
[23:30:46] [Server thread/INFO]: poepah issued server command: //undo 3\
[23:30:46] [Server thread/INFO]: jxxoeee issued server command: /npc sel 18
[23:30:48] [Server thread/INFO]: jxxoeee issued server command: /npc sel 19
[23:30:49] [Server thread/INFO]: jxxoeee issued server command: /npc name
[23:30:51] [Server thread/INFO]: poepah issued server command: //undo 3
[23:30:51] [Server thread/INFO]: jxxoeee issued server command: /npc name
[23:30:53] [Server thread/INFO]: poepah issued server command: //undo 3
[23:31:14] [Server thread/INFO]: poepah issued server command: //brush size 3
[23:31:33] [Server thread/INFO]: poepah issued server command: //undo
[23:31:43] [Server thread/INFO]: poepah issued server command: //brush size 3