Paste #108689: Log

Date: 2023/04/11 08:05:13 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[14:55:24] [ServerMain/INFO]: Building unoptimized datafixer
[14:55:28] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[14:55:32] [ServerMain/INFO]: Loaded 7 recipes
[14:55:34] [Server thread/INFO]: Starting minecraft server version 1.19.3
[14:55:34] [Server thread/INFO]: Loading properties
[14:55:34] [Server thread/INFO]: This server is running Purpur version git-Purpur-"67066cd" (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: 67066cd on ver/1.19.3)
[14:55:34] [Server thread/INFO]: Server Ping Player Sample Count: 12
[14:55:34] [Server thread/INFO]: Using 4 threads for Netty based IO
[14:55:35] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[14:55:37] [Server thread/WARN]: [Pufferfish] SIMD operations are available for your server, but are not configured!
[14:55:37] [Server thread/WARN]: [Pufferfish] To enable additional optimizations, add "--add-modules=jdk.incubator.vector" to your startup flags, BEFORE the "-jar".
[14:55:37] [Server thread/WARN]: [Pufferfish] If you have already added this flag, then SIMD operations are not supported on your JVM or CPU.
[14:55:37] [Server thread/WARN]: [Pufferfish] Debug: Java: 17, test run: true
[14:55:37] [Server thread/INFO]: Default game type: SURVIVAL
[14:55:37] [Server thread/INFO]: Generating keypair
[14:55:37] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25604
[14:55:37] [Server thread/INFO]: Using epoll channel type
[14:55:37] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[14:55:37] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[14:55:38] [Server thread/INFO]: [com.minehut.minehutplugin.net.mapper.ProtocolMapper] Found matching server revision v1_19_R2 (V1_19_R2)
[14:55:39] [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!
[14:55:50] [Server thread/WARN]: Legacy plugin CustomHeads v3.0.7 does not specify an api-version.
[14:55:50] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[14:55:51] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/minecraft/multicraft/servers/server471822/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[14:55:51] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/minecraft/multicraft/servers/server471822/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[14:55:51] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/minecraft/multicraft/servers/server471822/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[14:55:51] [Server thread/WARN]: Legacy plugin CommandNPC v1.9.1 does not specify an api-version.
[14:55:51] [Server thread/WARN]: Legacy plugin skript-placeholders v1.5.2 does not specify an api-version.
[14:55:52] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[14:55:52] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[14:55:52] [Server thread/INFO]: [SimpleRename] Loading server plugin SimpleRename v13.9
[14:55:52] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.37
[14:55:52] [Server thread/INFO]: [HolographicDisplays] Loading server plugin HolographicDisplays v3.0.1
[14:55:52] [Server thread/INFO]: [BuycraftX] Loading server plugin BuycraftX v12.0.8
[14:55:52] [Server thread/INFO]: [BungeeGuard] Loading server plugin BungeeGuard v1.3-SNAPSHOT
[14:55:52] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.6.2
[14:55:52] [Server thread/INFO]: [ViaVersion] ViaVersion 4.6.2 is now loaded. Registering protocol transformers and injecting...
[14:55:53] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[14:55:53] [Server thread/INFO]: [MinehutPlugin] Loading server plugin MinehutPlugin v0.0.27-SNAPSHOT
[14:55:53] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.40
[14:55:53] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[14:55:54] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[14:55:54] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[14:55:54] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.0-dev+52-c716fc8
[14:55:54] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.5.2-SNAPSHOT-348;cd00bf9
[14:55:56] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@c59ca61]
[14:55:56] [Server thread/INFO]: [CustomHeads] Loading server plugin CustomHeads v3.0.7
[14:55:56] [Server thread/INFO]: [TAB] Loading server plugin TAB v3.3.1
[14:55:56] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.9 build-16/03/2023
[14:55:56] [Server thread/INFO]: [IridiumSkyblock] Loading server plugin IridiumSkyblock v4.0.0
[14:55:58] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.7+216b061
[14:55:58] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.31-SNAPSHOT (build 3025)
[14:55:58] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v4.1.6
[14:55:58] [Server thread/INFO]: [CommandNPC] Loading server plugin CommandNPC v1.9.1
[14:55:58] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.7.0-beta2
[14:55:58] [Server thread/INFO]: [skript-gui] Loading server plugin skript-gui v1.3
[14:55:58] [Server thread/INFO]: [skript-placeholders] Loading server plugin skript-placeholders v1.5.2
[14:55:58] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.1.3
[14:55:58] [Server thread/INFO]: [BeautyQuests] Loading server plugin BeautyQuests v0.20.1
[14:55:58] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[14:55:58] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.2.1-fd1d0777
[14:55:58] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[14:55:58] [Server thread/INFO]: [WildStacker] Loading server plugin WildStacker v2023.1
[14:55:58] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.7.1
[14:55:59] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v5.2.3
[14:55:59] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[14:55:59] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[14:55:59] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[14:55:59] [Server thread/INFO]: [BungeeGuard] Enabling BungeeGuard v1.3-SNAPSHOT
[14:55:59] [Server thread/INFO]: [BungeeGuard] Using Paper's PlayerHandshakeEvent to listen for connections.
[14:55:59] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.40
[14:56:00] [Server thread/INFO]:         __    
[14:56:00] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.40
[14:56:00] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[14:56:00] [Server thread/INFO]: 
[14:56:00] [Server thread/INFO]: [LuckPerms] Loading configuration...
[14:56:01] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[14:56:03] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[14:56:03] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[14:56:04] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 4873ms)
[14:56:04] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[14:56:04] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[14:56:04] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[14:56:04] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[14:56:04] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[14:56:04] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.5.2-SNAPSHOT-348;cd00bf9
[14:56:05] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[14:56:05] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[14:56:05] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[14:56:05] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[14:56:06] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R2.PaperweightFaweAdapter as the Bukkit adapter
[14:56:08] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 51 build(s) out of date.
You are running build 348, the latest version is build 399.
Update at https://www.spigotmc.org/resources/13932/
[14:56:08] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.9 build-16/03/2023
[14:56:08] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R2
[14:56:08] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[14:56:08] [Server thread/WARN]: [NexEngine] ==================================
[14:56:08] [Server thread/WARN]: [NexEngine] WARNING: You're running an outdated server version (V1_19_R2)!
[14:56:08] [Server thread/WARN]: [NexEngine] Support for this version will be dropped soon.
[14:56:08] [Server thread/WARN]: [NexEngine] Please, upgrade your server to V1_19_R3.
[14:56:08] [Server thread/WARN]: [NexEngine] ==================================
[14:56:08] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[14:56:08] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[14:56:08] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[14:56:09] [Server thread/INFO]: [NexEngine] Using 'en' language.
[14:56:09] [Server thread/INFO]: [NexEngine] Plugin loaded in 326 ms!
[14:56:09] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[14:56:09] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[14:56:09] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[14:56:09] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[14:56:09] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[14:56:09] [Server thread/INFO]: Preparing level "Spawn"
[14:56:11] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[14:56:11] [Server thread/INFO]: Time elapsed: 329 ms
[14:56:11] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[14:56:11] [Server thread/INFO]: Time elapsed: 279 ms
[14:56:11] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[14:56:11] [Server thread/INFO]: Time elapsed: 52 ms
[14:56:11] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[14:56:12] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[14:56:12] [Server thread/INFO]: [SimpleRename] Enabling SimpleRename v13.9
[14:56:12] [Server thread/INFO]: SimpleRename enabled!
[14:56:12] [Server thread/INFO]: [spark] Enabling spark v1.10.37
[14:56:13] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[14:56:13] [Server thread/INFO]: [spark] Starting background profiler...
[14:56:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.37]
[14:56:13] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[14:56:13] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.1
[14:56:14] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[14:56:14] [Server thread/INFO]: [BuycraftX] Validating your server key...
[14:56:15] [Server thread/WARN]: [BuycraftX] Your server and webstore online mode settings are mismatched. Unless you are using a proxy and server combination (such as BungeeCord/Spigot or LilyPad/Connect) that corrects UUIDs, then you may experience issues with packages not applying.
[14:56:15] [Server thread/WARN]: [BuycraftX] If you have verified that your set up is correct, you can suppress this message by setting is-bungeecord=true in your BuycraftX config.properties.
[14:56:15] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[14:56:16] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.6.2
[14:56:16] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.3 (761)
[14:56:16] [Server thread/INFO]: [MinehutPlugin] Enabling MinehutPlugin v0.0.27-SNAPSHOT
[14:56:18] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[14:56:18] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+52-c716fc8
[14:56:18] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[14:56:20] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[14:56:20] [Server thread/INFO]: [Essentials] No kits found to migrate.
[14:56:20] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[14:56:20] [Server thread/INFO]: [Essentials] Using locale en
[14:56:20] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[14:56:20] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[14:56:20] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[14:56:20] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[14:56:20] [Server thread/INFO]: [CustomHeads] Enabling CustomHeads v3.0.7*
[14:56:20] [Server thread/INFO]: [CustomHeads] Using LATEST as Version Handler
[14:56:20] [Server thread/INFO]: [CustomHeads] Warning : Hrm. Seems like CustomHeads wasn't tested on this Minecraft Version (v1_19_R2) yet...
[14:56:20] [Server thread/INFO]: [CustomHeads] Warning : Feel free to join my Discord to know when it gets updated
[14:56:22] [Server thread/INFO]: [TAB] Enabling TAB v3.3.1
[14:56:22] [Server thread/INFO]: [TAB] Server version: 1.19.3 (v1_19_R2)
[14:56:22] [Server thread/INFO]: [TAB] Loaded NMS hook in 128ms
[14:56:22] [Server thread/INFO]: [TAB] Enabled in 441ms
[14:56:22] [Server thread/INFO]: [IridiumSkyblock] Enabling IridiumSkyblock v4.0.0
[14:56:25] [Server thread/INFO]: Preparing start region for dimension minecraft:personal_islands
[14:56:25] [Server thread/INFO]: Time elapsed: 659 ms
[14:56:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: iridiumskyblock [4.0.0]
[14:56:27] [Server thread/INFO]: [IridiumSkyblock] Successfully registered Placeholders for PlaceholderAPI.
[14:56:27] [Server thread/INFO]: [IridiumSkyblock] -------------------------------
[14:56:27] [Server thread/INFO]: [IridiumSkyblock] 
[14:56:27] [Server thread/INFO]: [IridiumSkyblock] IridiumSkyblock Enabled!
[14:56:27] [Server thread/INFO]: [IridiumSkyblock] 
[14:56:27] [Server thread/INFO]: [IridiumSkyblock] -------------------------------
[14:56:27] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[14:56:27] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[14:56:27] [Server thread/INFO]: [WorldGuard] (Spawn_nether) TNT ignition is PERMITTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] (Spawn_nether) Lighters are PERMITTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] (Spawn_nether) Lava fire is PERMITTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] (Spawn_nether) Fire spread is UNRESTRICTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn_nether'
[14:56:27] [Server thread/INFO]: [WorldGuard] (Spawn_the_end) TNT ignition is PERMITTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] (Spawn_the_end) Lighters are PERMITTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] (Spawn_the_end) Lava fire is PERMITTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] (Spawn_the_end) Fire spread is UNRESTRICTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn_the_end'
[14:56:27] [Server thread/INFO]: [WorldGuard] (Personal Islands) TNT ignition is PERMITTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] (Personal Islands) Lighters are PERMITTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] (Personal Islands) Lava fire is PERMITTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] (Personal Islands) Fire spread is UNRESTRICTED.
[14:56:27] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Personal Islands'
[14:56:27] [Server thread/INFO]: [WorldGuard] Loading region data...
[14:56:28] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.31-SNAPSHOT (build 3025)
[14:56:28] [Server thread/INFO]: [Citizens] Loading external libraries
[14:56:34] [Server thread/INFO]: Creating file: config.yml
[14:56:34] [Server thread/ERROR]: [Citizens] v2.0.31-SNAPSHOT (build 3025) is not compatible with Minecraft v1_19_R2 - try upgrading Minecraft or Citizens. Disabling...
[14:56:34] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.31-SNAPSHOT (build 3025)
[14:56:34] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.1.6
[14:56:34] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[14:56:34] [Server thread/WARN]: [ExcellentCrates] ==================================
[14:56:34] [Server thread/WARN]: [ExcellentCrates] WARNING: You're running an outdated server version (V1_19_R2)!
[14:56:34] [Server thread/WARN]: [ExcellentCrates] Support for this version will be dropped soon.
[14:56:34] [Server thread/WARN]: [ExcellentCrates] Please, upgrade your server to V1_19_R3.
[14:56:34] [Server thread/WARN]: [ExcellentCrates] ==================================
[14:56:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.1.6]
[14:56:34] [Server thread/ERROR]: Error occurred while enabling ExcellentCrates v4.1.6 (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/api/event/NPCClickEvent
    at su.nightexpress.excellentcrates.ExcellentCrates.registerHooks(ExcellentCrates.java:116) ~[ExcellentCrates-4.1.6.jar:?]
    at su.nexmedia.engine.NexPlugin.loadManagers(NexPlugin.java:191) ~[NexEngine.jar:?]
    at su.nexmedia.engine.NexPlugin.onEnable(NexPlugin.java:92) ~[NexEngine.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:574) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:485) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:640) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:439) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:344) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1117) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.event.NPCClickEvent
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:185) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:152) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:519) ~[?:?]
    ... 15 more
