Paste #109402: Latest Log

Date: 2023/05/01 18:17:51 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[01:52:41] [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'
[01:52:43] [Worker-Main-1/WARN]: Invalid path in datapack: skyplants:functions/crafting/get_plants/How to copy the new book over.JPG, ignoring
[01:52:43] [Worker-Main-1/WARN]: Invalid path in datapack: skyplants:functions/crafting/get_plants/How to update the book.JPG, ignoring
[01:52:43] [ServerMain/INFO]: Loaded 7 recipes
[01:52:45] [Server thread/INFO]: Starting minecraft server version 1.19.4
[01:52:45] [Server thread/INFO]: Loading properties
[01:52:45] [Server thread/INFO]: This server is running Paper version git-Paper-519 (MC: 1.19.4) (Implementing API version 1.19.4-R0.1-SNAPSHOT) (Git: 936205b)
[01:52:45] [Server thread/INFO]: Using 4 threads for Netty based IO
[01:52:45] [Server thread/INFO]: Server Ping Player Sample Count: 12
[01:52:45] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[01:52:45] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[01:52:45] [Server thread/INFO]: Default game type: SURVIVAL
[01:52:45] [Server thread/INFO]: Generating keypair
[01:52:45] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25711
[01:52:45] [Server thread/INFO]: Using epoll channel type
[01:52:45] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[01:52:45] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[01:52:47] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[01:52:53] [Server thread/WARN]: Legacy plugin NiceHosting v1.02 does not specify an api-version.
[01:52:53] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[01:52:53] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.6.2
[01:52:53] [Server thread/INFO]: [ViaVersion] ViaVersion 4.6.2 is now loaded. Registering protocol transformers and injecting...
[01:52:54] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[01:52:54] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.40
[01:52:54] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[01:52:55] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[01:52:55] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[01:52:55] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.1
[01:52:55] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.2-SNAPSHOT-413;92a6ff5
[01:52:58] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@23da66e5]
[01:52:58] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.19.7
[01:52:58] [Server thread/INFO]: [SCore] Loading server plugin SCore v3.9.66
[01:52:58] [Server thread/INFO]: [RedProtect] Loading server plugin RedProtect v8.1.0-SNAPSHOT
[01:52:58] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.19.7
[01:52:58] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.31-SNAPSHOT (build 3066)
[01:52:58] [Server thread/INFO]: [LevelledMobs] Loading server plugin LevelledMobs v3.10.0 b752
[01:52:58] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.19.7
[01:52:58] [Server thread/INFO]: [EssentialsProtect] Loading server plugin EssentialsProtect v2.19.7
[01:52:58] [Server thread/INFO]: [TreeFeller] Loading server plugin TreeFeller v1.21.4
[01:52:58] [Server thread/INFO]: [HelpMenu] Loading server plugin HelpMenu v1.3.2
[01:52:58] [Server thread/INFO]: [TimeIsMoney] Loading server plugin TimeIsMoney v1.9.6.22
[01:52:58] [Server thread/INFO]: [SimplePortals] Loading server plugin SimplePortals v1.7.2
[01:52:58] [Server thread/INFO]: [EvenMoreFish] Loading server plugin EvenMoreFish v1.6.10
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.7.0
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[01:52:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[01:52:58] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.3
[01:52:58] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v5.3.5
[01:52:58] [Server thread/INFO]: [NiceHosting] Loading server plugin NiceHosting v1.02
[01:52:58] [Server thread/INFO]: [BeautyQuests] Loading server plugin BeautyQuests v0.20.1
[01:52:58] [Server thread/INFO]: [BlockLocker] Loading server plugin BlockLocker v1.12
[01:52:58] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.18
[01:52:58] [Server thread/INFO]: [ChatLogger] Loading server plugin ChatLogger v1.0-SNAPSHOT
[01:52:58] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.8-2
[01:52:58] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[01:52:58] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.40
[01:53:00] [Server thread/INFO]:         __    
[01:53:00] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.40
[01:53:00] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[01:53:00] [Server thread/INFO]: 
[01:53:00] [Server thread/INFO]: [LuckPerms] Loading configuration...
[01:53:01] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[01:53:03] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[01:53:03] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[01:53:04] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 5768ms)
[01:53:04] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[01:53:04] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[01:53:04] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[01:53:05] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[01:53:05] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[01:53:05] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.2-SNAPSHOT-413;92a6ff5
[01:53:05] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[01:53:05] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[01:53:05] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[01:53:05] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[01:53:05] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R3.PaperweightFaweAdapter as the Bukkit adapter
[01:53:07] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.12
[01:53:07] [Server thread/INFO]: Preparing level "world"
[01:53:07] [Server thread/INFO]: -------- World Settings For [world] --------
[01:53:07] [Server thread/INFO]: Item Merge Radius: 2.5
[01:53:07] [Server thread/INFO]: Experience Merge Radius: 3.0
[01:53:07] [Server thread/INFO]: View Distance: 7
[01:53:07] [Server thread/INFO]: Simulation Distance: 8
[01:53:07] [Server thread/INFO]: Mob Spawn Range: 4
[01:53:07] [Server thread/INFO]: Item Despawn Rate: 6000
[01:53:07] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[01:53:07] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:53:07] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:53:07] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:53:07] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[01:53:07] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:53:07] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[01:53:07] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:53:07] [Server thread/INFO]: Max TNT Explosions: 100
[01:53:07] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[01:53:07] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[01:53:07] [Server thread/INFO]: Item Merge Radius: 2.5
[01:53:07] [Server thread/INFO]: Experience Merge Radius: 3.0
[01:53:07] [Server thread/INFO]: View Distance: 7
[01:53:07] [Server thread/INFO]: Simulation Distance: 8
[01:53:07] [Server thread/INFO]: Mob Spawn Range: 4
[01:53:07] [Server thread/INFO]: Item Despawn Rate: 6000
[01:53:07] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[01:53:07] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:53:07] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:53:07] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:53:07] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:53:07] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[01:53:07] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:53:07] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[01:53:07] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:53:07] [Server thread/INFO]: Max TNT Explosions: 100
[01:53:07] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[01:53:08] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[01:53:08] [Server thread/INFO]: Item Merge Radius: 2.5
[01:53:08] [Server thread/INFO]: Experience Merge Radius: 3.0
[01:53:08] [Server thread/INFO]: View Distance: 7
[01:53:08] [Server thread/INFO]: Simulation Distance: 8
[01:53:08] [Server thread/INFO]: Mob Spawn Range: 4
[01:53:08] [Server thread/INFO]: Item Despawn Rate: 6000
[01:53:08] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[01:53:08] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:53:08] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[01:53:08] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:53:08] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:53:08] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[01:53:08] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[01:53:08] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[01:53:08] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:53:08] [Server thread/INFO]: Max TNT Explosions: 100
[01:53:08] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[01:53:08] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[01:53:08] [Server thread/INFO]: Time elapsed: 280 ms
[01:53:08] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[01:53:08] [Server thread/INFO]: Time elapsed: 94 ms
[01:53:08] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[01:53:08] [Server thread/INFO]: Time elapsed: 35 ms
[01:53:08] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.6.2
[01:53:08] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.4 (762)
[01:53:08] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[01:53:08] [Server thread/WARN]: [ViaVersion] Please remember that ViaVersion only adds support for versions newer than the server version.
[01:53:08] [Server thread/WARN]: [ViaVersion] If you need support for older versions you may need to use one or more ViaVersion addons too.
[01:53:08] [Server thread/WARN]: [ViaVersion] In that case please read the ViaVersion resource page carefully or use https://jo0001.github.io/ViaSetup
[01:53:08] [Server thread/WARN]: [ViaVersion] and if you're still unsure, feel free to join our Discord-Server for further assistance.
[01:53:08] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[01:53:09] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[01:53:09] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.1
[01:53:10] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.7
[01:53:10] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[01:53:11] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[01:53:11] [Server thread/INFO]: [Essentials] No kits found to migrate.
[01:53:11] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[01:53:11] [Server thread/INFO]: [Essentials] Using locale en_US
[01:53:11] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[01:53:11] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[01:53:11] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[01:53:12] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[01:53:12] [Server thread/INFO]: [SCore] Enabling SCore v3.9.66
[01:53:12] [Server thread/INFO]: ================ SCore ================
[01:53:12] [Server thread/INFO]: SCore Version of the server git-Paper-519 (MC: 1.19.4) !
[01:53:12] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.3)  8aLoad Before
[01:53:12] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  8aLoad Before
[01:53:12] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.1)  8aLoad Before
[01:53:12] [Server thread/INFO]: SCore Locale setup: EN
[01:53:12] [Server thread/INFO]: SCore Language of the editor setup on EN
[01:53:12] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[01:53:12] [Server thread/INFO]: SCore onnection to the db...
[01:53:12] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[01:53:12] [Server thread/INFO]: SCore Creating table Commands if not exists...
[01:53:12] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[01:53:12] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[01:53:12] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[01:53:12] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[01:53:12] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[01:53:13] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[01:53:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SCore [1.0.0]
[01:53:13] [Server thread/INFO]: ================ SCore ================
[01:53:13] [Server thread/INFO]: [RedProtect] Enabling RedProtect v8.1.0-SNAPSHOT
[01:53:13] [Server thread/INFO]: [RedProtect] Server version: 1.19.4-R0.1-SNAPSHOT
[01:53:13] [Server thread/INFO]: [RedProtect] All configurations loaded!
[01:53:13] [Server thread/INFO]: [RedProtect] Language file loaded - Using: EN-US
[01:53:13] [Server thread/INFO]: [RedProtect] Registering commands...
[01:53:13] [Server thread/INFO]: [RedProtect] Registering listeners...
[01:53:14] [Server thread/INFO]: [RedProtect] Vault Economy found. Hooked.
[01:53:14] [Server thread/INFO]: [RedProtect] Vault Permissions found. Hooked.
[01:53:14] [Server thread/INFO]: [RedProtect] Essentials found. Hooked.
[01:53:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: redprotect [8.1.0-SNAPSHOT]
[01:53:14] [Server thread/INFO]: [RedProtect] PlaceHolderAPI found. Hooked and registered some chat placeholders.
[01:53:14] [Server thread/INFO]: [RedProtect] - Loading world's regions...
[01:53:14] [Server thread/INFO]: [RedProtect] - Loading world_nether's regions...
[01:53:14] [Server thread/INFO]: [RedProtect] - Loading world_the_end's regions...
[01:53:14] [Server thread/INFO]: [RedProtect] Auto-save Scheduler: Saving file database every 60 minutes!
[01:53:14] [Server thread/INFO]: [RedProtect] There are 8 regions on (file) database!
[01:53:14] [Server thread/INFO]: [RedProtect] Helper version: Latest
[01:53:14] [Server thread/INFO]: [RedProtect] Loading GuiFlags for 1.14+
[01:53:14] [Server thread/INFO]: [RedProtect] Metrics enabled! See our stats here: https://bstats.org/plugin/bukkit/RedProtect
[01:53:14] [Server thread/INFO]: [RedProtect] Loading API...
[01:53:14] [Server thread/INFO]: [RedProtect] API Loaded!
[01:53:14] [Server thread/INFO]:  _   _  _   _   _   _  _ _  _  _ _ _  _
[01:53:14] [Server thread/INFO]: |_| |_ | \ |_| |_| | |  |  |_ |   |  |_|
[01:53:14] [Server thread/INFO]: | \ |_ |_/ |   | \ |_|  |  |_ |_  |  |_|
[01:53:14] [Server thread/INFO]: » RedProtect v8.1.0-SNAPSHOT enabled
[01:53:14] [Server thread/INFO]: 
[01:53:14] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.19.7
[01:53:14] [Server thread/INFO]: [EssentialsChat] Secure signed chat and previews are enabled.
[01:53:14] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[01:53:14] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.31-SNAPSHOT (build 3066)
[01:53:14] [Server thread/INFO]: [Citizens] Loading external libraries
[01:53:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[01:53:15] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[01:53:15] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v3.10.0 b752
[01:53:15] [Server thread/INFO]: LevelledMobs: Using NMS version v1_19_R3 for nametag support
[01:53:15] [Server thread/INFO]: LevelledMobs: File Loader: Loading files...
[01:53:15] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'rules.yml'...
[01:53:15] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'settings.yml'...
[01:53:15] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'messages.yml'...
[01:53:15] [Server thread/INFO]: LevelledMobs: Listeners: Registering event listeners...
[01:53:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: LevelledMobs [3.10.0 b752]
[01:53:15] [Server thread/INFO]: LevelledMobs: Commands: Registering commands...
[01:53:15] [Server thread/INFO]: LevelledMobs: Running misc procedures
[01:53:15] [Server thread/INFO]: LevelledMobs: Tasks: Starting async nametag auto update task...
[01:53:15] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'customdrops.yml'...
[01:53:15] [Server thread/INFO]: LevelledMobs: Start-up complete (took 319ms)
[01:53:15] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.19.7
[01:53:15] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[01:53:15] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.19.7
[01:53:15] [Server thread/INFO]: [EssentialsProtect] Continuing to enable Protect.
[01:53:16] [Server thread/INFO]: [EssentialsProtect] Starting Metrics. Opt-out using the global bStats config.
[01:53:16] [Server thread/INFO]: [TreeFeller] Enabling TreeFeller v1.21.4
[01:53:16] [Server thread/INFO]: [TreeFeller] TreeFeller has been enabled! (Version 1.21.4) by ThizThizzyDizzy
[01:53:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: treefeller [1.0.0]
[01:53:16] [Server thread/INFO]: [TreeFeller] Server version: 1_19_R3
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded global values:
[01:53:16] [Server thread/INFO]: [TreeFeller] - Startup Logs: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Default Enabled: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Scan Distance: 256
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 6
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 6
[01:53:16] [Server thread/INFO]: [TreeFeller] - Required Logs: 4
[01:53:16] [Server thread/INFO]: [TreeFeller] - Required Leaves: 10
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Logs: 250
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Height: 5
[01:53:16] [Server thread/INFO]: [TreeFeller] - Allow Partial: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Player Leaves: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Ignore Leaf Data: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Require Cross Section: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Force Distance Check: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Horizontal Trunk Pillar Length: 6
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Trunks: 1
[01:53:16] [Server thread/INFO]: [TreeFeller] - Cutting Animation: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Anim Delay: 1
[01:53:16] [Server thread/INFO]: [TreeFeller] - Replant Saplings: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Use Inventory Saplings: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Spawn Saplings: 0
[01:53:16] [Server thread/INFO]: [TreeFeller] - Sapling Timeout: 50
[01:53:16] [Server thread/INFO]: [TreeFeller] - Grass: [DIRT, GRASS_BLOCK, PODZOL]
[01:53:16] [Server thread/INFO]: [TreeFeller] - Root Distance: 6
[01:53:16] [Server thread/INFO]: [TreeFeller] - Log Behavior: BREAK
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaf Behavior: BREAK
[01:53:16] [Server thread/INFO]: [TreeFeller] - Fall Hurt Amount: 2.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - Fall Hurt Max: 40
[01:53:16] [Server thread/INFO]: [TreeFeller] - Directional Fall Behavior: RANDOM
[01:53:16] [Server thread/INFO]: [TreeFeller] - Overridables: [CAVE_AIR, SEAGRASS, TALL_SEAGRASS, WATER, LARGE_FERN, TALL_GRASS, FERN, AIR, GRASS]
[01:53:16] [Server thread/INFO]: [TreeFeller] - Lock Fall Cardinal: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Directional Fall Velocity: 0.35
[01:53:16] [Server thread/INFO]: [TreeFeller] - Vertical Fall Velocity: 0.05
[01:53:16] [Server thread/INFO]: [TreeFeller] - Explosive Fall Velocity: 0.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - Random Fall Velocity: 0.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - Fall Delay: 0
[01:53:16] [Server thread/INFO]: [TreeFeller] - Respect Unbreaking: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Respect Unbreakable: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Damage Mult: 1.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - Stacked Tools: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaf Fortune: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaf Silk Touch: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Log Fortune: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Log Silk Touch: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leave Stump: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Rotate Logs: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Drop Conversions: {SPRUCE_WOOD=SPRUCE_LOG, OAK_WOOD=OAK_LOG, CRIMSON_HYPHAE=CRIMSON_STEM, DARK_OAK_WOOD=DARK_OAK_LOG, JUNGLE_WOOD=JUNGLE_LOG, ACACIA_WOOD=ACACIA_LOG, WARPED_HYPHAE=WARPED_STEM, BIRCH_WOOD=BIRCH_LOG}
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaf Drop Chance: 1.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - Log Drop Chance: 1.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - Effects: []
[01:53:16] [Server thread/INFO]: [TreeFeller] - Consumed Food Base: 0.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - Consumed Food Logs: 0.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - Consumed Food Leaves: 0.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - Consumed Health Base: 0.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - Consumed Health Logs: 0.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - Consumed Health Leaves: 0.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - Prevent Breakage: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Enable Adventure: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Enable Survival: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Enable Creative: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - With Sneak: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Without Sneak: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - World Blacklist: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Cascade: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Parallel Cascade Limit: 1
[01:53:16] [Server thread/INFO]: [TreeFeller] - Cascade Check Limit: 64
[01:53:16] [Server thread/INFO]: [TreeFeller] - MMOCore Trunk XP: {global=1.0}
[01:53:16] [Server thread/INFO]: [TreeFeller] - MMOCore Leaves XP: {global=0.0}
[01:53:16] [Server thread/INFO]: [TreeFeller] - MMOCore Tree XP: {global=0.0}
[01:53:16] [Server thread/INFO]: [TreeFeller] - MMOCore Emulate Regen: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility MMOCore: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility Jobs: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - MCMMO Double Drops: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility mcMMO: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility mcMMO: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility CoreProtect: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility WorldGuard: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility GriefPrevention: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility Towny: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - OreRegenerator Regen Delay: 1200
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility OreRegenerator: false
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility Drop2Inventory: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - EcoSkills Trunk Woodcutting XP: 1.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - EcoSkills Trunk Mining XP: 0.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - EcoSkills Leaf Woodcutting XP: 0.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - EcoSkills Leaf Mining XP: 0.0
[01:53:16] [Server thread/INFO]: [TreeFeller] - EcoSkills Apply Modifiers: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility EcoSkills: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - EcoJobs Apply Multipliers: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility EcoJobs: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility LogBlock: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility Lands: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility PlaceholderAPI: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility SaberFactions: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - AureliumSkills Trunk XP: {foraging=1.0}
[01:53:16] [Server thread/INFO]: [TreeFeller] - AureliumSkills Leaves XP: {foraging=0.0}
[01:53:16] [Server thread/INFO]: [TreeFeller] - AureliumSkills Apply Modifiers: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility AureliumSkills: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Compatibility BlockRegen: false
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:53:16] [Server thread/INFO]: [TreeFeller] - Trunk: OAK_LOG, OAK_WOOD
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaves: OAK_LEAVES
[01:53:16] [Server thread/INFO]: [TreeFeller] - Sapling: [OAK_SAPLING]
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:53:16] [Server thread/INFO]: [TreeFeller] - Trunk: BIRCH_LOG, BIRCH_WOOD
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaves: BIRCH_LEAVES
[01:53:16] [Server thread/INFO]: [TreeFeller] - Sapling: [BIRCH_SAPLING]
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:53:16] [Server thread/INFO]: [TreeFeller] - Trunk: SPRUCE_LOG, SPRUCE_WOOD
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaves: SPRUCE_LEAVES
[01:53:16] [Server thread/INFO]: [TreeFeller] - Sapling: [SPRUCE_SAPLING]
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:53:16] [Server thread/INFO]: [TreeFeller] - Trunk: JUNGLE_LOG, JUNGLE_WOOD
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaves: JUNGLE_LEAVES
[01:53:16] [Server thread/INFO]: [TreeFeller] - Sapling: [JUNGLE_SAPLING]
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:53:16] [Server thread/INFO]: [TreeFeller] - Trunk: DARK_OAK_LOG, DARK_OAK_WOOD
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaves: DARK_OAK_LEAVES
[01:53:16] [Server thread/INFO]: [TreeFeller] - Sapling: [DARK_OAK_SAPLING]
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:53:16] [Server thread/INFO]: [TreeFeller] - Trunk: ACACIA_LOG, ACACIA_WOOD
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaves: ACACIA_LEAVES
[01:53:16] [Server thread/INFO]: [TreeFeller] - Sapling: [ACACIA_SAPLING]
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:53:16] [Server thread/INFO]: [TreeFeller] - Trunk: OAK_LOG, OAK_WOOD
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaves: AZALEA_LEAVES, FLOWERING_AZALEA_LEAVES
[01:53:16] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Sapling: [AZALEA, FLOWERING_AZALEA]
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:53:16] [Server thread/INFO]: [TreeFeller] - Trunk: MANGROVE_LOG, MANGROVE_WOOD
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaves: MANGROVE_ROOTS, MANGROVE_LEAVES
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 16
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 16
[01:53:16] [Server thread/INFO]: [TreeFeller] - Required Logs: 3
[01:53:16] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Horizontal Trunk Pillar Length: 16
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Trunks: 16
[01:53:16] [Server thread/INFO]: [TreeFeller] - Sapling: [MANGROVE_PROPAGULE]
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:53:16] [Server thread/INFO]: [TreeFeller] - Roots: [MANGROVE_ROOTS]
[01:53:16] [Server thread/INFO]: [TreeFeller] - Root Distance: 16
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:53:16] [Server thread/INFO]: [TreeFeller] - Trunk: CRIMSON_STEM, CRIMSON_HYPHAE
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaves: NETHER_WART_BLOCK, SHROOMLIGHT
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 8
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 8
[01:53:16] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Sapling: [CRIMSON_FUNGUS]
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:53:16] [Server thread/INFO]: [TreeFeller] - Grass: [CRIMSON_NYLIUM]
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:53:16] [Server thread/INFO]: [TreeFeller] - Trunk: WARPED_STEM, WARPED_HYPHAE
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaves: WARPED_WART_BLOCK, SHROOMLIGHT
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 8
[01:53:16] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 8
[01:53:16] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[01:53:16] [Server thread/INFO]: [TreeFeller] - Sapling: [WARPED_FUNGUS]
[01:53:16] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:53:16] [Server thread/INFO]: [TreeFeller] - Grass: [WARPED_NYLIUM]
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded tool: WOODEN_AXE
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded tool: STONE_AXE
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded tool: IRON_AXE
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded tool: GOLDEN_AXE
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded tool: DIAMOND_AXE
[01:53:16] [Server thread/INFO]: [TreeFeller] Loaded tool: NETHERITE_AXE
[01:53:16] [Server thread/INFO]: [HelpMenu] Enabling HelpMenu v1.3.2
[01:53:16] [Server thread/INFO]: [HelpMenu] 
  __    __   _______  __      .______      .___  ___.  _______ .__   __.  __    __
 |  |  |  | |   ____||  |     |   _  \     |   \/   | |   ____||  \ |  | |  |  |  |
 |  |__|  | |  |__   |  |     |  |_)  |    |  \  /  | |  |__   |   \|  | |  |  |  |
 |   __   | |   __|  |  |     |   ___/     |  |\/|  | |   __|  |  . `  | |  |  |  |
 |  |  |  | |  |____ |  `----.|  |         |  |  |  | |  |____ |  |\   | |  `--'  |
 |__|  |__| |_______||_______|| _|         |__|  |__| |_______||__| \__|  \______/

[01:53:16] [Server thread/INFO]: [HelpMenu] Loaded help.yml
[01:53:16] [Server thread/INFO]: [HelpMenu] Loaded config.yml
[01:53:16] [Server thread/INFO]: [HelpMenu] Loaded 0 custom GUIs files
[01:53:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: HelpMenu [1.3.2]
[01:53:16] [Server thread/INFO]: [HelpMenu] Plugin Enabled
[01:53:16] [Server thread/INFO]: [TimeIsMoney] Enabling TimeIsMoney v1.9.6.22
[01:53:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tim [1.9.6.22]
[01:53:16] [Server thread/INFO]: [TimeIsMoney] Loaded 2 Payouts!
[01:53:16] [Server thread/INFO]: Time is Money: Essentials found. Hook in it -> Will use Essentials's AFK feature if afk is enabled.
[01:53:16] [Server thread/INFO]: Time is Money v1.9.6.22 started.
[01:53:16] [Server thread/INFO]: [SimplePortals] Enabling SimplePortals v1.7.2
[01:53:16] [Server thread/INFO]: [SimplePortals] Everything inside the configuration seems to be up to date. (Took 3ms)
[01:53:16] [Server thread/INFO]: [SimplePortals] Packets have been setup for v1_19_R3!
[01:53:16] [Server thread/INFO]: [SimplePortals] Everything looks like it is up to date!
[01:53:16] [Server thread/INFO]: [EvenMoreFish] Enabling EvenMoreFish v1.6.10
[01:53:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[01:53:16] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R3) is not supported by this NBT-API Version(2.11.1) located at com.oheers.fish.utils.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[01:53:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[01:53:16] [Thread-10/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package com.oheers.fish.utils' seems to be outdated!
[01:53:16] [Thread-10/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[01:53:16] [Thread-10/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[01:53:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: emf [1.6.10]
[01:53:16] [Server thread/INFO]: [EvenMoreFish] EvenMoreFish by Oheers : Enabled
[01:53:16] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.7.0
[01:53:17] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[01:53:18] [Server thread/INFO]: [ajLeaderboards] The columns already exist for essentials_baltop_balance_1. Canceling updater and bumping DB version.
[01:53:18] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_damage_taken. Canceling updater and bumping DB version.
[01:53:18] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_fish_caught. Canceling updater and bumping DB version.
[01:53:18] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_hours_played. Canceling updater and bumping DB version.
[01:53:18] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_mine_block:oak_log. Canceling updater and bumping DB version.
[01:53:18] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_mob_kills. Canceling updater and bumping DB version.
[01:53:18] [Server thread/INFO]: [ajLeaderboards] The columns already exist for vault_eco_balance. Canceling updater and bumping DB version.
[01:53:18] [Server thread/INFO]: [ajLeaderboards] The columns already exist for vault_eco_balance_1dp. Canceling updater and bumping DB version.
[01:53:18] [Server thread/INFO]: [ajLeaderboards] Loaded 8 boards
[01:53:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.7.0]
[01:53:18] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[01:53:18] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.7.0 by ajgeiss0702 enabled!
[01:53:18] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.3
[01:53:18] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.3*-=-=-=-=-=-=-=-=-=-*
[01:53:18] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[01:53:18] [Server thread/INFO]: | Logs Directory Created /MyCommand/logs/
[01:53:18] [Server thread/INFO]: | PlayerData Directory Created /MyCommand/playerdata/
[01:53:18] [Server thread/INFO]: | Created the folder /commands/
[01:53:18] [Server thread/INFO]: | Created /commands/examples.yml
[01:53:18] [Server thread/INFO]: | Created 13 config files.
[01:53:18] [Server thread/INFO]: | Command file(s) found : 0
[01:53:18] [Server thread/INFO]: | Config : Ready.
[01:53:18] [Server thread/INFO]: | ProtocolLib not found.
[01:53:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mycommand [1.0.0]
[01:53:18] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[01:53:18] [Server thread/INFO]: | Custom commands loaded : 44
[01:53:18] [Server thread/INFO]: | You're running the latest version of MyCommand.
[01:53:18] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[01:53:18] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[01:53:18] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v5.3.5
[01:53:18] [Server thread/INFO]: [EconomyShopGUI] Using lang-en.yml as language file.
[01:53:18] [Server thread/INFO]: [EconomyShopGUI] Shops.yml has been found!
[01:53:18] [Server thread/INFO]: [EconomyShopGUI] Sections.yml has been found!
[01:53:18] [Server thread/INFO]: [EconomyShopGUI] Successfully hooked into Vault
[01:53:18] [Server thread/INFO]: [EconomyShopGUI] Completed loading '1' economy provider(s) for all 17 shop sections.
[01:53:18] [Server thread/INFO]: [EconomyShopGUI] Using minecraft version 1.19.4...
[01:53:18] [Server thread/INFO]: [EconomyShopGUI] Spawner provider set to DEFAULT in config
[01:53:18] [Server thread/INFO]: [EconomyShopGUI] Using plugin default spawners...
[01:53:18] [Server thread/INFO]: [EconomyShopGUI] Debug mode is enabled.
[01:53:18] [Server thread/INFO]: [EconomyShopGUI] Updating Shop settings...
[01:53:18] [Server thread/INFO]: [EconomyShopGUI] Loading all items...
[01:53:19] [Server thread/INFO]: [EconomyShopGUI] Initialized - Took 776ms to complete
[01:53:19] [Server thread/INFO]: [NiceHosting] Enabling NiceHosting v1.02*
[01:53:19] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v0.20.1
[01:53:19] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[01:53:19] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_19_R3.
[01:53:19] [Server thread/INFO]: [BeautyQuests] Loaded language en_US (0.046s)!
[01:53:19] [Server thread/INFO]: [BeautyQuests] Loaded start particles: REDSTONE in shape POINT with color R255 G255 B0
[01:53:19] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: VILLAGER_HAPPY in shape BAR
[01:53:19] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE_NORMAL in shape SPOT
[01:53:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: beautyquests [0.20.1]
[01:53:19] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[01:53:19] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.18
[01:53:19] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[01:53:20] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[01:53:20] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
[01:53:20] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[01:53:20] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[01:53:20] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[01:53:20] [Server thread/INFO]: [Minepacks] Loading item translations ...
[01:53:20] [Server thread/INFO]: [Minepacks] Finished loading item translations for 828 items.
[01:53:20] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[01:53:20] [Server thread/INFO]: [ChatLogger] Enabling ChatLogger v1.0-SNAPSHOT
[01:53:20] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.8-2
[01:53:20] [Server thread/INFO]: [BetterRTP] Cooldown = 600
[01:53:20] [Server thread/INFO]: [BetterRTP] Loading Overrides...
[01:53:20] [Server thread/INFO]: [BetterRTP] Loading World Types...
[01:53:20] [Server thread/INFO]: [BetterRTP] - World Type for 'world' set to 'NORMAL'
[01:53:20] [Server thread/INFO]: [BetterRTP] - World Type for 'world_nether' set to 'NETHER'
[01:53:20] [Server thread/INFO]: [BetterRTP] - World Type for 'world_the_end' set to 'NORMAL'
[01:53:20] [Server thread/INFO]: [BetterRTP] Loading Defaults...
[01:53:20] [Server thread/INFO]: [BetterRTP] Loading Custom Worlds...
[01:53:20] [Server thread/INFO]: [BetterRTP] [WARN] - Custom World 'custom_world_1' was not registered because world does NOT exist
[01:53:20] [Server thread/INFO]: [BetterRTP] [WARN] - Custom World 'other_custom_world' was not registered because world does NOT exist
[01:53:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.8-2]
[01:53:21] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[01:53:21] [Server thread/INFO]: Running delayed init tasks
[01:53:21] [Craft Scheduler Thread - 6 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[01:53:21] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[01:53:21] [Craft Scheduler Thread - 9 - Essentials/INFO]: [Essentials] Fetching version information...
[01:53:21] [Craft Scheduler Thread - 4 - HelpMenu/INFO]: [HelpMenu] New version 1.3.3 is now available
[01:53:21] [Craft Scheduler Thread - 23 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:world configured and loaded!
[01:53:21] [Craft Scheduler Thread - 23 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:world_nether configured and loaded!
[01:53:21] [Craft Scheduler Thread - 24 - BetterRTP/INFO]: [BetterRTP] Database QUEUE:Queue configured and loaded!
[01:53:21] [Craft Scheduler Thread - 14 - BetterRTP/INFO]: [BetterRTP] Database CHUNK_DATA:ChunkData configured and loaded!
[01:53:21] [Craft Scheduler Thread - 23 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:world_the_end configured and loaded!
[01:53:21] [Craft Scheduler Thread - 20 - BetterRTP/INFO]: [BetterRTP] Database PLAYERS:Players configured and loaded!
[01:53:21] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[01:53:21] [Craft Scheduler Thread - 19 - Vault/INFO]: [Vault] Checking for Updates ... 
[01:53:21] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: [DecentHolograms] Loaded 12 holograms!
[01:53:21] [Craft Scheduler Thread - 19 - Vault/INFO]: [Vault] No new version available
[01:53:23] [Server thread/INFO]: [Citizens] Loaded 19 NPCs.
[01:53:23] [Server thread/INFO]: [BeautyQuests] You are using the latest version of BeautyQuests.
[01:53:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.4]
[01:53:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[01:53:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[01:53:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.2]
[01:53:23] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion ezblocks due to a missing plugin: EZBlocks
[01:53:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cooldownbar [1.1]
[01:53:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plugin [1.1.0]
[01:53:23] [Server thread/INFO]: 6 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[01:53:23] [Server thread/INFO]: Done (38.710s)! For help, type "help"
[01:53:23] [Server thread/INFO]: Timings Reset
[01:53:24] [Server thread/INFO]: [BeautyQuests] 9 quests loaded (0.089s)!
[01:53:24] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 137
[01:53:32] [Craft Scheduler Thread - 22 - BetterRTP/INFO]: [BetterRTP] Attempting to queue up some more safe locations...
[01:53:53] [Craft Scheduler Thread - 19 - BetterRTP/INFO]: [BetterRTP] Queueing paused, max queue limit reached!
[01:54:08] [User Authenticator #0/INFO]: UUID of player Saugmann04 is a21a22d6-583a-4955-bfee-31bf6a1dc2c0
[01:54:09] [Server thread/INFO]: Saugmann04 joined the game
[01:54:09] [Server thread/INFO]: Saugmann04[/80.208.68.46:12512] logged in with entity id 450 at ([world]-585.6646414361736, 152.10131520987474, 309.98084141831276)
[01:54:09] [Server thread/WARN]: [Essentials] Permissions lag notice with (LuckPermsHandler). Response took 114.872925ms. Summary: Getting prefix for Saugmann04
[01:54:30] [User Authenticator #0/INFO]: UUID of player MarcusSaugmann is eec80d6a-5690-4958-babe-42a6eaff28df
[01:54:30] [Server thread/WARN]: java.lang.RuntimeException: java.io.IOException: Possible corrupt clipboard file? Mismatch between expected file size `603` and actual file size `855`!
[01:54:30] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.6.2-SNAPSHOT-413.jar//com.fastasyncworldedit.core.extent.clipboard.DiskOptimizedClipboard.<init>(DiskOptimizedClipboard.java:198)
[01:54:30] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.6.2-SNAPSHOT-413.jar//com.fastasyncworldedit.core.extent.clipboard.DiskOptimizedClipboard.<init>(DiskOptimizedClipboard.java:160)
[01:54:30] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.6.2-SNAPSHOT-413.jar//com.fastasyncworldedit.core.extent.clipboard.DiskOptimizedClipboard.loadFromFile(DiskOptimizedClipboard.java:241)
[01:54:30] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.6.2-SNAPSHOT-413.jar//com.sk89q.worldedit.entity.Player.loadClipboardFromDisk(Player.java:473)
[01:54:30] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.6.2-SNAPSHOT-413.jar//com.sk89q.worldedit.bukkit.BukkitPlayer.<init>(BukkitPlayer.java:112)
[01:54:30] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.6.2-SNAPSHOT-413.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.wrapPlayer(WorldEditPlugin.java:562)
[01:54:30] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.6.2-SNAPSHOT-413.jar//com.sk89q.worldedit.bukkit.WorldEditListener.onJoin(WorldEditListener.java:89)
[01:54:30] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor25.execute(Unknown Source)
[01:54:30] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[01:54:30] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[01:54:30] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[01:54:30] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[01:54:30] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[01:54:30] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[01:54:30] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:330)
[01:54:30] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[01:54:30] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[01:54:30] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[01:54:30] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:592)
[01:54:30] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[01:54:30] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1576)
[01:54:30] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[01:54:30] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[01:54:30] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[01:54:30] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[01:54:30] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[01:54:30] [Server thread/WARN]: Caused by: java.io.IOException: Possible corrupt clipboard file? Mismatch between expected file size `603` and actual file size `855`!
[01:54:30] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.6.2-SNAPSHOT-413.jar//com.fastasyncworldedit.core.extent.clipboard.DiskOptimizedClipboard.checkFileLength(DiskOptimizedClipboard.java:223)
[01:54:30] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.6.2-SNAPSHOT-413.jar//com.fastasyncworldedit.core.extent.clipboard.DiskOptimizedClipboard.<init>(DiskOptimizedClipboard.java:176)
[01:54:30] [Server thread/WARN]:     ... 25 more
[01:54:30] [Server thread/INFO]: MarcusSaugmann joined the game
[01:54:30] [Server thread/INFO]: MarcusSaugmann[/212.237.135.97:26268] logged in with entity id 678 at ([world]-589.215152032554, 153.61280177344491, 323.17518477153993)
[01:54:42] [Server thread/INFO]: Saugmann04 issued server command: /op saugmann04
[01:54:54] [Server thread/INFO]: Saugmann04 issued server command: /coowner
[01:55:56] [Server thread/INFO]: MarcusSaugmann issued server command: /mycmd reload
[01:56:00] [Server thread/INFO]: MarcusSaugmann issued server command: /mycmd-reload
[01:56:09] [Server thread/INFO]: MarcusSaugmann issued server command: /mycmd-reload all
[01:56:09] [Server thread/INFO]: [MyCmd] Reloaded custom commands. Loaded 45 commands.
[01:56:13] [Server thread/INFO]: MarcusSaugmann issued server command: /shop
[01:56:13] [Server thread/INFO]: MarcusSaugmann issued mycmd (shoptp) command /shop
[01:56:22] [Server thread/INFO]: MarcusSaugmann issued server command: /shop
[01:56:22] [Server thread/INFO]: MarcusSaugmann issued mycmd (shoptp) command /shop
[01:57:11] [Server thread/INFO]: Saugmann04 issued server command: /warp medieval
[01:57:47] [Server thread/INFO]: MarcusSaugmann issued server command: /mycmd-reload all
[01:57:47] [Server thread/INFO]: [MyCmd] Reloaded custom commands. Loaded 45 commands.
[01:57:49] [Server thread/INFO]: MarcusSaugmann issued server command: /shop
[01:57:49] [Server thread/INFO]: MarcusSaugmann issued mycmd (shoptp) command /shop
[01:58:19] [Server thread/INFO]: MarcusSaugmann issued server command: /mycmd-reload all
[01:58:19] [Server thread/INFO]: [MyCmd] Reloaded custom commands. Loaded 45 commands.
[01:58:20] [Server thread/INFO]: MarcusSaugmann issued server command: /shop
[01:58:20] [Server thread/INFO]: MarcusSaugmann issued mycmd (shoptp) command /shop
[01:58:20] [Server thread/INFO]: [Not Secure] <[ADMIN] MarcusSaugmann> warp shop
[01:58:28] [Server thread/INFO]: MarcusSaugmann issued server command: /mycmd-reload all
[01:58:28] [Server thread/INFO]: [MyCmd] Reloaded custom commands. Loaded 45 commands.
[01:58:29] [Server thread/INFO]: MarcusSaugmann issued server command: /shop
[01:58:29] [Server thread/INFO]: MarcusSaugmann issued mycmd (shoptp) command /shop
[01:58:29] [Server thread/INFO]: MarcusSaugmann issued server command: /warp shop
[01:58:29] [Server thread/WARN]: MarcusSaugmann moved too quickly! 33.30473029562495,-3.5,-5.676351002402953
[01:58:42] [Server thread/INFO]: MarcusSaugmann issued server command: /citizens reload
[01:58:45] [Server thread/INFO]: MarcusSaugmann issued server command: /citizens reload
[01:58:45] [Server thread/WARN]: [BeautyQuests] Citizens has been reloaded whereas it is highly not recommended for plugins compatibilities. Unexpected behaviors may happen.
[01:58:50] [Server thread/INFO]: MarcusSaugmann issued server command: /tp2p Saugmann04
[01:59:47] [Server thread/INFO]: MarcusSaugmann issued server command: /shop
[01:59:47] [Server thread/INFO]: MarcusSaugmann issued mycmd (shoptp) command /shop
[01:59:47] [Server thread/INFO]: MarcusSaugmann issued server command: /warp shop
[01:59:47] [Server thread/WARN]: MarcusSaugmann moved too quickly! -692.536181010357,67.0,1226.2334792560825
[02:00:16] [Server thread/INFO]: MarcusSaugmann issued server command: /rp welcome Velkommen til Shoppingområdet! Her kan du købe og sælge alt hvad du kan drømme om.
[02:01:28] [Server thread/INFO]: MarcusSaugmann issued server command: /dailybonus
[02:01:28] [Server thread/INFO]: MarcusSaugmann issued mycmd (dailybonus) command /dailybonus
[02:01:28] [Server thread/INFO]: [MyCmd] Created a new MyCommand/playerdata/ file for eec80d6a-5690-4958-babe-42a6eaff28df
[02:02:46] [Server thread/INFO]: MarcusSaugmann issued server command: /mycmd-reload all
[02:02:46] [Server thread/INFO]: [MyCmd] Reloaded custom commands. Loaded 45 commands.
[02:02:47] [Server thread/INFO]: MarcusSaugmann issued server command: /dg
[02:02:47] [Server thread/INFO]: MarcusSaugmann issued mycmd (dailybonus) command /dg
[02:03:57] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give Saugmann04 iron_ingot 1
[02:04:30] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give MarcusSaugmann iron_ingot 1
[02:06:46] [Server thread/INFO]: MarcusSaugmann issued server command: /hmenu reload
[02:06:46] [Server thread/INFO]: [HelpMenu] Loaded HELP
[02:06:46] [Server thread/INFO]: [HelpMenu] Loaded CONFIG
[02:06:46] [Server thread/INFO]: [HelpMenu] Loaded 0 custom GUIs files
[02:06:46] [Server thread/INFO]: [HelpMenu] Config files reloaded!
[02:06:51] [Server thread/INFO]: MarcusSaugmann issued server command: /mycmd-reload all
[02:06:51] [Server thread/INFO]: [MyCmd] Reloaded custom commands. Loaded 45 commands.
[02:06:56] [Async Chat Thread - #2/INFO]: <[ADMIN] MarcusSaugmann> dg
[02:07:03] [Server thread/INFO]: MarcusSaugmann issued server command: /help
[02:07:11] [Server thread/INFO]: Saugmann04 issued server command: /dg
[02:07:11] [Server thread/INFO]: Saugmann04 issued mycmd (dailybonus) command /dg
[02:07:11] [Server thread/INFO]: [MyCmd] Created a new MyCommand/playerdata/ file for a21a22d6-583a-4955-bfee-31bf6a1dc2c0
[02:07:19] [Server thread/INFO]: Saugmann04 issued server command: /dg
[02:07:19] [Server thread/INFO]: Saugmann04 issued mycmd (dailybonus) command /dg
[02:07:21] [Server thread/INFO]: MarcusSaugmann issued server command: /dg
[02:07:21] [Server thread/INFO]: MarcusSaugmann issued mycmd (dailybonus) command /dg
[02:07:23] [Server thread/INFO]: MarcusSaugmann issued server command: /dg
[02:07:23] [Server thread/INFO]: MarcusSaugmann issued mycmd (dailybonus) command /dg
[02:07:42] [Server thread/INFO]: MarcusSaugmann issued server command: /dg
[02:07:42] [Server thread/INFO]: MarcusSaugmann issued mycmd (dailybonus) command /dg
[02:07:44] [Server thread/INFO]: MarcusSaugmann issued server command: /help
[02:08:55] [Craft Scheduler Thread - 43 - BeautyQuests/INFO]: [BeautyQuests] Datas saved ~ periodic save
[02:09:02] [Server thread/INFO]: MarcusSaugmann issued server command: /shop
[02:09:02] [Server thread/INFO]: MarcusSaugmann issued mycmd (shoptp) command /shop
[02:09:02] [Server thread/INFO]: MarcusSaugmann issued server command: /warp shop
[02:09:14] [Server thread/INFO]: Saugmann04 issued server command: /dh
[02:09:17] [Server thread/INFO]: MarcusSaugmann issued server command: /mycmd-reload all
[02:09:17] [Server thread/INFO]: [MyCmd] Reloaded custom commands. Loaded 46 commands.
[02:09:20] [Server thread/INFO]: MarcusSaugmann issued server command: /tablet
[02:09:20] [Server thread/INFO]: MarcusSaugmann issued mycmd (tablet) command /tablet
[02:09:20] [Server thread/INFO]: MarcusSaugmann issued server command: /help
[02:10:04] [Server thread/INFO]: MarcusSaugmann issued server command: /hmenu reload
[02:10:04] [Server thread/INFO]: [HelpMenu] Loaded HELP
[02:10:04] [Server thread/INFO]: [HelpMenu] Loaded CONFIG
[02:10:04] [Server thread/INFO]: [HelpMenu] Loaded 0 custom GUIs files
[02:10:04] [Server thread/INFO]: [HelpMenu] Config files reloaded!
[02:10:06] [Server thread/INFO]: MarcusSaugmann issued server command: /tablet
[02:10:06] [Server thread/INFO]: MarcusSaugmann issued mycmd (tablet) command /tablet
[02:10:06] [Server thread/INFO]: MarcusSaugmann issued server command: /help
[02:10:17] [Server thread/INFO]: Saugmann04 issued server command: /dh add spawnshop
[02:10:21] [Server thread/INFO]: Saugmann04 issued server command: /dh help
[02:10:42] [Server thread/INFO]: MarcusSaugmann issued server command: /hmenu reload
[02:10:42] [Server thread/INFO]: [HelpMenu] Loaded HELP
[02:10:42] [Server thread/INFO]: [HelpMenu] Loaded CONFIG
[02:10:42] [Server thread/INFO]: [HelpMenu] Loaded 0 custom GUIs files
[02:10:42] [Server thread/INFO]: [HelpMenu] Config files reloaded!
[02:10:42] [Server thread/INFO]: MarcusSaugmann issued server command: /tablet
[02:10:42] [Server thread/INFO]: MarcusSaugmann issued mycmd (tablet) command /tablet
[02:10:42] [Server thread/INFO]: MarcusSaugmann issued server command: /help
[02:10:57] [Server thread/INFO]: Saugmann04 issued server command: /holo create Sshop
[02:11:08] [Server thread/INFO]: MarcusSaugmann issued server command: /kunisaug Food
[02:11:19] [Server thread/INFO]: MarcusSaugmann issued server command: /npc sel
[02:11:25] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd list
[02:11:37] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd
[02:11:44] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd remove
[02:11:49] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd remove 1
[02:11:51] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd remove 0
[02:11:58] [Server thread/INFO]: Saugmann04 issued server command: /dh lines edit Sshop 1
[02:12:06] [Server thread/INFO]: Saugmann04 issued server command: /dh lines edit Sshop 1 1
[02:12:09] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd add -p kunigari Farming
[02:12:11] [Server thread/INFO]: MarcusSaugmann issued server command: /kunigari Farming
[02:12:13] [Server thread/INFO]: MarcusSaugmann issued server command: /kunigari Farming
[02:12:24] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd remove 0
[02:12:29] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd add -p kunisaug Farming
[02:12:30] [Server thread/INFO]: MarcusSaugmann issued server command: /kunisaug Farming
[02:12:34] [Server thread/INFO]: Saugmann04 issued server command: /dh l set Sshop 1 1 &gGå ind i portalen og
[02:12:41] [Server thread/INFO]: Saugmann04 issued server command: /dh l set Sshop 1 1 &dGå ind i portalen og
[02:12:59] [Server thread/INFO]: Saugmann04 issued server command: /dh lines add Sshop
[02:13:04] [Server thread/INFO]: Saugmann04 issued server command: /dh lines add Sshop 1
[02:13:14] [Server thread/INFO]: Saugmann04 issued server command: /dh lines edit Sshop 1 2
[02:13:57] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give Saugmann04 iron_ingot 1
[02:14:06] [Server thread/INFO]: Saugmann04 issued server command: /dh l set Sshop 1 2 &doplev salgsteamet
[02:14:30] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give MarcusSaugmann iron_ingot 1
[02:14:48] [Server thread/INFO]: Saugmann04 issued server command: /dh l set Sshop 1 2 &doplev salgs-/købsteamet
[02:15:46] [Server thread/INFO]: Saugmann04 issued server command: /portal selectionmode
[02:16:03] [Server thread/INFO]: Saugmann04 issued server command: /portal create Sshop
[02:16:13] [Server thread/INFO]: Saugmann04 issued server command: /shop
[02:16:13] [Server thread/INFO]: Saugmann04 issued mycmd (shoptp) command /shop
[02:16:13] [Server thread/INFO]: Saugmann04 issued server command: /warp shop
[02:16:27] [Server thread/INFO]: Saugmann04 issued server command: /portal setlocation sshop
[02:16:35] [Server thread/INFO]: Saugmann04 issued server command: /warp medieval
[02:16:35] [Server thread/WARN]: Saugmann04 moved too quickly! 668.5686012520445,-57.0,-1134.9910339511882
[02:16:35] [Server thread/WARN]: Saugmann04 moved too quickly! 668.5686012520445,-57.0,-1134.9910339511882
[02:17:08] [User Authenticator #1/INFO]: UUID of player LucasSaugmann is 47692e0f-ff40-4edc-957c-e7f9798f11e6
[02:17:08] [Server thread/INFO]: LucasSaugmann joined the game
[02:17:08] [Server thread/INFO]: LucasSaugmann[/212.237.135.37:42468] logged in with entity id 5267 at ([world]-504.33274300614613, 69.0, -535.6999999880791)
[02:17:39] [Server thread/INFO]: Saugmann04 issued server command: /tp LucasSaugmann Saugmann04
[02:17:39] [Server thread/WARN]: LucasSaugmann moved too quickly! 590.1292588360957,13.0,-290.7806380054227
[02:18:33] [Server thread/WARN]: Saugmann04 moved too quickly! -687.3994322855986,75.85583299408569,1217.7548585023583
[02:18:45] [Server thread/INFO]: MarcusSaugmann issued server command: /citizens reload
[02:18:46] [Server thread/INFO]: MarcusSaugmann issued server command: /citizens reload
[02:18:46] [Server thread/WARN]: [BeautyQuests] Citizens has been reloaded whereas it is highly not recommended for plugins compatibilities. Unexpected behaviors may happen.
[02:19:14] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Enchanting
[02:19:19] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Food
[02:19:21] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Spawners
[02:19:25] [Server thread/INFO]: LucasSaugmann issued server command: /shop
[02:19:25] [Server thread/INFO]: LucasSaugmann issued mycmd (shoptp) command /shop
[02:19:25] [Server thread/INFO]: LucasSaugmann issued server command: /warp shop
[02:19:25] [Server thread/WARN]: LucasSaugmann moved too quickly! 16.184293356971352,1.0,7.070514730617731
[02:19:39] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Food
[02:19:46] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Food
[02:19:47] [Server thread/INFO]: Saugmann04 issued server command: /kunisaug Spawners
[02:19:49] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Food
[02:19:53] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Food
[02:20:03] [Server thread/INFO]: LucasSaugmann issued server command: /home
[02:20:03] [Server thread/WARN]: LucasSaugmann moved too quickly! 131.0603037955915,-38.0,-764.7616355585012
[02:20:07] [Server thread/ERROR]: [BeautyQuests] Cannot retrieve stage datas for LucasSaugmann (# 4) on stage 0(EAT_DRINK) of quest 9, branch 0
[02:20:08] [Server thread/INFO]: MarcusSaugmann issued server command: /warp fiskerbyen
[02:20:10] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-849.0,y=67.0,z=-643.0,pitch=0.0,yaw=0.0}
[02:20:11] [Server thread/INFO]: LucasSaugmann issued server command: /warp Fiskerbyen
[02:20:23] [Server thread/INFO]: Saugmann04 issued server command: /portal selectionmode
[02:20:43] [Server thread/INFO]: MarcusSaugmann issued server command: /quest edit
[02:20:47] [Server thread/INFO]: Saugmann04 issued server command: /portal create forum
[02:20:50] [Server thread/INFO]: LucasSaugmann issued server command: /home
[02:20:50] [Server thread/WARN]: LucasSaugmann moved too quickly! 425.8648639708646,40.0625,242.8163384181497
[02:20:50] [Server thread/INFO]: [BeautyQuests] New quest created: Muuuuhhhh..., ID 5, by MarcusSaugmann
[02:20:50] [Server thread/INFO]: [BeautyQuests] Quest Muuuuhhhh... has been edited
[02:20:53] [Server thread/INFO]: Saugmann04 issued server command: /warp medieval
[02:20:53] [Server thread/WARN]: Saugmann04 moved too quickly! 661.304522538036,-58.0,-1134.2490957169975
[02:20:57] [Server thread/INFO]: MarcusSaugmann issued server command: /quest edit
[02:21:05] [Server thread/INFO]: [BeautyQuests] New quest created: Smed mens jernet er varmt, ID 7, by MarcusSaugmann
[02:21:05] [Server thread/INFO]: [BeautyQuests] Quest Smed mens jernet er varmt has been edited
[02:21:15] [Server thread/INFO]: MarcusSaugmann issued server command: /quest edit
[02:21:21] [Server thread/INFO]: [BeautyQuests] New quest created: Kan du finde min far til mig?, ID 4, by MarcusSaugmann
[02:21:21] [Server thread/INFO]: [BeautyQuests] Quest Kan du finde min far til mig? has been edited
[02:21:30] [Server thread/INFO]: MarcusSaugmann issued server command: /npc rename &6Victoria
[02:21:34] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-844.0,y=67.0,z=-636.0,pitch=0.0,yaw=0.0}
[02:21:41] [Server thread/INFO]: MarcusSaugmann issued server command: /npc sel
[02:21:45] [Server thread/INFO]: LucasSaugmann issued server command: /warp Fiskerbyen
[02:21:45] [Server thread/WARN]: LucasSaugmann moved too quickly! -383.85791930259,-43.0,-204.23928744861905
[02:21:52] [Server thread/INFO]: MarcusSaugmann issued server command: /npc rename &6Victoria
[02:21:55] [Server thread/INFO]: MarcusSaugmann issued server command: /shop
[02:21:55] [Server thread/INFO]: MarcusSaugmann issued mycmd (shoptp) command /shop
[02:21:55] [Server thread/INFO]: MarcusSaugmann issued server command: /warp shop
[02:21:55] [Server thread/WARN]: MarcusSaugmann moved too quickly! 287.21855513975765,79.0,1025.566696602763
[02:21:57] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-845.0,y=67.0,z=-635.0,pitch=0.0,yaw=0.0}
[02:22:23] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-846.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[02:22:38] [Server thread/INFO]: MarcusSaugmann issued server command: /spawn
[02:22:43] [Server thread/INFO]: MarcusSaugmann issued server command: /warp fiskerbyen
[02:22:46] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-846.0,y=67.0,z=-635.0,pitch=0.0,yaw=0.0}
[02:23:06] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-846.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[02:23:20] [Server thread/INFO]: MarcusSaugmann issued server command: /give LucasSaugmann oak_log 128
[02:23:42] [Server thread/INFO]: MarcusSaugmann issued server command: /give LucasSaugmann salmon 5
[02:23:44] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-845.0,y=67.0,z=-635.0,pitch=0.0,yaw=0.0}
[02:23:51] [Server thread/INFO]: MarcusSaugmann issued server command: /quest edit
[02:23:55] [Craft Scheduler Thread - 65 - BeautyQuests/INFO]: [BeautyQuests] Datas saved ~ periodic save
[02:23:57] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give Saugmann04 iron_ingot 1
[02:23:59] [Server thread/INFO]: [BeautyQuests] New quest created: Fiskestænger, ID 6, by MarcusSaugmann
[02:23:59] [Server thread/INFO]: [BeautyQuests] Quest Fiskestænger has been edited
[02:24:24] [Server thread/INFO]: MarcusSaugmann issued server command: /give LucasSaugmann oak_log 64
[02:24:30] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give MarcusSaugmann iron_ingot 1
[02:24:32] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-847.0,y=68.0,z=-634.0,pitch=0.0,yaw=0.0}
[02:24:49] [Server thread/INFO]: LucasSaugmann issued server command: /emf shop
[02:24:51] [Server thread/INFO]: MarcusSaugmann issued server command: /emf shop
[02:24:52] [Server thread/INFO]: LucasSaugmann issued server command: /emf shop
[02:25:09] [Async Chat Thread - #9/INFO]: <[ADMIN] MarcusSaugmann> dg
[02:25:22] [Server thread/INFO]: LucasSaugmann issued server command: /dg
[02:25:22] [Server thread/INFO]: LucasSaugmann issued mycmd (dailybonus) command /dg
[02:25:22] [Server thread/INFO]: [MyCmd] Created a new MyCommand/playerdata/ file for 47692e0f-ff40-4edc-957c-e7f9798f11e6
[02:25:33] [Server thread/INFO]: LucasSaugmann issued server command: /dg
[02:25:33] [Server thread/INFO]: LucasSaugmann issued mycmd (dailybonus) command /dg
[02:25:36] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-847.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[02:25:39] [Async Chat Thread - #8/INFO]: <[ADMIN] MarcusSaugmann> tablet
[02:25:43] [Server thread/INFO]: MarcusSaugmann issued server command: /tablet
[02:25:43] [Server thread/INFO]: MarcusSaugmann issued mycmd (tablet) command /tablet
[02:25:43] [Server thread/INFO]: MarcusSaugmann issued server command: /help
[02:25:45] [Server thread/INFO]: LucasSaugmann issued server command: /tablet
[02:25:45] [Server thread/INFO]: LucasSaugmann issued mycmd (tablet) command /tablet
[02:25:45] [Server thread/INFO]: LucasSaugmann issued server command: /help
[02:25:52] [Server thread/INFO]: Saugmann04 issued server command: /tablet
[02:25:52] [Server thread/INFO]: Saugmann04 issued mycmd (tablet) command /tablet
[02:25:52] [Server thread/INFO]: Saugmann04 issued server command: /help
[02:25:58] [Server thread/INFO]: MarcusSaugmann issued server command: /tablet
[02:25:58] [Server thread/INFO]: MarcusSaugmann issued mycmd (tablet) command /tablet
[02:25:58] [Server thread/INFO]: MarcusSaugmann issued server command: /help
[02:26:09] [Server thread/INFO]: MarcusSaugmann issued server command: /tablet
[02:26:09] [Server thread/INFO]: MarcusSaugmann issued mycmd (tablet) command /tablet
[02:26:09] [Server thread/INFO]: MarcusSaugmann issued server command: /help
[02:26:14] [Server thread/INFO]: MarcusSaugmann issued server command: /tablet
[02:26:14] [Server thread/INFO]: MarcusSaugmann issued mycmd (tablet) command /tablet
[02:26:14] [Server thread/INFO]: MarcusSaugmann issued server command: /help
[02:26:28] [Server thread/INFO]: MarcusSaugmann issued server command: /emf shop
[02:26:32] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-845.0,y=67.0,z=-636.0,pitch=0.0,yaw=0.0}
[02:26:32] [Server thread/INFO]: LucasSaugmann issued server command: /tablet
[02:26:32] [Server thread/INFO]: LucasSaugmann issued mycmd (tablet) command /tablet
[02:26:32] [Server thread/INFO]: LucasSaugmann issued server command: /help
[02:27:03] [Server thread/INFO]: MarcusSaugmann issued server command: /spawn
[02:27:03] [Server thread/WARN]: MarcusSaugmann moved too quickly! 883.9598702284237,66.0625,680.2083972765139
[02:27:08] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give LucasSaugmann iron_ingot 1
[02:27:12] [Server thread/INFO]: MarcusSaugmann issued server command: /tp LucasSaugmann
[02:27:12] [Server thread/WARN]: MarcusSaugmann moved too quickly! -875.0,-68.0,-663.0
[02:27:18] [Server thread/INFO]: MarcusSaugmann issued server command: /spawn
[02:27:19] [Server thread/WARN]: MarcusSaugmann moved too quickly! 875.3849046382642,68.0625,664.4917590096782
[02:27:26] [Server thread/INFO]: MarcusSaugmann issued server command: /tp LucasSaugmann MarcusSaugmann
[02:27:26] [Server thread/WARN]: LucasSaugmann moved too quickly! 878.3327025869631,67.0,681.2983413921108
[02:27:48] [Server thread/WARN]: LucasSaugmann moved too quickly! -783.3607709233277,-71.0,-253.8456205901506
[02:28:17] [Server thread/INFO]: LucasSaugmann issued server command: /rtp
[02:28:22] [Server thread/WARN]: LucasSaugmann moved too quickly! 318.01249998807907,0.0,915.8315623555604
[02:28:22] [Craft Scheduler Thread - 75 - BetterRTP/INFO]: [BetterRTP] -Removed a queue Location{world=CraftWorld{name=world},x=-445.5,y=63.0,z=659.5,pitch=2.9999142,yaw=-73.98755}
[02:28:24] [Server thread/INFO]: MarcusSaugmann issued server command: /tp LucasSaugmann MarcusSaugmann
[02:28:33] [Server thread/INFO]: LucasSaugmann issued server command: /rtp
[02:29:08] [Server thread/INFO]: MarcusSaugmann issued server command: /tp 446:63:659
[02:29:22] [Server thread/INFO]: MarcusSaugmann issued server command: /tp marcussaugmann 446:63:659
[02:29:32] [Server thread/INFO]: MarcusSaugmann issued server command: /tp MarcusSaugmann 446:63:659
[02:29:38] [Server thread/INFO]: MarcusSaugmann issued server command: /tp MarcusSaugmann 446:63:659
[02:29:40] [Server thread/INFO]: MarcusSaugmann issued server command: /tp MarcusSaugmann 446
[02:29:50] [Server thread/INFO]: MarcusSaugmann issued server command: /tp MarcusSaugmann 446 63 559
[02:29:56] [Server thread/WARN]: MarcusSaugmann moved too quickly! 1205.5630512903613,0.0,814.3863419355641
[02:30:44] [Server thread/INFO]: MarcusSaugmann issued server command: /tp LucasSaugmann MarcusSaugmann
[02:30:44] [Server thread/WARN]: LucasSaugmann moved too quickly! 1046.9949598886815,-1.0,802.8356994414521
[02:30:55] [Server thread/INFO]: MarcusSaugmann issued server command: /give LucasSaugmann cooked_chicken 1
[02:30:58] [Server thread/INFO]: MarcusSaugmann issued server command: /give LucasSaugmann cooked_beef 1
[02:32:12] [Server thread/INFO]: MarcusSaugmann issued server command: /spawn
[02:32:14] [Server thread/WARN]: MarcusSaugmann moved too quickly! -783.5014482543521,-71.0,-253.9948611589915
[02:32:16] [Server thread/INFO]: MarcusSaugmann issued server command: /quest edit
[02:32:32] [Server thread/ERROR]: [BeautyQuests] Cannot retrieve stage datas for LucasSaugmann (# 4) on stage 0(EAT_DRINK) of quest 9, branch 0
[02:32:51] [Server thread/INFO]: MarcusSaugmann issued server command: /quest edit
[02:33:57] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give Saugmann04 iron_ingot 1
[02:34:00] [Server thread/INFO]: [BeautyQuests] New quest created: Aldrig gå sulten i seng!, ID 9, by MarcusSaugmann
[02:34:00] [Server thread/INFO]: [BeautyQuests] Quest Aldrig gå sulten i seng! has been edited
[02:34:05] [Server thread/INFO]: MarcusSaugmann issued server command: /warp fiskerbyen
[02:34:07] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-847.0,y=68.0,z=-634.0,pitch=0.0,yaw=0.0}
[02:34:30] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give MarcusSaugmann iron_ingot 1
[02:35:17] [Server thread/INFO]: LucasSaugmann issued server command: /home
[02:35:24] [Server thread/ERROR]: [BeautyQuests] Cannot retrieve stage datas for LucasSaugmann (# 4) on stage 0(EAT_DRINK) of quest 9, branch 0
[02:35:39] [Server thread/INFO]: Saugmann04 issued server command: //wand
[02:36:49] [Server thread/INFO]: Saugmann04 issued server command: //replace chiseled_stone_bricks chiseled_stone_bricks,stone_bricks,mossy_cobblestone,mossy_stone_bricks,cobblestone
[02:36:49] [ForkJoinPool-7-worker-2/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R3.PaperweightStarlightRelighterFactory as relighter factory.
[02:37:08] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give LucasSaugmann iron_ingot 1
[02:37:15] [Server thread/INFO]: Saugmann04 issued server command: //undo
[02:37:18] [Server thread/INFO]: Saugmann04 issued server command: //replace chiseled_stone_bricks chiseled_stone_bricks,stone_bricks,mossy_cobblestone,mossy_stone_bricks,cobblestone
[02:37:33] [Server thread/ERROR]: [BeautyQuests] Cannot retrieve stage datas for LucasSaugmann (# 4) on stage 0(EAT_DRINK) of quest 9, branch 0
[02:37:56] [Server thread/INFO]: Saugmann04 issued server command: /portal setlocation forum
[02:38:02] [Server thread/INFO]: Saugmann04 issued server command: /portal setlocation forum
[02:38:34] [Server thread/INFO]: Saugmann04 issued server command: /dh create forum
[02:38:52] [Server thread/INFO]: Saugmann04 issued server command: /dh movehere forum
[02:38:55] [Craft Scheduler Thread - 78 - BeautyQuests/INFO]: [BeautyQuests] Datas saved ~ periodic save
[02:39:00] [Server thread/INFO]: Saugmann04 issued server command: /dh movehere forum
[02:39:35] [Server thread/INFO]: Saugmann04 issued server command: /dh line edit forum 1 1 &e Velkommen til Forum!
[02:39:58] [Server thread/INFO]: Saugmann04 issued server command: /dh l set forum 1 1 &eVelkommen til Forum!
[02:40:21] [Server thread/INFO]: Saugmann04 issued server command: /dh line add forum
[02:40:50] [Server thread/INFO]: Saugmann04 issued server command: /dh line add forum 1 &eGå ud og oplev byen :)
[02:40:51] [Server thread/ERROR]: [BeautyQuests] Cannot retrieve stage datas for LucasSaugmann (# 4) on stage 0(EAT_DRINK) of quest 9, branch 0
[02:41:04] [Server thread/INFO]: MarcusSaugmann issued server command: /emf admin reload
[02:41:06] [Server thread/INFO]: Saugmann04 issued server command: /portal setlocation forum
[02:41:09] [Server thread/INFO]: MarcusSaugmann issued server command: /emf shop
[02:41:15] [Server thread/WARN]: Saugmann04 moved too quickly! -687.4403753089073,76.75081292125532,1217.8745658878613
[02:41:18] [Server thread/WARN]: Saugmann04 moved too quickly! 664.4982248280977,-66.7531999805212,-1133.2847546819962
[02:41:25] [Server thread/INFO]: Saugmann04 issued server command: /shop
[02:41:25] [Server thread/INFO]: Saugmann04 issued mycmd (shoptp) command /shop
[02:41:25] [Server thread/INFO]: Saugmann04 issued server command: /warp shop
[02:41:26] [Server thread/WARN]: Saugmann04 moved too quickly! 664.5335366344034,-66.0,-1133.9994407784568
[02:41:26] [Server thread/WARN]: Saugmann04 moved too quickly! 664.5335366344034,-66.0,-1133.9994407784568
[02:41:26] [Server thread/INFO]: MarcusSaugmann issued server command: /emf admin reload
[02:41:27] [Server thread/INFO]: MarcusSaugmann issued server command: /emf shop
[02:41:34] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-845.0,y=67.0,z=-639.0,pitch=0.0,yaw=0.0}
[02:41:46] [Server thread/WARN]: Saugmann04 moved too quickly! -686.9879328285015,76.21114741277259,1217.7857011538663
[02:41:57] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-846.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[02:42:23] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-846.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[02:42:36] [Server thread/INFO]: Saugmann04 issued server command: //copy
[02:42:46] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-846.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[02:42:56] [Server thread/INFO]: Saugmann04 issued server command: //paste
[02:43:06] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-846.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[02:43:13] [Server thread/INFO]: Saugmann04 issued server command: //undo
[02:43:42] [Server thread/INFO]: Saugmann04 issued server command: //paste
[02:43:44] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-846.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[02:43:57] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give Saugmann04 iron_ingot 1
[02:44:06] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-847.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[02:44:30] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give MarcusSaugmann iron_ingot 1
[02:44:50] [Server thread/ERROR]: [BeautyQuests] Cannot retrieve stage datas for LucasSaugmann (# 4) on stage 0(EAT_DRINK) of quest 9, branch 0
[02:45:00] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-847.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[02:45:24] [Server thread/INFO]: Saugmann04 issued server command: /dh create sfiskerbyen
[02:45:36] [Server thread/INFO]: Saugmann04 issued server command: /dh line edit sfiskerbyen
[02:45:42] [Server thread/INFO]: Saugmann04 issued server command: /dh line edit sfiskerbyen 1 1
[02:45:44] [Server thread/INFO]: Saugmann04 issued server command: /dh l set sfiskerbyen 1 1 Blank Line
[02:45:47] [Server thread/INFO]: MarcusSaugmann issued server command: /tp MarcusSaugmann -847 66 -635
[02:45:47] [Server thread/WARN]: MarcusSaugmann moved too quickly! -26.071653318943277,3.0,11.254471863167055
[02:46:01] [Server thread/INFO]: MarcusSaugmann issued server command: /tp MarcusSaugmann -847 66 -635
[02:46:33] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-847.0,y=68.0,z=-634.0,pitch=0.0,yaw=0.0}
[02:47:07] [Server thread/INFO]: Saugmann04 issued server command: /dh l set sfiskerbyen 1 1 &eGå ind i portalen og
[02:47:08] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give LucasSaugmann iron_ingot 1
[02:47:16] [Server thread/INFO]: Saugmann04 issued server command: /dh l set sfiskerbyen 1 1 &gGå ind i portalen og
[02:47:21] [Server thread/INFO]: Saugmann04 issued server command: /dh l set sfiskerbyen 1 1 &fGå ind i portalen og
[02:47:28] [Server thread/INFO]: Saugmann04 issued server command: /dh l set sfiskerbyen 1 1 &sGå ind i portalen og
[02:47:35] [Server thread/INFO]: Saugmann04 issued server command: /dh l set sfiskerbyen 1 1 &mGå ind i portalen og
[02:47:41] [Server thread/INFO]: Saugmann04 issued server command: /dh l set sfiskerbyen 1 1 &lGå ind i portalen og
[02:47:49] [Server thread/INFO]: Saugmann04 issued server command: /dh l set sfiskerbyen 1 1 &sGå ind i portalen og
[02:47:49] [Server thread/INFO]: MarcusSaugmann issued server command: /shop
[02:47:49] [Server thread/INFO]: MarcusSaugmann issued mycmd (shoptp) command /shop
[02:47:49] [Server thread/INFO]: MarcusSaugmann issued server command: /warp shop
[02:47:54] [Server thread/INFO]: Saugmann04 issued server command: /dh l set sfiskerbyen 1 1 &iGå ind i portalen og
[02:48:01] [Server thread/INFO]: Saugmann04 issued server command: /dh l set sfiskerbyen 1 1 &xGå ind i portalen og
[02:48:10] [Server thread/INFO]: Saugmann04 issued server command: /dh l set sfiskerbyen 1 1 &dGå ind i portalen og
[02:48:27] [Server thread/INFO]: MarcusSaugmann issued server command: /quest create
[02:48:29] [Server thread/INFO]: Saugmann04 issued server command: /dh line add sfiskerbyen 1
[02:48:44] [Server thread/INFO]: MarcusSaugmann issued server command: /npc sel
[02:48:56] [Server thread/INFO]: Saugmann04 issued server command: /dh l set sfiskerbyen 1 2 &doplev Fiskerbyen
[02:48:57] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd add -p kunisaug Decorations
[02:48:57] [Server thread/INFO]: MarcusSaugmann issued server command: /kunisaug Decorations
[02:49:06] [Server thread/INFO]: Saugmann04 issued server command: /portal selectionmode
[02:49:09] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd remove 0
[02:49:12] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd add -p kunisaug Decoration
[02:49:12] [Server thread/INFO]: MarcusSaugmann issued server command: /kunisaug Decoration
[02:49:18] [Server thread/INFO]: MarcusSaugmann issued server command: /npc name
[02:49:23] [Server thread/INFO]: Saugmann04 issued server command: /portal create Sfiskerbyen
[02:49:34] [Server thread/INFO]: Saugmann04 issued server command: /warp Fiskerbyen
[02:49:34] [Server thread/WARN]: Saugmann04 moved too quickly! -968.2232436715175,-9.879503586078556,230.33674707528348
[02:49:35] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-849.0,y=67.0,z=-643.0,pitch=0.0,yaw=0.0}
[02:49:40] [Server thread/INFO]: Saugmann04 issued server command: /portal setlocation sfiskerbyen
[02:49:54] [Server thread/INFO]: Saugmann04 issued server command: /portal setlocation sfiskerbyen
[02:49:57] [Server thread/INFO]: MarcusSaugmann issued server command: /npc skin --url http://textures.minecraft.net/texture/16859f75d99a8be006be27b6eb9d185c4526c0de1b87aab71925e35c5b72b481
[02:49:58] [Server thread/INFO]: Saugmann04 issued server command: /warp medieval
[02:49:58] [Server thread/WARN]: Saugmann04 moved too quickly! 920.833602214954,27.0,-162.33649618220284
[02:49:58] [Server thread/WARN]: Saugmann04 moved too quickly! 920.833602214954,27.0,-162.33649618220284
[02:50:02] [Server thread/INFO]: MarcusSaugmann issued server command: /kunisaug Decoration
[02:50:12] [Server thread/INFO]: Saugmann04 issued server command: /setwarp Forum
[02:50:18] [Server thread/INFO]: MarcusSaugmann issued server command: /quest create
[02:50:18] [Server thread/INFO]: Saugmann04 issued server command: /delwarp medieval
[02:50:32] [Server thread/INFO]: MarcusSaugmann issued server command: /npc sel
[02:50:39] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd add -p kunisaug Redstone
[02:50:41] [Server thread/INFO]: MarcusSaugmann issued server command: /kunisaug Redstone
[02:51:07] [Server thread/INFO]: MarcusSaugmann issued server command: /npc skin --url http://textures.minecraft.net/texture/7da04af922f1f8b046deca85b79bc45f9da9481d80fd035b576670a841eebbef
[02:51:11] [Server thread/INFO]: MarcusSaugmann issued server command: /npc name
[02:51:22] [Server thread/INFO]: MarcusSaugmann issued server command: /npc sel
[02:51:24] [Server thread/INFO]: MarcusSaugmann issued server command: /npc name
[02:51:26] [Server thread/INFO]: MarcusSaugmann issued server command: /npc name
[02:51:33] [Server thread/INFO]: MarcusSaugmann issued server command: /npc rename ingenting
[02:51:54] [Server thread/INFO]: MarcusSaugmann issued server command: /quest create
[02:52:10] [Server thread/INFO]: MarcusSaugmann issued server command: /npc sel
[02:52:11] [Server thread/INFO]: MarcusSaugmann issued server command: /npc name
[02:52:21] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd add -p kunisaug Potions
[02:52:22] [Server thread/INFO]: MarcusSaugmann issued server command: /kunisaug Potions
[02:52:24] [Server thread/INFO]: MarcusSaugmann issued server command: /kunisaug Potions
[02:52:51] [Server thread/INFO]: MarcusSaugmann issued server command: /npc skin --url http://textures.minecraft.net/texture/92af55087c081d98e484e636af67c23c9d94ca3a0aaf69951558557b68cef184
[02:53:06] [Server thread/INFO]: MarcusSaugmann issued server command: /kunisaug mobs
[02:53:10] [Server thread/INFO]: MarcusSaugmann issued server command: /kunisaug Mobs
[02:53:23] [Server thread/INFO]: MarcusSaugmann issued server command: /quest create
[02:53:33] [Server thread/INFO]: Saugmann04 issued server command: //move
[02:53:35] [Server thread/INFO]: Saugmann04 issued server command: //move
[02:53:36] [Server thread/INFO]: MarcusSaugmann issued server command: /npc sel
[02:53:42] [Server thread/INFO]: MarcusSaugmann issued server command: /npc name
[02:53:42] [Server thread/INFO]: Saugmann04 issued server command: //move
[02:53:47] [Server thread/INFO]: Saugmann04 issued server command: //undo
[02:53:49] [Server thread/INFO]: Saugmann04 issued server command: //undo
[02:53:52] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd add -p kunisaug Mobs
[02:53:54] [Server thread/INFO]: Saugmann04 issued server command: //undo
[02:53:55] [Craft Scheduler Thread - 87 - BeautyQuests/INFO]: [BeautyQuests] Datas saved ~ periodic save
[02:53:57] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give Saugmann04 iron_ingot 1
[02:54:02] [Server thread/INFO]: MarcusSaugmann issued server command: /npc skin --url http://textures.minecraft.net/texture/d2935bda58eff007ec8eecf513a5ac19eff3879f9701229d9435dd6c5c967218
[02:54:17] [Server thread/INFO]: Saugmann04 issued server command: //move
[02:54:22] [Server thread/INFO]: Saugmann04 issued server command: //move
[02:54:23] [Server thread/INFO]: MarcusSaugmann issued server command: /quest create
[02:54:25] [Server thread/INFO]: Saugmann04 issued server command: //undo
[02:54:27] [Server thread/INFO]: Saugmann04 issued server command: //undo
[02:54:30] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give MarcusSaugmann iron_ingot 1
[02:54:32] [Server thread/INFO]: Saugmann04 issued server command: //move
[02:54:33] [Server thread/INFO]: MarcusSaugmann issued server command: /npc sel
[02:54:35] [Server thread/INFO]: MarcusSaugmann issued server command: /npc name
[02:54:37] [Server thread/INFO]: Saugmann04 issued server command: //move
[02:54:42] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd add -p kunisaug Dyes
[02:55:03] [Server thread/INFO]: MarcusSaugmann issued server command: /npc skin --url http://textures.minecraft.net/texture/ffd251884f12a323709febaf29fdab1f2299a524767b0d3f0cbf9ecb80b6f6e9
[02:55:22] [Server thread/INFO]: MarcusSaugmann issued server command: /quest create
[02:55:33] [Server thread/INFO]: MarcusSaugmann issued server command: /npc sel
[02:55:34] [Server thread/INFO]: MarcusSaugmann issued server command: /npc name
[02:55:43] [Server thread/INFO]: MarcusSaugmann issued server command: /npc cmd add -p kunisaug Music
[02:55:44] [Server thread/INFO]: MarcusSaugmann issued server command: /kunisaug Music
[02:56:02] [Server thread/INFO]: MarcusSaugmann issued server command: /npc skin --url http://textures.minecraft.net/texture/e6b85a91bcce14ff87473a2f0d110bd5b168d8be0645c82e304c71f854374550
[02:56:05] [Server thread/INFO]: MarcusSaugmann issued server command: /kunisaug Music
[02:56:07] [Server thread/INFO]: MarcusSaugmann issued server command: /kunisaug Dyes
[02:56:22] [Server thread/INFO]: MarcusSaugmann issued server command: /time set sunrise
[02:56:28] [Server thread/INFO]: MarcusSaugmann issued server command: /citizens save
[02:57:08] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give LucasSaugmann iron_ingot 1
[02:57:18] [Server thread/INFO]: MarcusSaugmann issued server command: /tablet
[02:57:18] [Server thread/INFO]: MarcusSaugmann issued mycmd (tablet) command /tablet
[02:57:18] [Server thread/INFO]: MarcusSaugmann issued server command: /help
[02:57:40] [Server thread/INFO]: MarcusSaugmann issued server command: /tablet
[02:57:40] [Server thread/INFO]: MarcusSaugmann issued mycmd (tablet) command /tablet
[02:57:40] [Server thread/INFO]: MarcusSaugmann issued server command: /help
[02:58:22] [Server thread/ERROR]: [BeautyQuests] Cannot retrieve stage datas for LucasSaugmann (# 4) on stage 0(EAT_DRINK) of quest 9, branch 0
[02:59:23] [Server thread/WARN]: Saugmann04 moved too quickly! -963.5365568741942,-8.0625,236.82929272312208
[02:59:23] [Server thread/WARN]: Saugmann04 moved too quickly! -963.5365568741942,-8.0625,236.82929272312208
[02:59:24] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-846.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[02:59:29] [Server thread/INFO]: Saugmann04 issued server command: /warp Forum
[02:59:29] [Server thread/WARN]: Saugmann04 moved too quickly! 926.2524791796985,19.0,-160.42500001192093
[02:59:29] [Server thread/WARN]: Saugmann04 moved too quickly! 926.2524791796985,19.0,-160.42500001192093
[03:00:18] [Server thread/INFO]: MarcusSaugmann issued server command: /hmenu reload
[03:00:18] [Server thread/INFO]: [HelpMenu] Loaded HELP
[03:00:18] [Server thread/INFO]: [HelpMenu] Loaded CONFIG
[03:00:18] [Server thread/INFO]: [HelpMenu] Loaded 0 custom GUIs files
[03:00:18] [Server thread/INFO]: [HelpMenu] Config files reloaded!
[03:00:22] [Server thread/INFO]: MarcusSaugmann issued server command: /tablet
[03:00:22] [Server thread/INFO]: MarcusSaugmann issued mycmd (tablet) command /tablet
[03:00:22] [Server thread/INFO]: MarcusSaugmann issued server command: /help
[03:00:26] [Server thread/INFO]: LucasSaugmann issued server command: /warp Fiskerbyen
[03:00:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-846.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[03:00:38] [Server thread/INFO]: LucasSaugmann issued server command: /emf shop
[03:00:41] [Server thread/INFO]: LucasSaugmann issued server command: /emf shop
[03:00:48] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-847.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[03:00:49] [Server thread/INFO]: MarcusSaugmann issued server command: /hmenu reload
[03:00:49] [Server thread/INFO]: [HelpMenu] Loaded HELP
[03:00:49] [Server thread/INFO]: [HelpMenu] Loaded CONFIG
[03:00:49] [Server thread/INFO]: [HelpMenu] Loaded 0 custom GUIs files
[03:00:49] [Server thread/INFO]: [HelpMenu] Config files reloaded!
[03:00:50] [Server thread/INFO]: MarcusSaugmann issued server command: /tablet
[03:00:50] [Server thread/INFO]: MarcusSaugmann issued mycmd (tablet) command /tablet
[03:00:50] [Server thread/INFO]: MarcusSaugmann issued server command: /help
[03:00:53] [Server thread/INFO]: MarcusSaugmann issued server command: /tablet
[03:00:53] [Server thread/INFO]: MarcusSaugmann issued mycmd (tablet) command /tablet
[03:00:53] [Server thread/INFO]: MarcusSaugmann issued server command: /help
[03:00:54] [Server thread/WARN]: MarcusSaugmann moved too quickly! 10.484982140300758,1.0,0.31301792597656686
[03:00:55] [Server thread/INFO]: LucasSaugmann issued server command: /emf shop
[03:00:57] [Server thread/ERROR]: [BeautyQuests] Cannot retrieve stage datas for LucasSaugmann (# 4) on stage 0(EAT_DRINK) of quest 9, branch 0
[03:01:05] [Server thread/INFO]: LucasSaugmann issued server command: /money
[03:01:16] [Server thread/INFO]: MarcusSaugmann issued server command: /dh list
[03:01:18] [Server thread/INFO]: LucasSaugmann issued server command: /home
[03:01:33] [Server thread/INFO]: MarcusSaugmann issued server command: /dh info sshop
[03:01:37] [Server thread/INFO]: MarcusSaugmann issued server command: /dh info Sshop
[03:01:43] [Server thread/INFO]: LucasSaugmann issued server command: /warp Fiskerbyen
[03:01:51] [Server thread/INFO]: Saugmann04 issued server command: //brush flatten
[03:02:05] [Server thread/INFO]: LucasSaugmann issued server command: /warp Gotham
[03:02:13] [Server thread/INFO]: Saugmann04 issued server command: /tp MarcusSaugmann
[03:02:21] [Server thread/INFO]: LucasSaugmann issued server command: /shop
[03:02:21] [Server thread/INFO]: LucasSaugmann issued mycmd (shoptp) command /shop
[03:02:21] [Server thread/INFO]: LucasSaugmann issued server command: /warp shop
[03:02:51] [Server thread/INFO]: Saugmann04 issued server command: /warp Forum
[03:02:59] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Music
[03:03:01] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Dyes
[03:03:12] [Server thread/INFO]: LucasSaugmann issued server command: /warp Fiskerbyen
[03:03:12] [Server thread/WARN]: LucasSaugmann moved too quickly! -259.8034957261949,-84.0,-971.3427300255903
[03:03:33] [Server thread/INFO]: MarcusSaugmann issued server command: /op LucasSaugmann
[03:03:33] [Server thread/INFO]: [MarcusSaugmann: Made LucasSaugmann a server operator]
[03:03:38] [Server thread/INFO]: LucasSaugmann issued server command: /warp Gotham
[03:03:38] [Server thread/WARN]: LucasSaugmann moved too quickly! 499.08117323112185,64.5,190.43848800020407
[03:03:55] [Server thread/INFO]: LucasSaugmann issued server command: /warp Fiskerbyen
[03:03:55] [Server thread/WARN]: LucasSaugmann moved too quickly! -451.06836399245043,-65.0,-197.91261787645033
[03:03:56] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-847.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[03:03:57] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give Saugmann04 iron_ingot 1
[03:03:57] [Server thread/INFO]: MarcusSaugmann issued server command: /deop LucasSaugmann
[03:03:57] [Server thread/INFO]: [MarcusSaugmann: Made LucasSaugmann no longer a server operator]
[03:04:01] [Server thread/INFO]: MarcusSaugmann issued server command: /warp fiskerbyen
[03:04:01] [Server thread/WARN]: MarcusSaugmann moved too quickly! -250.37246178451585,-84.0,-968.7339023431225
[03:04:30] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give MarcusSaugmann iron_ingot 1
[03:04:36] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-847.0,y=68.0,z=-634.0,pitch=0.0,yaw=0.0}
[03:04:42] [Server thread/INFO]: LucasSaugmann issued server command: /warp Gotham
[03:04:42] [Server thread/WARN]: LucasSaugmann moved too quickly! 478.5737229097041,66.0,178.94284835435462
[03:05:00] [Server thread/INFO]: MarcusSaugmann issued server command: /emf shop
[03:06:05] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-850.0,y=66.0,z=-643.0,pitch=0.0,yaw=0.0}
[03:06:47] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-846.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[03:07:08] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give LucasSaugmann iron_ingot 1
[03:07:10] [Server thread/INFO]: LucasSaugmann issued server command: /shop
[03:07:10] [Server thread/INFO]: LucasSaugmann issued mycmd (shoptp) command /shop
[03:07:10] [Server thread/INFO]: LucasSaugmann issued server command: /warp shop
[03:07:10] [Server thread/WARN]: LucasSaugmann moved too quickly! -153.8090924965864,28.0,800.2474013844355
[03:07:15] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Enchanting
[03:07:25] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-846.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[03:08:04] [Server thread/INFO]: MarcusSaugmann issued server command: /economyshopgui:sreload
[03:08:04] [Server thread/INFO]: [EconomyShopGUI] Using lang-en.yml as language file.
[03:08:04] [Server thread/INFO]: [EconomyShopGUI] Shops.yml has been found!
[03:08:04] [Server thread/INFO]: [EconomyShopGUI] Sections.yml has been found!
[03:08:04] [Server thread/INFO]: [EconomyShopGUI] Successfully hooked into Vault
[03:08:04] [Server thread/INFO]: [EconomyShopGUI] Completed loading '1' economy provider(s) for all 17 shop sections.
[03:08:04] [Server thread/INFO]: [EconomyShopGUI] Using minecraft version 1.19.4...
[03:08:04] [Server thread/INFO]: [EconomyShopGUI] Spawner provider set to DEFAULT in config
[03:08:04] [Server thread/INFO]: [EconomyShopGUI] Using plugin default spawners...
[03:08:04] [Server thread/INFO]: [EconomyShopGUI] Debug mode is enabled.
[03:08:04] [Server thread/INFO]: [EconomyShopGUI] Updating Shop settings...
[03:08:04] [Server thread/INFO]: [EconomyShopGUI] Loading all items...
[03:08:09] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Enchanting
[03:08:14] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-846.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[03:08:35] [Server thread/INFO]: MarcusSaugmann issued server command: /economyshopgui:sreload
[03:08:35] [Server thread/INFO]: [EconomyShopGUI] Using lang-en.yml as language file.
[03:08:35] [Server thread/INFO]: [EconomyShopGUI] Shops.yml has been found!
[03:08:35] [Server thread/INFO]: [EconomyShopGUI] Sections.yml has been found!
[03:08:35] [Server thread/INFO]: [EconomyShopGUI] Successfully hooked into Vault
[03:08:35] [Server thread/INFO]: [EconomyShopGUI] Completed loading '1' economy provider(s) for all 17 shop sections.
[03:08:35] [Server thread/INFO]: [EconomyShopGUI] Using minecraft version 1.19.4...
[03:08:35] [Server thread/INFO]: [EconomyShopGUI] Spawner provider set to DEFAULT in config
[03:08:35] [Server thread/INFO]: [EconomyShopGUI] Using plugin default spawners...
[03:08:35] [Server thread/INFO]: [EconomyShopGUI] Debug mode is enabled.
[03:08:35] [Server thread/INFO]: [EconomyShopGUI] Updating Shop settings...
[03:08:35] [Server thread/INFO]: [EconomyShopGUI] Loading all items...
[03:08:37] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=world},x=-846.0,y=66.0,z=-635.0,pitch=0.0,yaw=0.0}
[03:08:42] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Enchanting
[03:08:49] [Server thread/INFO]: LucasSaugmann issued server command: /home
[03:08:49] [Server thread/WARN]: LucasSaugmann moved too quickly! 131.57041875786,-38.0,-764.3464440848898
[03:08:53] [Server thread/INFO]: Saugmann04 issued server command: //wand
[03:08:55] [Craft Scheduler Thread - 107 - BeautyQuests/INFO]: [BeautyQuests] Datas saved ~ periodic save
[03:09:01] [Server thread/INFO]: MarcusSaugmann issued server command: /shop
[03:09:01] [Server thread/INFO]: MarcusSaugmann issued mycmd (shoptp) command /shop
[03:09:01] [Server thread/INFO]: MarcusSaugmann issued server command: /warp shop
[03:09:07] [Server thread/INFO]: Saugmann04 issued server command: //set air
[03:09:08] [Server thread/ERROR]: [BeautyQuests] Cannot retrieve stage datas for LucasSaugmann (# 4) on stage 0(EAT_DRINK) of quest 9, branch 0
[03:09:12] [Server thread/INFO]: Saugmann04 issued server command: //set air
[03:09:14] [Server thread/INFO]: MarcusSaugmann issued server command: /kunisaug Enchanting
[03:09:19] [Server thread/INFO]: [EconomyShopGUI] MarcusSaugmann sold 555 x Sugar Cane(Farming.24) for $1,387.50 with the sell screen.
[03:09:19] [Server thread/INFO]: Saugmann04 issued server command: //set air
[03:09:24] [Server thread/INFO]: MarcusSaugmann issued server command: /money
[03:09:25] [Server thread/INFO]: Saugmann04 issued server command: //set air
[03:09:25] [Server thread/INFO]: LucasSaugmann issued server command: /shop
[03:09:25] [Server thread/INFO]: LucasSaugmann issued mycmd (shoptp) command /shop
[03:09:25] [Server thread/INFO]: LucasSaugmann issued server command: /warp shop
[03:09:28] [Server thread/INFO]: Saugmann04 issued server command: //set air
[03:09:29] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Enchanting
[03:09:44] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Enchanting
[03:09:53] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Enchanting
[03:10:13] [Server thread/INFO]: [EconomyShopGUI] LucasSaugmann sold 863 x Melon Slice(Farming.18) for $2,157.50 with the sell screen.
[03:10:14] [Server thread/INFO]: Saugmann04 issued server command: //set stone_bricks
[03:10:20] [Server thread/INFO]: LucasSaugmann issued server command: /money
[03:10:20] [Server thread/INFO]: MarcusSaugmann issued server command: /money
[03:10:32] [Server thread/INFO]: MarcusSaugmann issued server command: /citizens reload
[03:10:33] [Server thread/INFO]: LucasSaugmann issued server command: /home
[03:10:33] [Server thread/WARN]: LucasSaugmann moved too quickly! 137.7811833706063,-38.0,-765.0256367798715
[03:10:33] [Server thread/INFO]: MarcusSaugmann issued server command: /citizens reload
[03:10:33] [Server thread/WARN]: [BeautyQuests] Citizens has been reloaded whereas it is highly not recommended for plugins compatibilities. Unexpected behaviors may happen.
[03:10:35] [Server thread/INFO]: LucasSaugmann issued server command: /shop
[03:10:35] [Server thread/INFO]: LucasSaugmann issued mycmd (shoptp) command /shop
[03:10:35] [Server thread/INFO]: LucasSaugmann issued server command: /warp shop
[03:10:35] [Server thread/WARN]: LucasSaugmann moved too quickly! -127.0,39.5,765.0
[03:10:53] [Server thread/INFO]: LucasSaugmann issued server command: /kunisaug Food
[03:11:04] [Server thread/INFO]: LucasSaugmann issued server command: /money
[03:11:45] [Server thread/INFO]: MarcusSaugmann issued server command: /tp2p Saugmann04
[03:11:57] [Server thread/INFO]: LucasSaugmann issued server command: /shop
[03:11:57] [Server thread/INFO]: LucasSaugmann issued mycmd (shoptp) command /shop
[03:11:57] [Server thread/INFO]: LucasSaugmann issued server command: /warp shop
[03:11:58] [Server thread/WARN]: LucasSaugmann moved too quickly! 277.9492969363479,81.0,987.7313783910473
[03:12:01] [Server thread/INFO]: MarcusSaugmann issued server command: /tp2p Saugmann04
[03:12:23] [Server thread/INFO]: MarcusSaugmann issued server command: /rp wand
[03:13:08] [Server thread/INFO]: MarcusSaugmann issued server command: /rp claim Forum
[03:13:18] [Server thread/INFO]: MarcusSaugmann issued server command: /rp addadmin Saugmann04
[03:13:33] [Server thread/INFO]: MarcusSaugmann issued server command: /rp removeleader MarcusSaugmann
[03:13:39] [Server thread/INFO]: MarcusSaugmann issued server command: /rp addleader Saugmann04
[03:13:41] [Server thread/INFO]: MarcusSaugmann issued server command: /rp removeleader MarcusSaugmann
[03:13:57] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give Saugmann04 iron_ingot 1
[03:14:03] [Server thread/WARN]: MarcusSaugmann moved too quickly! -687.3952486557766,76.9375,1217.8740840048422
[03:14:07] [Server thread/INFO]: MarcusSaugmann issued server command: /tp2p Saugmann04
[03:14:16] [Server thread/INFO]: MarcusSaugmann issued server command: /dh list
[03:14:30] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give MarcusSaugmann iron_ingot 1
[03:14:37] [Server thread/INFO]: MarcusSaugmann issued server command: /dh line edit Sshop 1 2
[03:14:42] [Server thread/ERROR]: [BeautyQuests] Cannot retrieve stage datas for LucasSaugmann (# 4) on stage 0(EAT_DRINK) of quest 9, branch 0
[03:14:55] [Server thread/ERROR]: [BeautyQuests] Cannot retrieve stage datas for LucasSaugmann (# 4) on stage 0(EAT_DRINK) of quest 9, branch 0
[03:15:04] [Server thread/INFO]: MarcusSaugmann issued server command: /dh l set Sshop 1 2 &doplev Shoppingområdet!
[03:15:12] [Server thread/INFO]: MarcusSaugmann issued server command: /dh center Sshop
[03:15:17] [Server thread/INFO]: MarcusSaugmann issued server command: /dh list
[03:15:41] [Server thread/INFO]: LucasSaugmann issued server command: /shop
[03:15:41] [Server thread/INFO]: LucasSaugmann issued mycmd (shoptp) command /shop
[03:15:41] [Server thread/INFO]: LucasSaugmann issued server command: /warp shop
[03:15:41] [Server thread/WARN]: LucasSaugmann moved too quickly! -671.8355999691082,76.0,1156.1009313543968
[03:15:44] [Server thread/INFO]: MarcusSaugmann issued server command: /dh about sfiskerbyen
[03:15:51] [Server thread/INFO]: MarcusSaugmann issued server command: /dh info sfiskerbyen
[03:16:09] [Server thread/INFO]: MarcusSaugmann issued server command: /dh center sfiskerbyen
[03:16:33] [Server thread/INFO]: MarcusSaugmann lost connection: Disconnected
[03:16:33] [Server thread/INFO]: MarcusSaugmann left the game
[03:16:34] [Server thread/INFO]: LucasSaugmann lost connection: Disconnected
[03:16:34] [Server thread/INFO]: LucasSaugmann left the game