[14:56:34] [Server thread/INFO]: [ExcellentCrates] Disabling ExcellentCrates v4.1.6
[14:56:34] [Server thread/ERROR]: Error occurred (in the plugin loader) while disabling ExcellentCrates v4.1.6 (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/api/trait/TraitInfo
    at su.nexmedia.engine.hooks.external.citizens.CitizensHook.unregisterTraits(CitizensHook.java:85) ~[NexEngine.jar:?]
    at su.nexmedia.engine.NexPlugin.unloadManagers(NexPlugin.java:239) ~[NexEngine.jar:?]
    at su.nexmedia.engine.NexPlugin.onDisable(NexPlugin.java:98) ~[NexEngine.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:227) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:196) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:574) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:485) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:640) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:439) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:344) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1117) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.trait.TraitInfo
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:185) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:152) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:519) ~[?:?]
    ... 18 more
[14:56:34] [Server thread/INFO]: [CommandNPC] Enabling CommandNPC v1.9.1*
[14:56:35] [Server thread/INFO]: ---------------------{CommandNPC Error}---------------------
[14:56:35] [Server thread/INFO]:                            Topic
[14:56:35] [Server thread/INFO]:                    Required Dependencies
[14:56:35] [Server thread/INFO]: 
[14:56:35] [Server thread/INFO]:     Citizens 2 not found! commandnpc will now shut down. 
[14:56:35] [Server thread/INFO]: 
[14:56:35] [Server thread/INFO]:        Class: commandnpc   Method: onEnable() 
[14:56:35] [Server thread/INFO]: 
[14:56:35] [Server thread/INFO]: ---------------------{CommandNPC Error}---------------------
[14:56:35] [Server thread/INFO]: [CommandNPC] Disabling CommandNPC v1.9.1
[14:56:35] [Server thread/INFO]: [Skript] Enabling Skript v2.7.0-beta2
[14:56:36] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] You're currently running the latest stable version of Skript.
[14:56:49] [Server thread/INFO]: [Skript] Loaded 150600 aliases in 13234ms
[14:56:50] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[14:56:50] [Server thread/INFO]: [skript-gui] Enabling skript-gui v1.3
[14:56:50] [Server thread/INFO]: [Skript] Missing version in default.lang
[14:56:50] [Server thread/INFO]: [skript-placeholders] Enabling skript-placeholders v1.5.2*
[14:56:50] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.1.3
[14:56:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[14:56:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[14:56:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[14:56:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[14:56:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[14:56:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[14:56:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[14:56:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[14:56:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[14:56:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[14:56:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[14:56:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[14:56:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[14:56:50] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v0.20.1
[14:56:50] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[14:56:50] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_19_R2.
[14:56:50] [Server thread/INFO]: [BeautyQuests] Loaded language en_US (0.068s)!
[14:56:50] [Server thread/INFO]: [BeautyQuests] Loaded start particles: REDSTONE in shape POINT with color R255 G255 B0
[14:56:50] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: VILLAGER_HAPPY in shape BAR
[14:56:50] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE_NORMAL in shape SPOT
[14:56:51] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[14:56:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: beautyquests [0.20.1]
[14:56:51] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[14:56:51] [Server thread/ERROR]: [BeautyQuests] No NPC plugin installed - please install Citizens or znpcs
[14:56:51] [Server thread/ERROR]: [BeautyQuests] This is a fatal error. Now disabling.
[14:56:51] [Server thread/INFO]: [WorldGuard] Unregistering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[14:56:51] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[14:56:51] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[14:56:51] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[14:56:52] [Server thread/WARN]: [Multiverse-Core] Invalid world name 'Personal Islands'
[14:56:52] [Server thread/WARN]: [Multiverse-Core] World name should not contain spaces or special characters!
[14:56:52] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: spawn
[14:56:52] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[14:56:52] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_the_end
[14:56:52] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[14:56:52] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world
[14:56:52] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[14:56:52] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: spawn_the_end
[14:56:52] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[14:56:52] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_nether
[14:56:52] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[14:56:52] [Server thread/INFO]: Preparing start region for dimension minecraft:iridiumskyblock_nether
[14:56:55] [Server thread/INFO]: Time elapsed: 2221 ms
[14:56:55] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) TNT ignition is PERMITTED.
[14:56:55] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) Lighters are PERMITTED.
[14:56:55] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) Lava fire is PERMITTED.
[14:56:55] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) Fire spread is UNRESTRICTED.
[14:56:55] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'IridiumSkyblock_nether'
[14:56:55] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: spawn_nether
[14:56:55] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[14:56:55] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[14:56:55] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[14:56:55] [Server thread/INFO]: Preparing start region for dimension minecraft:iridiumskyblock
[14:56:56] [Server thread/INFO]: Time elapsed: 181 ms
[14:56:56] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) TNT ignition is PERMITTED.
[14:56:56] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) Lighters are PERMITTED.
[14:56:56] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) Lava fire is PERMITTED.
[14:56:56] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) Fire spread is UNRESTRICTED.
[14:56:56] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'IridiumSkyblock'
[14:56:56] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: IridiumSkyblock_the_end
[14:56:56] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[14:56:56] [Server thread/INFO]: [Multiverse-Core] 5 - World(s) loaded.
[14:56:56] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[14:56:56] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[14:56:56] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.1-fd1d0777
[14:56:57] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.3)...
[14:56:57] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[14:56:58] [Server thread/INFO]: [MythicMobs] MythicMobs HolographicDisplays Support has been enabled!
[14:56:58] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[14:56:58] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[14:56:58] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[14:56:58] [Server thread/INFO]: [MythicMobs] Base directory /home/minecraft/multicraft/servers/server471822/plugins/MythicMobs/SavedData
[14:56:58] [Server thread/INFO]: [MythicMobs] Module directory /home/minecraft/multicraft/servers/server471822/plugins/MythicMobs/SavedData/worlds
[14:56:59] [Server thread/INFO]: [MythicMobs] LOADED
[14:56:59] [Server thread/INFO]: [MythicMobs] Loading Packs...
[14:56:59] [Server thread/INFO]: [MythicMobs] Loading Items...
[14:56:59] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[14:56:59] [Server thread/INFO]: [MythicMobs] Loading Skills...
[14:56:59] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[14:56:59] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[14:57:00] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[14:57:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mobs.
[14:57:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[14:57:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[14:57:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[14:57:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[14:57:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[14:57:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[14:57:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[14:57:00] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[14:57:00] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[14:57:00] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.2.1 ( build fd1d0777 ) has been successfully loaded!
[14:57:00] [Server thread/INFO]: [WildStacker] Enabling WildStacker v2023.1
[14:57:00] [Server thread/INFO]: [WildStacker] ******** ENABLE START ********
[14:57:00] [Server thread/INFO]: [WildStacker] Loading configuration started...
[14:57:00] [Server thread/INFO]: [WildStacker]  - Stacking drops is enabled
[14:57:00] [Server thread/INFO]: [WildStacker]  - Stacking entities is enabled
[14:57:00] [Server thread/INFO]: [WildStacker]  - Stacking spawners is enabled
[14:57:00] [Server thread/INFO]: [WildStacker]  - Stacking barrels is enabled
[14:57:00] [Server thread/INFO]: [WildStacker] Loading configuration done (Took 130ms)
[14:57:00] [Server thread/INFO]: [WildStacker] Loading loot-tables started...
[14:57:00] [Server thread/INFO]: [WildStacker] Loading loot-tables done (Took 57ms)
[14:57:00] [Server thread/INFO]: [WildStacker] Loading messages started...
[14:57:00] [Server thread/INFO]: [WildStacker]  - Found 69 messages in lang.yml.
[14:57:00] [Server thread/INFO]: [WildStacker] Loading messages done (Took 6ms)
[14:57:00] [Server thread/INFO]: [WildStacker] ******** ENABLE DONE ********
[14:57:00] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.7.1
[14:57:01] [Server thread/INFO]: [Vulcan] Server Version: 1.19.3 detected!
[14:57:01] [Server thread/INFO]: [Vulcan] MythicMobs found. Enabling hook!
[14:57:01] [Server thread/INFO]: [Vulcan] BStats enabled!
[14:57:01] [Server thread/INFO]: [Vulcan] Registered MythicMobs listener!
[14:57:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Vulcan [2.7.1]
[14:57:01] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[14:57:01] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v5.2.3
[14:57:01] [Server thread/INFO]: [EconomyShopGUI] Using lang-en.yml as language file.
[14:57:01] [Server thread/INFO]: [EconomyShopGUI] Shops.yml has been found!
[14:57:01] [Server thread/INFO]: [EconomyShopGUI] Sections.yml has been found!
[14:57:02] [Server thread/INFO]: [EconomyShopGUI] Successfully hooked into Vault
[14:57:02] [Server thread/WARN]: [EconomyShopGUI] Completed loading '1' economy provider(s) for all 26 shop sections.
[14:57:02] [Server thread/INFO]: [EconomyShopGUI] Using minecraft version 1.19.3...
[14:57:02] [Server thread/INFO]: [EconomyShopGUI] Spawner provider set to DEFAULT in config
[14:57:02] [Server thread/INFO]: [EconomyShopGUI] Using plugin default spawners...
[14:57:02] [Server thread/INFO]: [EconomyShopGUI] Debug mode is enabled.
[14:57:02] [Server thread/INFO]: [EconomyShopGUI] Updating Shop settings...
[14:57:02] [Server thread/INFO]: [EconomyShopGUI] Loading all items...
[14:57:02] [Server thread/WARN]: [EconomyShopGUI] Could not get the item material. If you think this is a bug, please report it to our discord support server which you can find at the plugin page. gold
[14:57:02] [Server thread/WARN]: [EconomyShopGUI] Item path in config.yml: sell-screen.items.9
[14:57:02] [Server thread/INFO]: [EconomyShopGUI] Initialized - Took 692ms to complete
[14:57:04] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[14:57:04] [Server thread/INFO]: Running delayed init tasks
[14:57:04] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[14:57:04] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[14:57:04] [Craft Scheduler Thread - 10 - Essentials/INFO]: [Essentials] Fetching version information...
[14:57:04] [Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[14:57:04] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[14:57:04] [Craft Scheduler Thread - 9 - Vault/INFO]: [Vault] Checking for Updates ... 
[14:57:04] [Craft Scheduler Thread - 9 - Vault/INFO]: [Vault] No new version available
[14:57:05] [Craft Scheduler Thread - 10 - Essentials/WARN]: [Essentials] You're 2 EssentialsX dev build(s) out of date!
[14:57:05] [Craft Scheduler Thread - 10 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[14:57:05] [User Authenticator #0/INFO]: UUID of player British_Poetic is 1229595b-29f5-4336-81e0-0df36ba9689e
[14:57:05] [Server thread/INFO]: [Skript] Loading variables...
[14:57:05] [Server thread/INFO]: [Skript] Loaded 1223 variables in 0.1 seconds
[14:57:07] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[14:57:07] [Server thread/INFO]: [Skript] Loaded 7 scripts with a total of 21 structures in 1.71 seconds
[14:57:07] [Server thread/INFO]: [Skript] Finished loading.
[14:57:07] [Server thread/INFO]: [WildStacker] Loading providers started...
[14:57:07] [Server thread/INFO]: [WildStacker]  - Couldn't find any spawners providers, using default one.
[14:57:07] [Server thread/INFO]: [WildStacker] Using Vault as an economy provider.
[14:57:07] [Server thread/INFO]: [WildStacker] 
[14:57:07] [Server thread/INFO]: [WildStacker] Detected FastAsyncWorldEdit - Disabling ticks limiter for items...
[14:57:07] [Server thread/INFO]: [WildStacker] Loading providers done (Took 81ms)
[14:57:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.2]
[14:57:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.4]
[14:57:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[14:57:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: skript [1.0.0]
[14:57:07] [Server thread/INFO]: 4 placeholder hook(s) registered!
[14:57:07] [Server thread/INFO]: [MythicMobs] ✓Using HolographicDisplays plugin for holograms
[14:57:07] [Server thread/INFO]: [WildStacker] Starting to load entities...
[14:57:07] [Server thread/INFO]: [WildStacker] Loading entities done! Took 17 ms.
[14:57:07] [Server thread/INFO]: [WildStacker] Starting to load items...
[14:57:07] [Server thread/INFO]: [WildStacker] Loading items done! Took 0 ms.
[14:57:07] [Server thread/INFO]: [WildStacker] Starting to load spawners...
[14:57:07] [Server thread/INFO]: [WildStacker] Loading spawners done! Took 0 ms.
[14:57:07] [Server thread/INFO]: [WildStacker] Starting to load barrels...
[14:57:07] [Server thread/INFO]: [WildStacker] Loading barrels done! Took 0 ms.
[14:57:07] [Server thread/INFO]: [IridiumSkyblock] You are using the latest version of IridiumSkyblock.
[14:57:07] [Server thread/INFO]: Done (93.214s)! For help, type "help"
[14:57:07] [Server thread/INFO]: com.mojang.authlib.GameProfile@1abcc6cf[id=1229595b-29f5-4336-81e0-0df36ba9689e,name=British_Poetic,properties={textures=[com.mojang.authlib.properties.Property@7c820599]},legacy=false] (/251.19.115.32:45991) lost connection: Disconnected
[14:57:09] [Craft Scheduler Thread - 4 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:57:09] [Craft Scheduler Thread - 4 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:57:29] [User Authenticator #0/INFO]: UUID of player British_Poetic is 1229595b-29f5-4336-81e0-0df36ba9689e
[14:57:30] [Server thread/INFO]: [+] British_Poetic
[14:57:30] [Server thread/INFO]: British_Poetic[/251.19.115.32:59503] logged in with entity id 156 at ([Spawn]0.13967302218316724, 103.2431518726288, 1.6636627585830523)
[14:57:45] [Server thread/INFO]: British_Poetic issued server command: /citizens reload
[14:57:45] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'citizens' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:48] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:48] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1472) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1194) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:50] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:50] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1416) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1194) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:50] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:50] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1416) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1194) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:50] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:50] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:51] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:51] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:52] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:52] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:52] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:52] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:53] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:53] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:53] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:53] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:54] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:54] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:54] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:54] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1472) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1194) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:54] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:54] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:55] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:55] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:56] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:56] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:56] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:56] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:56] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:56] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:57] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:57] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:57] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:57] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1472) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1194) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:58] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:58] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:58] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:58] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:57:59] [Server thread/INFO]: British_Poetic issued server command: /npc create
[14:57:59] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.31-SNAPSHOT (build 3025) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168) ~[purpur-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:925) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[purpur-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2379) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$21(ServerGamePacketListenerImpl.java:2339) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1368) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1345) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1338) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1316) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1204) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[purpur-1.19.3.jar:git-Purpur-"67066cd"]
    at java.lang.Thread.run(Thread.java:831) ~[?:?]
[14:58:04] [Craft Scheduler Thread - 16 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[14:58:05] [Craft Scheduler Thread - 14 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:58:05] [Craft Scheduler Thread - 14 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:59:05] [Craft Scheduler Thread - 20 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:59:05] [Craft Scheduler Thread - 20 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:00:05] [Craft Scheduler Thread - 17 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:00:05] [Craft Scheduler Thread - 17 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:01:05] [Craft Scheduler Thread - 9 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:01:05] [Craft Scheduler Thread - 9 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:01:12] [Server thread/INFO]: British_Poetic issued server command: /plugins
[15:01:19] [Server thread/INFO]: British_Poetic issued server command: /version BeautyQuests
[15:01:26] [Server thread/INFO]: British_Poetic issued server command: /version Citizens
[15:01:52] [Server thread/INFO]: British_Poetic issued server command: /gmc
[15:02:07] [Craft Scheduler Thread - 28 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:02:07] [Craft Scheduler Thread - 28 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:03:06] [Craft Scheduler Thread - 13 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:03:07] [Craft Scheduler Thread - 13 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:04:07] [Craft Scheduler Thread - 32 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:04:07] [Craft Scheduler Thread - 32 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).