Paste #71443: Untitled Paste

Date: 2020/06/26 11:52:04 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
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
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531


[11:34:33] [Server thread/INFO]: Starting minecraft server version 1.14.4
[11:34:33] [Server thread/INFO]: Loading properties
[11:34:34] [Server thread/INFO]: This server is running Paper version git-Paper-243 (MC: 1.14.4) (Implementing API version 1.14.4-R0.1-SNAPSHOT)
[11:34:34] [Server thread/INFO]: Debug logging is disabled
[11:34:34] [Server thread/INFO]: Server Ping Player Sample Count: 12
[11:34:34] [Server thread/INFO]: Using 4 threads for Netty based IO
[11:34:34] [Server thread/INFO]: Default game type: SURVIVAL
[11:34:34] [Server thread/INFO]: Generating keypair
[11:34:34] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25594
[11:34:34] [Server thread/INFO]: Using epoll channel type
[11:34:37] [Server thread/WARN]: Plugin BetterChairs v0.10.1 does not specify an api-version.
[11:34:37] [Server thread/WARN]: Plugin NametagEdit v4.4.6 does not specify an api-version.
[11:34:37] [Server thread/WARN]: Plugin Noboom v1.0 does not specify an api-version.
[11:34:37] [Server thread/WARN]: Plugin EasyWhitelist v1.0.1 does not specify an api-version.
[11:34:37] [Server thread/WARN]: Plugin PinataParty v1.3.2 does not specify an api-version.
[11:34:37] [Server thread/WARN]: Plugin AntiAFKPro v2.1.1 does not specify an api-version.
[11:34:37] [Server thread/WARN]: Plugin sleep-most v4.2.1 does not specify an api-version.
[11:34:37] [Server thread/WARN]: Plugin ToolAndFoodFX v1.8 does not specify an api-version.
[11:34:37] [Server thread/WARN]: Plugin MoneyNote v1.2.9 does not specify an api-version.
[11:34:37] [Server thread/WARN]: Plugin ChestCommands v3.1.4 does not specify an api-version.
[11:34:38] [Server thread/WARN]: Plugin ActionHealth v3.4.8 does not specify an api-version.
[11:34:38] [Server thread/WARN]: Plugin CommandNPC v1.9.1 does not specify an api-version.
[11:34:38] [Server thread/INFO]: [EntityTrackerFixer] Loading EntityTrackerFixer v1.2.2
[11:34:38] [Server thread/INFO]: [BlockLocker] Loading BlockLocker v1.7.3
[11:34:38] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.10.6
[11:34:38] [Server thread/INFO]: [UltimateAutoRestart] Loading UltimateAutoRestart vBuild 38
[11:34:38] [Server thread/INFO]: [PlugMan] Loading PlugMan v2.1.7
[11:34:38] [Server thread/INFO]: [BetterChairs] Loading BetterChairs v0.10.1
[11:34:38] [Server thread/INFO]: [newtLib] Loading newtLib v1.5.0
[11:34:38] [Server thread/INFO]: [NametagEdit] Loading NametagEdit v4.4.6
[11:34:38] [Server thread/INFO]: [NoPlugins] Loading NoPlugins v7.2
[11:34:38] [Server thread/INFO]: [SkinsRestorer] Loading SkinsRestorer v13.7.9
[11:34:38] [Server thread/INFO]: [Noboom] Loading Noboom v1.0
[11:34:38] [Server thread/INFO]: [TabCompleteFilter] Loading TabCompleteFilter v1.2
[11:34:38] [Server thread/INFO]: [RandomTeleport] Loading RandomTeleport v2.5.1
[11:34:38] [Server thread/INFO]: [EasyBackupCore] Loading EasyBackupCore v3.0.7
[11:34:38] [Server thread/INFO]: [EasyWhitelist] Loading EasyWhitelist v1.0.1
[11:34:38] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v3.0.1
[11:34:38] [Server thread/INFO]: [ViaVersion] ViaVersion 3.0.1 is now loaded, injecting!
[11:34:39] [pool-8-thread-1/INFO]: [ViaVersion] Loading 1.12.2 -> 1.13 mappings...
[11:34:39] [pool-8-thread-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[11:34:39] [pool-8-thread-3/INFO]: [ViaVersion] Loading 1.14.4 -> 1.15 mappings...
[11:34:39] [pool-8-thread-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[11:34:39] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v2.17.5
[11:34:39] [Server thread/INFO]: [LagAssist] Loading LagAssist v2.19.0
[11:34:39] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.0.72
[11:34:39] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.1.0;8e55131
[11:34:40] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@1d80384d]
[11:34:40] [Server thread/INFO]: [OpenInv] Loading OpenInv v4.1.1
[11:34:40] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.1.6
[11:34:40] [Server thread/INFO]: [UltimateTimber] Loading UltimateTimber v2.0.6
[11:34:40] [Server thread/INFO]: [PinataParty] Loading PinataParty v1.3.2
[11:34:40] [Server thread/INFO]: [IllegalStack] Loading IllegalStack v2.1.2b
[11:34:40] [Server thread/INFO]: [EasyBackup] Loading EasyBackup v3.0.6
[11:34:40] [Server thread/INFO]: [ItemEdit] Loading ItemEdit v1.7.4
[11:34:40] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.5.0
[11:34:41] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.1.0-b775
[11:34:41] [Server thread/INFO]: [InventoryRollback] Loading InventoryRollback v1.3.7
[11:34:41] [Server thread/INFO]: [AntiAFKPro] Loading AntiAFKPro v2.1.1
[11:34:41] [Server thread/INFO]: [Emotes] Loading Emotes v4.2.0
[11:34:41] [Server thread/INFO]: [sleep-most] Loading sleep-most v4.2.1
[11:34:41] [Server thread/INFO]: [ToolAndFoodFX] Loading ToolAndFoodFX v1.8
[11:34:41] [Server thread/INFO]: [LimitPillagers] Loading LimitPillagers v2.12.0
[11:34:41] [Server thread/INFO]: [StaffChat] Loading StaffChat v1.3.1
[11:34:41] [Server thread/INFO]: [Vault] Loading Vault v1.7.2-b107
[11:34:41] [Server thread/INFO]: [CommandButtons] Loading CommandButtons v4.2.1
[11:34:41] [Server thread/INFO]: [MoneyNote] Loading MoneyNote v1.2.9
[11:34:41] [Server thread/INFO]: [CrazyCrates] Loading CrazyCrates v1.10-RELEASE
[11:34:41] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.2-SNAPSHOT;bf2593e
[11:34:41] [Server thread/INFO]: [ChestCommands] Loading ChestCommands v3.1.4
[11:34:41] [Server thread/INFO]: [PlayerKits] Loading PlayerKits v2.4.1
[11:34:41] [Server thread/INFO]: [Essentials] Loading Essentials v2.17.1.0
[11:34:41] [Server thread/INFO]: [MarriageMaster] Loading MarriageMaster v2.2-Release
[11:34:41] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[11:34:41] [Server thread/INFO]: [LiteBans] Loading LiteBans v2.5
[11:34:41] [Server thread/INFO]: [newtShop] Loading newtShop v2.0.3
[11:34:41] [Server thread/INFO]: [ActionHealth] Loading ActionHealth v3.4.8
[11:34:41] [Server thread/INFO]: [SilkSpawners] Loading SilkSpawners v6.3.1
[11:34:41] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.26-SNAPSHOT (build 1854)
[11:34:41] [Server thread/INFO]: [Shopkeepers] Loading Shopkeepers v2.9.3
[11:34:41] [Server thread/INFO]: [Shopkeepers] Loading config.
[11:34:41] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[11:34:41] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[11:34:41] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.17.1.0
[11:34:41] [Server thread/INFO]: [CitizensText] Loading CitizensText v1.17.1
[11:34:41] [Server thread/INFO]: [EliteMobs] Loading EliteMobs v7.1.0
[11:34:41] [Server thread/INFO]: [EliteMobs] WorldGuard detected.
[11:34:41] [Server thread/INFO]: [EliteMobs] Enabling flags:
[11:34:41] [Server thread/INFO]: [EliteMobs] - elitemob-spawning
[11:34:41] [Server thread/INFO]: [EliteMobs] - elitemob-only-spawning
[11:34:41] [Server thread/INFO]: [Quests] Loading Quests v3.9.4-b${env.BUILD_NUMBER}
[11:34:41] [Server thread/INFO]: [CommandNPC] Loading CommandNPC v1.9.1
[11:34:41] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.17.1.0
[11:34:41] [Server thread/INFO]: [PvPManager] Loading PvPManager v3.7.14
[11:34:41] [Server thread/INFO]: [TitleManager] Loading TitleManager v2.2.7
[11:34:41] [Server thread/INFO]: [RedProtect] Loading RedProtect v7.6.7
[11:34:41] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[11:34:41] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.7.3
[11:34:41] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.0.72
[11:34:41] [Server thread/INFO]:         __    
[11:34:41] [Server thread/INFO]:   |    |__)   LuckPerms v5.0.72
[11:34:41] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[11:34:41] [Server thread/INFO]: 
[11:34:41] [Server thread/INFO]: [LuckPerms] Loading configuration...
[11:34:42] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[11:34:43] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[11:34:43] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[11:34:44] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2462ms)
[11:34:44] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.1.0;8e55131
[11:34:44] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[11:34:44] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_14_R4 as the Bukkit adapter
[11:34:45] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.5.0
[11:34:45] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[11:34:45] [Server thread/INFO]: [LimitPillagers] Enabling LimitPillagers v2.12.0
[11:34:45] [Server thread/INFO]: [LimitPillagers] Registering metrics...
[11:34:45] [Server thread/INFO]: [LimitPillagers] Registering commands...
[11:34:45] [Server thread/INFO]: [LimitPillagers] Registering listeners...
[11:34:45] [Server thread/INFO]: [LimitPillagers] Loading config.yml...
[11:34:45] [Server thread/INFO]: [LimitPillagers] 
[11:34:45] [Server thread/INFO]: [LimitPillagers] If you are still having Pillager related lag after using this plugin you can do the following:
[11:34:45] [Server thread/INFO]: [LimitPillagers] - Increase the limiter check distance between Pillagers
[11:34:45] [Server thread/INFO]: [LimitPillagers] - Lower the stop at amount of the limiter
[11:34:45] [Server thread/INFO]: [LimitPillagers] - Enable the remover which will remove all Pillagers in future loaded chunks (Good for if you have already have mass pillagers saved in unloaded chunks before this plugin)
[11:34:45] [Server thread/INFO]: [LimitPillagers] - Enable the stopper to remove all future Pillager spawners (Last resort)
[11:34:45] [Server thread/INFO]: [LimitPillagers] 
[11:34:45] [Server thread/INFO]: [LimitPillagers] I also HIGHLY recommend to follow this guide for an overall increase of performance: https://www.spigotmc.org/threads/283181/
[11:34:45] [Server thread/INFO]: [LimitPillagers] 
[11:34:45] [Server thread/INFO]: [LimitPillagers] Checking for updates...
[11:34:45] [Server thread/INFO]: [LimitPillagers] There is an update available ( 2.12.0 > 2.13.0 ), go download it at https://www.spigotmc.org/resources/69733
[11:34:45] [Server thread/INFO]: [LimitPillagers] 
[11:34:45] [Server thread/INFO]: [LimitPillagers] LimitPillagers v2.12.0 Enabled in 299 ms
[11:34:45] [Server thread/INFO]: [Vault] Enabling Vault v1.7.2-b107
[11:34:45] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[11:34:46] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[11:34:46] [Server thread/INFO]: [Vault] Enabled Version 1.7.2-b107
[11:34:46] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[11:34:46] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[11:34:46] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[11:34:46] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[11:34:46] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[11:34:46] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[11:34:46] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[11:34:46] [Server thread/INFO]: Preparing level "world"
[11:34:46] [Server thread/INFO]: Reloading ResourceManager: Default, bukkit
[11:34:51] [Server thread/INFO]: Loaded 6 recipes
[11:34:51] [Server thread/INFO]: -------- World Settings For [world] --------
[11:34:51] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313Ocean: 14357621 Shipwreck: 165745295 Slime: 987234911
[11:34:51] [Server thread/INFO]: Max TNT Explosions: 100
[11:34:51] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[11:34:51] [Server thread/INFO]: Experience Merge Radius: 4.0
[11:34:51] [Server thread/INFO]: Mob Spawn Range: 6
[11:34:51] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[11:34:51] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[11:34:51] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[11:34:51] [Server thread/INFO]: Cactus Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Cane Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Melon Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Sapling Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Carrot Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Potato Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Wheat Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Vine Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Kelp Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: View Distance: 8
[11:34:51] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[11:34:51] [Server thread/INFO]: Item Despawn Rate: 6000
[11:34:51] [Server thread/INFO]: Item Merge Radius: 6.0
[11:34:51] [Server thread/INFO]: Arrow Despawn Rate: 300
[11:34:51] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[11:34:51] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[11:34:51] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[11:34:51] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[11:34:51] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313Ocean: 14357621 Shipwreck: 165745295 Slime: 987234911
[11:34:51] [Server thread/INFO]: Max TNT Explosions: 100
[11:34:51] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[11:34:51] [Server thread/INFO]: Experience Merge Radius: 4.0
[11:34:51] [Server thread/INFO]: Mob Spawn Range: 6
[11:34:51] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false
[11:34:51] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[11:34:51] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[11:34:51] [Server thread/INFO]: Cactus Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Cane Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Melon Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Sapling Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Carrot Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Potato Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Wheat Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Vine Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: Kelp Growth Modifier: 100%
[11:34:51] [Server thread/INFO]: View Distance: 8
[11:34:51] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[11:34:51] [Server thread/INFO]: Item Despawn Rate: 6000
[11:34:51] [Server thread/INFO]: Item Merge Radius: 6.0
[11:34:51] [Server thread/INFO]: Arrow Despawn Rate: 300
[11:34:51] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[11:34:51] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[11:34:51] [Server thread/INFO]: Preparing start region for dimension 'world'/minecraft:overworld
[11:34:52] [Server thread/INFO]: Preparing spawn area: 0%
[11:34:52] [Server thread/INFO]: Preparing spawn area: 19%
[11:34:52] [Server thread/INFO]: Preparing spawn area: 51%
[11:34:53] [Server thread/INFO]: Preparing spawn area: 78%
[11:34:53] [Server thread/INFO]: Preparing spawn area: 100%
[11:34:54] [Server thread/INFO]: Loaded 441 spawn chunks for world world
[11:34:54] [Server thread/INFO]: Time elapsed: 2162 ms
[11:34:54] [Server thread/INFO]: Preparing start region for dimension 'world_nether'/minecraft:the_nether
[11:34:54] [Server thread/INFO]: Preparing spawn area: 0%
[11:34:54] [Server-Worker-1/INFO]: Preparing spawn area: 100%
[11:34:55] [Server-Worker-1/INFO]: Preparing spawn area: 100%
[11:34:55] [Server-Worker-2/INFO]: Preparing spawn area: 100%
[11:34:56] [Server-Worker-2/INFO]: Preparing spawn area: 100%
[11:34:56] [Server thread/INFO]: Loaded 441 spawn chunks for world world_nether
[11:34:56] [Server thread/INFO]: Time elapsed: 2082 ms
[11:34:56] [Server thread/INFO]: [EntityTrackerFixer] Enabling EntityTrackerFixer v1.2.2
[11:34:56] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.10.6
[11:34:56] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[11:34:56] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 38
[11:34:56] [Server thread/INFO]:  
[11:34:56] [Server thread/INFO]: UltimateAutoRestart Build 38, a free resource by Norska - Executing startup sequence...
[11:34:56] [Server thread/INFO]: [+] Registered hashmaps (took 0ms)
[11:34:56] [Server thread/INFO]: [+] Checking for PlaceholderAPI...
[11:34:56] [Server thread/INFO]: [+] Success! Hooked into PlaceholderAPI!
[11:34:56] [Server thread/INFO]: [+] Registered commands (took 0ms)
[11:34:56] [Server thread/INFO]: [+] Registered listeners (took 0ms)
[11:34:56] [Server thread/INFO]:  
[11:34:56] [Server thread/INFO]: [+] Completed startup. Enjoy the plugin!
[11:34:56] [Server thread/INFO]:  
[11:34:56] [Server thread/INFO]: [PlugMan] Enabling PlugMan v2.1.7
[11:34:56] [Server thread/INFO]: [BetterChairs] Enabling BetterChairs v0.10.1*
[11:34:56] [Server thread/INFO]: [BetterChairs] Your server is running version v1_14_R1
[11:34:56] [Server thread/INFO]: [BetterChairs] NMS hooked !
[11:34:56] [Server thread/INFO]: [newtLib] Enabling newtLib v1.5.0
[11:34:56] [Server thread/INFO]: An update was found! New version: 2020-05-16 download: https://www.spigotmc.org/resources/74346
[11:34:56] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.4.6*
[11:34:56] [Server thread/INFO]: [NametagEdit] Found LuckPerms! Hooking in.
[11:34:56] [Server thread/INFO]: [NoPlugins] Enabling NoPlugins v7.2
[11:34:56] [Server thread/INFO]: [NoPlugins] Minecraft version: v1_14_R1
[11:34:56] [Server thread/INFO]: [NoPlugins] Successfully loaded.
[11:34:56] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v13.7.9
[11:34:56] [Server thread/INFO]: [SkinsRestorer] Using SpigotSkinRefresher
[11:34:56] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_14_R1, using UniversalSkinFactory.
[11:34:56] [Server thread/INFO]: [skinsrestorer.shared.utils.SRLogger] [SkinsRestorer] -------------------------/Warning\-------------------------
[11:34:56] [Server thread/INFO]: [skinsrestorer.shared.utils.SRLogger] [SkinsRestorer] This plugin is running in Bungee mode!
[11:34:56] [Server thread/INFO]: [skinsrestorer.shared.utils.SRLogger] [SkinsRestorer] You have to do all configuration at config file
[11:34:56] [Server thread/INFO]: [skinsrestorer.shared.utils.SRLogger] [SkinsRestorer] inside your Bungeecord server.
[11:34:56] [Server thread/INFO]: [skinsrestorer.shared.utils.SRLogger] [SkinsRestorer] (Bungeecord-Server/plugins/SkinsRestorer/).
[11:34:56] [Server thread/INFO]: [skinsrestorer.shared.utils.SRLogger] [SkinsRestorer] -------------------------\Warning/-------------------------
[11:34:56] [Server thread/INFO]: [Noboom] Enabling Noboom v1.0*
[11:34:56] [Server thread/INFO]: [Noboom] No Boom! enabled by: Jamplifier!
[11:34:56] [Server thread/INFO]: [TabCompleteFilter] Enabling TabCompleteFilter v1.2
[11:34:56] [Server thread/INFO]: [RandomTeleport] Enabling RandomTeleport v2.5.1
[11:34:56] [Server thread/INFO]: [RandomTeleport] Plugin Enabled !
[11:34:56] [Server thread/INFO]: [EasyBackupCore] Enabling EasyBackupCore v3.0.7
[11:34:56] [Server thread/INFO]: [EasyWhitelist] Enabling EasyWhitelist v1.0.1*
[11:34:56] [Server thread/INFO]: EasyWhitelist > Config reloaded.
[11:34:56] [Server thread/INFO]: E-Whitelist > Loaded!
[11:34:56] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v3.0.1
[11:34:56] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v2.17.5
[11:34:56] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled!
[11:34:56] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[11:34:56] [Server thread/INFO]: [LagAssist] Enabling LagAssist v2.19.0
[11:34:56] [Server thread/INFO]: LagAssist » Enabling Systems:
[11:34:56] [Server thread/INFO]:     [✔] Smart Mob Tools.
[11:34:56] [Server thread/INFO]:     [✔] Hopper Manager.
[11:34:56] [Server thread/INFO]:     [✔] Redstone Culler.
[11:34:56] [Server thread/INFO]:     [✔] Physics-Tweaker.
[11:34:56] [Server thread/INFO]:     [✔] Lag Monitor.
[11:34:56] [Server thread/INFO]:     [✔] MapVisualizer.
[11:34:56] [Server thread/INFO]:     [✔] Chunk Analyser.
[11:34:56] [Server thread/INFO]:     [✔] Chunk Limiter.
[11:34:56] [Server thread/INFO]:     [✔] StatsAnalyse.
[11:34:56] [Server thread/INFO]:     [✔] LogCleaner System.
[11:34:56] [Server thread/INFO]:     [✔] Spawner Manager.
[11:34:56] [Server thread/INFO]:     [✔] GUI.
[11:34:56] [Server thread/INFO]:     [✔] Injecting PacketListener.
[11:34:56] [Server thread/INFO]: [OpenInv] Enabling OpenInv v4.1.1
[11:34:56] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.1.6
[11:34:56] [Server thread/INFO]: [ClearLag] Loading modules...
[11:34:56] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[11:34:56] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[11:34:56] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[11:34:56] [Thread-16/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.14]...
[11:34:56] [Server thread/INFO]: [UltimateTimber] Enabling UltimateTimber v2.0.6
[11:34:56] [Server thread/INFO]:  
[11:34:56] [Server thread/INFO]: =============================
[11:34:56] [Server thread/INFO]: UltimateTimber 2.0.6 by Songoda <3!
[11:34:56] [Server thread/INFO]: Action: Enabling...
[11:34:56] [Server thread/INFO]: [UltimateTimber] Loaded locale "en_US"
[11:34:56] [Server thread/INFO]: [SongodaCore] Hooked UltimateTimber.
[11:34:56] [Server thread/INFO]: Hooks: Hooked into CoreProtect!
[11:34:56] [Server thread/INFO]: [UltimateTimber] Loaded locale "es_ES"
[11:34:56] [Server thread/INFO]: =============================
[11:34:56] [Server thread/INFO]:  
[11:34:56] [Server thread/INFO]: [PinataParty] Enabling PinataParty v1.3.2*
[11:34:56] [Thread-16/INFO]: [ClearLag] No updates found!
[11:34:57] [Server thread/INFO]: [PinataParty] Hooked onto PlaceholderAPI
[11:34:57] [Server thread/INFO]: [IllegalStack] Enabling IllegalStack v2.1.2b
[11:34:57] [Server thread/INFO]: [IllegalStack] Chat Components found!  Enabling clickable commands in /istack
[11:34:57] [Server thread/INFO]: [Illegal Stack] - MC Version 1.14+ detected!
[11:34:57] [Server thread/INFO]: Blocking 1.14 villager trade cheesing.
[11:34:57] [Server thread/INFO]: [EasyBackup] Enabling EasyBackup v3.0.6
[11:34:58] [Server thread/INFO]: [EasyBackup] -------------------------------------------------------------
[11:34:58] [Server thread/INFO]: [EasyBackup]  _____                 ______            _                
[11:34:58] [Server thread/INFO]: [EasyBackup] |  ___|                | ___ \          | |               
[11:34:58] [Server thread/INFO]: [EasyBackup] | |__  __ _ ___ _   _  | |_/ / __ _  ___| | ___   _ _ __  
[11:34:58] [Server thread/INFO]: [EasyBackup] |  __|/ _` / __| | | | | ___ \/ _` |/ __| |/ / | | | '_ \ 
[11:34:58] [Server thread/INFO]: [EasyBackup] | |__| (_| \__ \ |_| | | |_/ / (_| | (__|   <| |_| | |_) |
[11:34:58] [Server thread/INFO]: [EasyBackup] \____/\__,_|___/\__, | \____/ \__,_|\___|_|\_\\__,_| .__/ 
[11:34:58] [Server thread/INFO]: [EasyBackup]                  __/ |                             | |    
[11:34:58] [Server thread/INFO]: [EasyBackup]                 |___/                              |_|    
[11:34:58] [Server thread/INFO]: [EasyBackup] 
[11:34:58] [Server thread/INFO]: [EasyBackup] EasyBackup v3.0.6
[11:34:58] [Server thread/INFO]: [EasyBackup] Made by Forseth11, JarFiles
[11:34:58] [Server thread/INFO]: [EasyBackup] Licensed to BlackSpigotMC (00000)
[11:34:58] [Server thread/INFO]: [EasyBackup]  
[11:34:58] [Server thread/INFO]: [EasyBackup] Loading...
[11:34:58] [Server thread/INFO]: [EasyBackup] Loading Configurations...
[11:34:58] [Server thread/INFO]: [EasyBackup] Loading settings.yml config...
[11:34:58] [Server thread/INFO]: [EasyBackup] Loading messages.yml config...
[11:34:58] [Server thread/INFO]: [EasyBackup] Loading Managers...
[11:34:58] [Server thread/INFO]: [EasyBackup] Loading EasyBackup schedule (CRON).
[11:34:58] [Server thread/INFO]: [EasyBackup] Schedule applied: 16 0 0 ? * * * (at 00:00:16)
[11:34:58] [Server thread/INFO]: [EasyBackup] Schedule applied: 4 0 0 ? * * * (at 00:00:04)
[11:34:59] [Server thread/INFO]: [EasyBackup] Starting LagMeter...
[11:34:59] [Server thread/INFO]: [EasyBackup] Loading Commands...
[11:34:59] [Server thread/INFO]: [EasyBackup] Enabling API...
[11:34:59] [Server thread/INFO]: [EasyBackup]  
[11:34:59] [Server thread/INFO]: [EasyBackup] EasyBackup has been loaded successfully. Starting backup schedule and disk protection...
[11:34:59] [Server thread/INFO]: [EasyBackup] Backup Schedule has been started successfully
[11:34:59] [Server thread/INFO]: [EasyBackup] -------------------------------------------------------------
[11:34:59] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v1.7.4
[11:34:59] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.1.0-b775
[11:34:59] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.1.0-b775" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [Rigby, fernferret, lithium3141, main--, dumptruckman].
[11:34:59] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do. The performance impact is negligible.
[11:34:59] [Server thread/INFO]: [Multiverse-Core] 2 - World(s) loaded.
[11:34:59] [Server thread/INFO]: [Multiverse-Core] Version 4.1.0-b775 (API v24) Enabled - By Rigby, fernferret, lithium3141, main-- and dumptruckman
[11:34:59] [Server thread/INFO]: [Multiverse-Core] Help dumptruckman keep this project alive. Become a patron! https://www.patreon.com/dumptruckman
[11:34:59] [Server thread/INFO]: [Multiverse-Core] One time donations are also appreciated: https://www.paypal.me/dumptruckman
[11:34:59] [Server thread/INFO]: [InventoryRollback] Enabling InventoryRollback v1.3.7
[11:34:59] [Server thread/INFO]: Checking for updates...
[11:34:59] [Server thread/INFO]: You are running the latest version.
[11:34:59] [Server thread/INFO]: [AntiAFKPro] Enabling AntiAFKPro v2.1.1*
[11:34:59] [Server thread/INFO]: 
[11:34:59] [Server thread/INFO]: [AntiAFKPro] Initializing Plugin
[11:34:59] [Server thread/INFO]: [AntiAFKPro] config.yml found, loading!
[11:34:59] [Server thread/INFO]: [AntiAFKPro] timeplayedgui.yml found, loading!
[11:34:59] [Server thread/INFO]: [AntiAFKPro] messages.yml found, loading!
[11:34:59] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[11:35:00] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[11:35:00] [Server thread/INFO]: [AntiAFKPro] Initializing Complete in 774 Ms
[11:35:00] [Server thread/INFO]: 
[11:35:00] [Server thread/INFO]: [Emotes] Enabling Emotes v4.2.0
[11:35:00] [Server thread/INFO]: [Emotes] Loaded 21 emotes.
[11:35:00] [Server thread/INFO]: [sleep-most] Enabling sleep-most v4.2.1*
[11:35:00] [Server thread/INFO]: [ToolAndFoodFX] Enabling ToolAndFoodFX v1.8*
[11:35:00] [Server thread/INFO]: [StaffChat] Enabling StaffChat v1.3.1
[11:35:00] [Server thread/INFO]: [CommandButtons] Enabling CommandButtons v4.2.1
[11:35:00] [Server thread/INFO]: [CommandButtons] Beginning to enable CommandButtons...
   _____                                          _ ____        _   _                  
  / ____|                                        | |  _ \      | | | |                 
 | |     ___  _ __ ___  _ __ ___   __ _ _ __   __| | |_) |_   _| |_| |_ ___  _ __  ___ 
 | |    / _ \| '_ ` _ \| '_ ` _ \ / _` | '_ \ / _` |  _ <| | | | __| __/ _ \| '_ \/ __|
 | |___| (_) | | | | | | | | | | | (_| | | | | (_| | |_) | |_| | |_| || (_) | | | \__ \
  \_____\___/|_| |_| |_|_| |_| |_|\__,_|_| |_|\__,_|____/ \__,_|\__|\__\___/|_| |_|___/

[11:35:00] [Server thread/INFO]: [CommandButtons] Loading files...
[11:35:00] [Server thread/INFO]: [CommandButtons] Hooking into Vault...
[11:35:00] [Server thread/INFO]: [CommandButtons] Registering commands...
[11:35:00] [Server thread/INFO]: [CommandButtons] Registering listeners...
[11:35:00] [Server thread/INFO]: [CommandButtons] Starting scheduled tasks...
[11:35:00] [Server thread/INFO]: [CommandButtons] Loading metrics...
[11:35:00] [Server thread/INFO]: [CommandButtons] Checking for updates...
[11:35:00] [Server thread/INFO]: [CommandButtons] Plugin is up-to-date.
[11:35:00] [Server thread/INFO]: [CommandButtons] CommandButtons v4.2.1 by Demeng7215 has been successfully enabled in 34ms.
[11:35:00] [Server thread/INFO]: [MoneyNote] Enabling MoneyNote v1.2.9*
[11:35:00] [Server thread/INFO]: [MoneyNote] Vault was successfully HOOKED!
[11:35:00] [Server thread/INFO]: [MoneyNote] Plugin is up to date! - 1.2.9
[11:35:00] [Server thread/INFO]: [MoneyNote] Successfully loaded.
[11:35:00] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v1.10-RELEASE
[11:35:00] [Server thread/INFO]: [CrazyCrates] Loading the config.yml
[11:35:00] [Server thread/INFO]: [CrazyCrates] Successfully loaded config.yml
[11:35:00] [Server thread/INFO]: [CrazyCrates] Loading the Messages.yml
[11:35:00] [Server thread/INFO]: [CrazyCrates] Successfully loaded Messages.yml
[11:35:00] [Server thread/INFO]: [CrazyCrates] Loading the Locations.yml
[11:35:00] [Server thread/INFO]: [CrazyCrates] Successfully loaded Locations.yml
[11:35:00] [Server thread/INFO]: [CrazyCrates] Loading the data.yml
[11:35:00] [Server thread/INFO]: [CrazyCrates] Successfully loaded data.yml
[11:35:00] [Server thread/INFO]: [CrazyCrates] Loading custom files.
[11:35:00] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Rey.yml.
[11:35:00] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Noble.yml.
[11:35:00] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Ciudadano.yml.
[11:35:00] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Lider.yml.
[11:35:00] [Server thread/INFO]: [CrazyCrates] Finished loading custom files.
[11:35:00] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[11:35:00] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_14_R1! Trying to find NMS support
[11:35:00] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_14_R1' loaded!
[11:35:00] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[11:35:00] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[11:35:00] [Server thread/INFO]: [CrazyCrates] All physical crate locations have been loaded.
[11:35:00] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[11:35:00] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[11:35:00] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[11:35:00] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[11:35:00] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[11:35:00] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[11:35:00] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[11:35:00] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[11:35:00] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[11:35:00] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[11:35:00] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.2-SNAPSHOT;bf2593e
[11:35:00] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[11:35:00] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[11:35:00] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[11:35:00] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[11:35:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[11:35:00] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[11:35:00] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[11:35:00] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[11:35:00] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[11:35:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[11:35:00] [Server thread/INFO]: [WorldGuard] Loading region data...
[11:35:00] [Server thread/INFO]: [ChestCommands] Enabling ChestCommands v3.1.4*
[11:35:00] [Server thread/INFO]: [ChestCommands] PlaceholderAPI was found! External placeholders can be used.
[11:35:01] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.4.1
[11:35:01] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.4.1
[11:35:01] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[11:35:01] [Server thread/INFO]: [Essentials] Enabling Essentials v2.17.1.0
[11:35:01] [Server thread/INFO]: [Essentials] Using 1.8.3+ BlockStateMeta provider as mob spawner provider.
[11:35:01] [Server thread/INFO]: [Essentials] Using 1.13+ flat spawn egg provider as spawn egg provider.
[11:35:01] [Server thread/INFO]: [Essentials] Using 1.9+ BasePotionData provider as potion meta provider.
[11:35:01] [Server thread/INFO]: [Essentials] Loaded 20977 items from items.json.
[11:35:01] [Server thread/INFO]: [Essentials] Using locale es
[11:35:01] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[11:35:01] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[11:35:01] [Server thread/INFO]: [Vault] [Vault][Economy] Essentials Economy hooked.
[11:35:01] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[11:35:01] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.2-Release
[11:35:01] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[11:35:01] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[11:35:01] [Server thread/INFO]: [MarriageMaster] No compatible backpack plugin found.
[11:35:01] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: Spanish  Author: Tomigames123
[11:35:01] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Starting...
[11:35:01] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Start completed.
[11:35:01] [Thread-22/INFO]: [MarriageMaster] Loading marriages ...
[11:35:01] [Thread-22/INFO]: [MarriageMaster] Marriages loaded
[11:35:01] [Thread-22/INFO]: [MarriageMaster] Loading priests ...
[11:35:01] [Thread-22/INFO]: [MarriageMaster] Priests loaded
[11:35:01] [Thread-22/INFO]: [MarriageMaster] Loading players ...
[11:35:01] [Thread-22/INFO]: [MarriageMaster] Players loaded
[11:35:01] [Thread-22/INFO]: [MarriageMaster] Writing marriages into cache ...
[11:35:01] [Thread-22/INFO]: [MarriageMaster] Marriages loaded into cache
[11:35:01] [Thread-22/INFO]: [MarriageMaster] Loading homes ...
[11:35:01] [Thread-22/INFO]: [MarriageMaster] Homes loaded
[11:35:01] [Server thread/INFO]: [MarriageMaster] Item name language file successfully loaded. Language: english  Author: GeorgH93
[11:35:01] [Server thread/INFO]: [MarriageMaster] Loading item translations ...
[11:35:01] [Server thread/INFO]: [MarriageMaster] Finished loading item translations for 830 items.
[11:35:01] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[11:35:01] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[11:35:01] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.5
[11:35:01] [Server thread/INFO]: [LiteBans] Using default database drivers (version:4).
[11:35:01] [Server thread/INFO]: [LiteBans] Loading SQL driver: mysql (com.mysql.cj.jdbc.Driver) version 8.0.18
[11:35:01] [Server thread/INFO]: [LiteBans] Connecting to database...
[11:35:01] [Server thread/INFO]: [LiteBans] Connected to [jdbc:mysql://192.99.134.150:3306/s612_sanciones;useSSL=false&serverTimezone=UTC] (251.8 ms).
[11:35:02] [Server thread/INFO]: [LiteBans] [Sync] Server name: litebans
[11:35:02] [Server thread/INFO]: [LiteBans] [Sync] Server UUID: 8254b8cc744d4b59be715d351d595fea <3>
[11:35:02] [Server thread/INFO]: [LiteBans] Database connection fully initialized (411.7 ms).
[11:35:02] [Server thread/INFO]: [LiteBans] v2.5 enabled. Startup took 487 ms.
[11:35:02] [Server thread/INFO]: [newtShop] Enabling newtShop v2.0.3
[11:35:02] [Server thread/INFO]: An update was found! New version: 2020-05-16 download: https://www.spigotmc.org/resources/74348
[11:35:02] [Server thread/INFO]: [newtShop] Found Essentials! Support for worth.yml prices enabled
[11:35:02] [Server thread/INFO]: [ActionHealth] Enabling ActionHealth v3.4.8*
[11:35:02] [Server thread/INFO]: [SilkSpawners] Enabling SilkSpawners v6.3.1
[11:35:02] [Server thread/INFO]: [SilkSpawners] WorldGuard was found and support is enabled
[11:35:02] [Server thread/INFO]: [SilkSpawners] Loading support for v1_14_R1
[11:35:02] [Server thread/INFO]: [SilkSpawners] AutoUpdater is enabled.
[11:35:02] [Server thread/INFO]: [SilkSpawners] Result from AutoUpdater is: NO_UPDATE
[11:35:02] [Server thread/INFO]: [SilkSpawners] BarAPI is disabled due to config setting.
[11:35:02] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.26-SNAPSHOT (build 1854)
[11:35:02] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.9.3
[11:35:02] [Server thread/INFO]: [Shopkeepers] Loading data of 47 shopkeepers..
[11:35:02] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.17.1.0
[11:35:02] [Server thread/INFO]: [CitizensText] Enabling CitizensText v1.17.1
[11:35:02] [Server thread/INFO]: [CitizensText] PlaceholderAPI hooked !
[11:35:02] [Server thread/INFO]: [EliteMobs] Enabling EliteMobs v7.1.0
[11:35:02] [Server thread/INFO]:  _____ _     _____ _____ ________  ______________  _____
[11:35:02] [Server thread/INFO]: |  ___| |   |_   _|_   _|  ___|  \/  |  _  | ___ \/  ___|
[11:35:02] [Server thread/INFO]: | |__ | |     | |   | | | |__ | .  . | | | | |_/ /\ `--.
[11:35:02] [Server thread/INFO]: |  __|| |     | |   | | |  __|| |\/| | | | | ___ \ `--. \
[11:35:02] [Server thread/INFO]: | |___| |_____| |_  | | | |___| |  | \ \_/ / |_/ //\__/ /
[11:35:02] [Server thread/INFO]: \____/\_____/\___/  \_/ \____/\_|  |_/\___/\____/ \____/
[11:35:02] [Server thread/INFO]: By MagmaGuy
[11:35:03] [Server thread/INFO]: [EliteMobs] WorldGuard compatibility is enabled!
[11:35:03] [Server thread/INFO]: [EliteMobs] Vault detected.
[11:35:03] [Server thread/INFO]: [EliteMobs] Latest public release is 7.1.0
[11:35:03] [Server thread/INFO]: [EliteMobs] Your version is 7.1.0
[11:35:03] [Server thread/INFO]: [EliteMobs] You are running the latest version!
[11:35:03] [Server thread/INFO]: [Quests] Enabling Quests v3.9.4-b${env.BUILD_NUMBER}
[11:35:03] [Server thread/WARN]: [Quests] There are new language phrases in /lang/es-ES/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[11:35:03] [Server thread/WARN]: [Quests] There are new language phrases in /lang/es-ES/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[11:35:03] [Server thread/WARN]: [Quests] There are new language phrases in /lang/es-ES/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[11:35:03] [Server thread/INFO]: [Quests] Loaded language es-ES. Translations via Crowdin
[11:35:03] [Server thread/INFO]: [Quests] Sucessfully linked Quests with Citizens 2.0.26-SNAPSHOT (build 1854)
[11:35:03] [Server thread/INFO]: [CommandNPC] Enabling CommandNPC v1.9.1*
[11:35:03] [Server thread/INFO]: [CommandNPC] Vault compatible economy found! Economy support for CommandNPC has been enabled.
[11:35:03] [Server thread/INFO]: [CommandNPC] Initiating Database
[11:35:03] [Server thread/INFO]: [CommandNPC] Injecting command info into Citizens.
[11:35:03] [Thread-24/INFO]: [CommandNPC] Loading commands complete!
[11:35:03] [Server thread/INFO]: [CommandNPC] CommandNPC successfully loaded!
[11:35:03] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.17.1.0
[11:35:03] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.7.14
[11:35:03] [Server thread/INFO]: [PvPManager] Loaded 0 players from users file
[11:35:03] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[11:35:03] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[11:35:03] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[11:35:03] [Server thread/INFO]: [PvPManager] PvPManager Enabled (56 ms)
[11:35:03] [Server thread/INFO]: [TitleManager] Enabling TitleManager v2.2.7
[11:35:03] [Server thread/INFO]: [RedProtect] Enabling RedProtect v7.6.7
[11:35:04] [Server thread/INFO]: [RedProtect] Server version: 1.14.4-R0.1-SNAPSHOT
[11:35:04] [Server thread/INFO]: [RedProtect] All configurations loaded!
[11:35:04] [Server thread/INFO]: [RedProtect] Language file loaded - Using: EN-US
[11:35:04] [Server thread/INFO]: [RedProtect] Registering commands...
[11:35:04] [Server thread/INFO]: [RedProtect] Registering listeners...
[11:35:04] [Server thread/INFO]: [RedProtect] Vault Economy found. Hooked.
[11:35:04] [Server thread/INFO]: [RedProtect] Vault Permissions found. Hooked.
[11:35:04] [Server thread/INFO]: [RedProtect] PvPManager found. Hooked.
[11:35:04] [Server thread/INFO]: [RedProtect] Essentials found. Hooked.
[11:35:04] [Server thread/INFO]: [RedProtect] WorldEdit found. Hooked.
[11:35:04] [Server thread/INFO]: [RedProtect] WorldGuard version 6 found. Hooked.
[11:35:04] [Server thread/INFO]: [RedProtect] PlaceHolderAPI found. Hooked and registered some chat placeholders.
[11:35:04] [Server thread/INFO]: [RedProtect] - Loading world's regions...
[11:35:04] [Server thread/INFO]: [RedProtect] - Loading world_nether's regions...
[11:35:04] [Server thread/INFO]: [RedProtect] Auto-save Scheduler: Saving file database every 60 minutes!
[11:35:04] [Server thread/INFO]: [RedProtect] There are 132 regions on (file) database!
[11:35:04] [Server thread/INFO]: [RedProtect] Helper version: Latest
[11:35:04] [Server thread/INFO]: [RedProtect] Loading GuiFlags for 1.14+
[11:35:04] [Server thread/INFO]: [RedProtect] Metrics enabled! See our stats here: https://bstats.org/plugin/bukkit/RedProtect
[11:35:04] [Server thread/INFO]: [RedProtect] Loading API...
[11:35:04] [Server thread/INFO]: [RedProtect] API Loaded!
[11:35:04] [Server thread/INFO]:  _   _  _   _   _   _  _ _  _  _ _ _  __
[11:35:04] [Server thread/INFO]: |_| |_ | \ |_| |_| | |  |  |_ |   |    /
[11:35:04] [Server thread/INFO]: | \ |_ |_/ |   | \ |_|  |  |_ |_  |   /
[11:35:04] [Server thread/INFO]: » RedProtect v7.6.7 enabled
[11:35:04] [Server thread/INFO]: 
[11:35:04] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[11:35:04] [Server thread/INFO]: Done (18.910s)! For help, type "help"
[11:35:04] [Server thread/INFO]: Timings Reset
[11:35:04] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.14.4(498)
[11:35:04] [Craft Scheduler Thread - 18/INFO]: [PvPManager] Checking for updates...
[11:35:05] [Craft Scheduler Thread - 14/INFO]: [Vault] Checking for Updates ... 
[11:35:05] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[11:35:05] [Craft Scheduler Thread - 12/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[11:35:05] [Craft Scheduler Thread - 5/INFO]: [PlaceholderAPI] 173 placeholder expansions are available on the cloud.
[11:35:05] [Craft Scheduler Thread - 14/INFO]: [Vault] No new version available
[11:35:05] [Craft Scheduler Thread - 8/INFO]: [SkinsRestorer] ----------------------------------------------
[11:35:05] [Craft Scheduler Thread - 8/INFO]: [SkinsRestorer]     +===============+
[11:35:05] [Craft Scheduler Thread - 8/INFO]: [SkinsRestorer]     | SkinsRestorer |
[11:35:05] [Craft Scheduler Thread - 8/INFO]: [SkinsRestorer]     |---------------|
[11:35:05] [Craft Scheduler Thread - 8/INFO]: [SkinsRestorer]     |  Bungee Mode  |
[11:35:05] [Craft Scheduler Thread - 8/INFO]: [SkinsRestorer]     +===============+
[11:35:05] [Craft Scheduler Thread - 8/INFO]: [SkinsRestorer] ----------------------------------------------
[11:35:05] [Craft Scheduler Thread - 8/INFO]: [SkinsRestorer]     Current version: 13.7.9
[11:35:05] [Craft Scheduler Thread - 8/INFO]: [SkinsRestorer]     This is the latest version!
[11:35:05] [Craft Scheduler Thread - 8/INFO]: [SkinsRestorer] ----------------------------------------------
[11:35:05] [Craft Scheduler Thread - 18/INFO]: [PvPManager] No update found
[11:35:05] [User Authenticator #1/INFO]: UUID of player adayzeus is e928f3d4-1258-3a72-9167-361e89812151
[11:35:05] [Craft Scheduler Thread - 10/INFO]: LagAssist » You are up to date with LagAssist.
[11:35:05] [Server thread/INFO]: [Citizens] Loaded 53 NPCs.
[11:35:05] [Server thread/WARN]: [ViaVersion] You are running a newer version than is released!
[11:35:06] [Thread-26/INFO]: --------------------
[11:35:06] [Thread-26/INFO]: [CoreProtect] Version 2.18.2 is now available.
[11:35:06] [Thread-26/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[11:35:06] [Thread-26/INFO]: --------------------
[11:35:06] [Thread-26/INFO]: [Sponsor] Unlimited Minecraft Hosting: hosthorde.com
[11:35:06] [Thread-26/INFO]: --------------------
[11:35:06] [Server thread/INFO]: adayzeus[/92.58.68.203:43807] logged in with entity id 189 at ([world]310.9027617058404, 31.0, 1758.93797263869)
[11:35:06] [Server thread/INFO]: [+]MOD adayzeus iiVIPii
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 161 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 105 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 170 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 107 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 108 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 110 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 47 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 111 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 113 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 115 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 116 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 117 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 118 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 125 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] NPC with the id 94 doesn't exist. Consider removing this text instance.
[11:35:07] [Server thread/INFO]: [CitizensText] 31 texts loadeds (including 15 dead ones)
[11:35:07] [Server thread/WARN]: me.blackvein.quests.exceptions.QuestFormatException: npc-giver-id has invalid NPC ID, see quest of ID custom1
[11:35:07] [Server thread/WARN]:     at me.blackvein.quests.Quests.loadQuests(Quests.java:1361)
[11:35:07] [Server thread/WARN]:     at me.blackvein.quests.Quests$2.run(Quests.java:518)
[11:35:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftTask.run(CraftTask.java:84)
[11:35:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:452)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.b(MinecraftServer.java:1171)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.DedicatedServer.b(DedicatedServer.java:417)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.a(MinecraftServer.java:1098)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:925)
[11:35:07] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:748)
[11:35:07] [Server thread/WARN]: me.blackvein.quests.exceptions.QuestFormatException: npc-giver-id has invalid NPC ID, see quest of ID custom3
[11:35:07] [Server thread/WARN]:     at me.blackvein.quests.Quests.loadQuests(Quests.java:1361)
[11:35:07] [Server thread/WARN]:     at me.blackvein.quests.Quests$2.run(Quests.java:518)
[11:35:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftTask.run(CraftTask.java:84)
[11:35:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:452)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.b(MinecraftServer.java:1171)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.DedicatedServer.b(DedicatedServer.java:417)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.a(MinecraftServer.java:1098)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:925)
[11:35:07] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:748)
[11:35:07] [Server thread/WARN]: me.blackvein.quests.exceptions.QuestFormatException: npc-giver-id has invalid NPC ID, see quest of ID custom4
[11:35:07] [Server thread/WARN]:     at me.blackvein.quests.Quests.loadQuests(Quests.java:1361)
[11:35:07] [Server thread/WARN]:     at me.blackvein.quests.Quests$2.run(Quests.java:518)
[11:35:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftTask.run(CraftTask.java:84)
[11:35:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:452)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.b(MinecraftServer.java:1171)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.DedicatedServer.b(DedicatedServer.java:417)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.a(MinecraftServer.java:1098)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:925)
[11:35:07] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:748)
[11:35:07] [Server thread/WARN]: me.blackvein.quests.exceptions.QuestFormatException: npc-giver-id has invalid NPC ID, see quest of ID custom5
[11:35:07] [Server thread/WARN]:     at me.blackvein.quests.Quests.loadQuests(Quests.java:1361)
[11:35:07] [Server thread/WARN]:     at me.blackvein.quests.Quests$2.run(Quests.java:518)
[11:35:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftTask.run(CraftTask.java:84)
[11:35:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:452)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.b(MinecraftServer.java:1171)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.DedicatedServer.b(DedicatedServer.java:417)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.a(MinecraftServer.java:1098)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:925)
[11:35:07] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:748)
[11:35:07] [Server thread/WARN]: me.blackvein.quests.exceptions.QuestFormatException: npc-giver-id has invalid NPC ID, see quest of ID custom7
[11:35:07] [Server thread/WARN]:     at me.blackvein.quests.Quests.loadQuests(Quests.java:1361)
[11:35:07] [Server thread/WARN]:     at me.blackvein.quests.Quests$2.run(Quests.java:518)
[11:35:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftTask.run(CraftTask.java:84)
[11:35:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:452)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.b(MinecraftServer.java:1171)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.DedicatedServer.b(DedicatedServer.java:417)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.a(MinecraftServer.java:1098)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:925)
[11:35:07] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:748)
[11:35:07] [Server thread/WARN]: me.blackvein.quests.exceptions.QuestFormatException: npc-giver-id has invalid NPC ID, see quest of ID custom8
[11:35:07] [Server thread/WARN]:     at me.blackvein.quests.Quests.loadQuests(Quests.java:1361)
[11:35:07] [Server thread/WARN]:     at me.blackvein.quests.Quests$2.run(Quests.java:518)
[11:35:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftTask.run(CraftTask.java:84)
[11:35:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:452)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.b(MinecraftServer.java:1171)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.DedicatedServer.b(DedicatedServer.java:417)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.a(MinecraftServer.java:1098)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:925)
[11:35:07] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:748)
[11:35:07] [Server thread/WARN]: me.blackvein.quests.exceptions.QuestFormatException: npc-giver-id has invalid NPC ID, see quest of ID custom12
[11:35:07] [Server thread/WARN]:     at me.blackvein.quests.Quests.loadQuests(Quests.java:1361)
[11:35:07] [Server thread/WARN]:     at me.blackvein.quests.Quests$2.run(Quests.java:518)
[11:35:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftTask.run(CraftTask.java:84)
[11:35:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:452)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.b(MinecraftServer.java:1171)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.DedicatedServer.b(DedicatedServer.java:417)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.a(MinecraftServer.java:1098)
[11:35:07] [Server thread/WARN]:     at net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:925)
[11:35:07] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:748)
[11:35:07] [Server thread/INFO]: [Quests] Loaded 5 Quest(s), 11 Action(s), 757 Phrase(s)
[11:35:07] [Server thread/WARN]: [Quests] Unable to load custom objectives because quest for custom1 was null
[11:35:07] [Server thread/WARN]: [Quests] Unable to load custom objectives because quest for custom3 was null
[11:35:07] [Server thread/WARN]: [Quests] Unable to load custom objectives because quest for custom4 was null
[11:35:07] [Server thread/WARN]: [Quests] Unable to load custom objectives because quest for custom5 was null
[11:35:07] [Server thread/WARN]: [Quests] Unable to load custom objectives because quest for custom7 was null
[11:35:07] [Server thread/WARN]: [Quests] Unable to load custom objectives because quest for custom8 was null
[11:35:07] [Server thread/WARN]: [Quests] Unable to load custom objectives because quest for custom12 was null
[11:35:07] [Server thread/INFO]: [RedProtect] Checking for updates ...
[11:35:08] [Craft Scheduler Thread - 4/INFO]: [RedProtect] No update available.
[11:35:16] [User Authenticator #1/INFO]: UUID of player Tomigames123 is 84f0923b-8ad7-36d3-b25c-9a9169ecf8ba
[11:35:17] [Server thread/INFO]: Tomigames123[/24.162.89.59:55327] logged in with entity id 646 at ([world]309.68088775230484, 31.0, 1760.5703028891126)
[11:35:19] [Server thread/INFO]: CONSOLE issued server command: /broadcast this will execute 15 seconds after server startup
[11:35:20] [Server thread/INFO]: Tomigames123 issued server command: /v
[11:35:21] [User Authenticator #1/INFO]: UUID of player Alionel20039 is 7f170078-ea08-3bce-9168-cedef63746f2
[11:35:21] [Server thread/INFO]: Alionel20039[/181.230.155.207:49823] logged in with entity id 840 at ([world]302.37860812291, 31.0, 1753.414352475611)
[11:35:21] [Server thread/INFO]: [+]Ayudante Alionel20039
[11:35:21] [User Authenticator #1/INFO]: UUID of player ZIZ3R is 99ef1904-e9dd-3b6e-bf7e-c5ed13970a9e
[11:35:21] [Server thread/INFO]: ZIZ3R[/79.156.108.3:59927] logged in with entity id 860 at ([world]288.8835432962739, 60.77220831305696, 1759.8015515399984)
[11:35:21] [Server thread/INFO]: [+]●  Rey ZIZER iiVIPii
[11:35:26] [Async Chat Thread - #0/INFO]: Ayudante Alionel20039 ▸  leather_horse_armor
[11:35:41] [User Authenticator #1/INFO]: UUID of player FennixDZN is 5d686ead-0f5f-325c-a629-60f11d54c7f0
[11:35:41] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@6cb4e599[id=5d686ead-0f5f-325c-a629-60f11d54c7f0,name=FennixDZN,properties={textures=[com.mojang.authlib.properties.Property@3ea16c3d]},legacy=false] (/190.136.162.6:45253): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:35:41] [Server thread/INFO]: com.mojang.authlib.GameProfile@6cb4e599[id=5d686ead-0f5f-325c-a629-60f11d54c7f0,name=FennixDZN,properties={textures=[com.mojang.authlib.properties.Property@3ea16c3d]},legacy=false] (/190.136.162.6:45253) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:35:51] [Server thread/INFO]: ZIZ3R issued server command: /gm s
[11:35:53] [Server thread/INFO]: Alionel20039 issued server command: /npc sel 183
[11:35:55] [User Authenticator #1/INFO]: UUID of player Magumadoragon is 741e3391-7ecb-3fb0-844d-4c3fe7e0ec41
[11:35:55] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@4c67f3ce[id=741e3391-7ecb-3fb0-844d-4c3fe7e0ec41,name=Magumadoragon,properties={textures=[com.mojang.authlib.properties.Property@2aac8391]},legacy=false] (/95.120.189.238:47605): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:35:55] [Server thread/INFO]: com.mojang.authlib.GameProfile@4c67f3ce[id=741e3391-7ecb-3fb0-844d-4c3fe7e0ec41,name=Magumadoragon,properties={textures=[com.mojang.authlib.properties.Property@2aac8391]},legacy=false] (/95.120.189.238:47605) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:35:56] [User Authenticator #1/INFO]: UUID of player Magumadoragon is 741e3391-7ecb-3fb0-844d-4c3fe7e0ec41
[11:35:56] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@6c70e4ae[id=741e3391-7ecb-3fb0-844d-4c3fe7e0ec41,name=Magumadoragon,properties={textures=[com.mojang.authlib.properties.Property@bbf89e0]},legacy=false] (/95.120.189.238:55831): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:35:56] [Server thread/INFO]: com.mojang.authlib.GameProfile@6c70e4ae[id=741e3391-7ecb-3fb0-844d-4c3fe7e0ec41,name=Magumadoragon,properties={textures=[com.mojang.authlib.properties.Property@bbf89e0]},legacy=false] (/95.120.189.238:55831) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:35:59] [Server thread/INFO]: Alionel20039 issued server command: /npc rename
[11:36:03] [Server thread/INFO]: Alionel20039 issued server command: /npc rename Hijo
[11:36:11] [Server thread/INFO]: Alionel20039 issued server command: /npc rename &lH+ijo
[11:36:14] [Server thread/INFO]: Alionel20039 issued server command: /npc rename &lHijo
[11:36:14] [Server thread/INFO]: adayzeus issued server command: /shop
[11:36:22] [User Authenticator #1/INFO]: UUID of player IvanGomezVera is 986fc656-7ce6-349d-8281-9d1e349a3ce2
[11:36:22] [Server thread/INFO]: IvanGomezVera[/187.192.149.35:47247] logged in with entity id 4247 at ([world]320.8563296880817, 63.1875, 1509.6942874777467)
[11:36:29] [Server thread/INFO]: Alionel20039 issued server command: /quests
[11:36:30] [Server thread/INFO]: Tomigames123 issued server command: /home rey
[11:36:31] [Server thread/INFO]: IvanGomezVera issued server command: /v IvanGomezVera
[11:36:34] [Server thread/INFO]: Tomigames123 issued server command: /home evento
[11:36:35] [Server thread/INFO]: Alionel20039 issued server command: /quests equitor
[11:36:36] [Server thread/INFO]: IvanGomezVera issued server command: /gm 0
[11:36:40] [Server thread/INFO]: Alionel20039 issued server command: /quests editor
[11:36:45] [Server thread/INFO]: Tomigames123 issued server command: /warp
[11:36:47] [Server thread/INFO]: Tomigames123 issued server command: /warp desierto
[11:36:49] [Server thread/INFO]: Tomigames123 issued server command: //wand
[11:36:49] [Server thread/INFO]: IvanGomezVera issued server command: /effect give IvanGomezVera minecraft:hunger 10 100
[11:36:49] [Server thread/INFO]: [IvanGomezVera: Applied effect Hunger to IvanGomezVera]
[11:36:50] [Server thread/INFO]: adayzeus issued server command: /warps
[11:36:51] [Server thread/INFO]: adayzeus issued server command: /warp desierto
[11:36:58] [Server thread/INFO]: IvanGomezVera issued server command: /gm 1
[11:37:02] [User Authenticator #1/INFO]: UUID of player FennixDZN is 5d686ead-0f5f-325c-a629-60f11d54c7f0
[11:37:02] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@45cd8de[id=5d686ead-0f5f-325c-a629-60f11d54c7f0,name=FennixDZN,properties={textures=[com.mojang.authlib.properties.Property@13be1833]},legacy=false] (/190.136.162.6:59377): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:37:02] [Server thread/INFO]: com.mojang.authlib.GameProfile@45cd8de[id=5d686ead-0f5f-325c-a629-60f11d54c7f0,name=FennixDZN,properties={textures=[com.mojang.authlib.properties.Property@13be1833]},legacy=false] (/190.136.162.6:59377) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:37:02] [Server thread/INFO]: IvanGomezVera issued server command: /gm 0
[11:37:24] [Server thread/INFO]: Tomigames123 issued server command: /gmsp
[11:37:32] [Async Chat Thread - #1/INFO]: ●  Rey ZIZER iiVIPii ▸  alionel que le estas metiendo el texto?
[11:37:48] [Server thread/INFO]: Tomigames123 issued server command: //pos2
[11:37:49] [Server thread/INFO]: Tomigames123 issued server command: //regen
[11:37:53] [User Authenticator #1/INFO]: UUID of player giovanni is 5956e1ab-ba32-3591-86dc-9d5c9fd30c94
[11:37:59] [Async Chat Thread - #1/INFO]: Fundador Tomigames123 ▸  Lag :v
[11:37:59] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-243 (MC: 1.14.4) ---
[11:37:59] [Paper Watchdog Thread/ERROR]: The server has not responded for 10 seconds! Creating thread dump
[11:37:59] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:37:59] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:37:59] [Paper Watchdog Thread/ERROR]: The server is waiting on these chunks: []
[11:37:59] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:37:59] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:37:59] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
[11:37:59] [Paper Watchdog Thread/ERROR]:     Stack:
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.collection.BlockMap.put(BlockMap.java:153)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.collection.LocatedBlockList.add(LocatedBlockList.java:60)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.history.changeset.BlockOptimizedHistory.add(BlockOptimizedHistory.java:61)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.ChangeSetExtent.setBlock(ChangeSetExtent.java:67)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.MaskingExtent.setBlock(MaskingExtent.java:69)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.validation.BlockChangeLimiter.setBlock(BlockChangeLimiter.java:87)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.validation.DataValidatorExtent.setBlock(DataValidatorExtent.java:64)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.EditSession.setBlock(EditSession.java:656)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.EditSession.setBlock(EditSession.java:699)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_14_R4.regenerate(Spigot_v1_14_R4.java:611)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.BukkitWorld.regenerate(BukkitWorld.java:183)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.command.RegionCommands.regenerateChunk(RegionCommands.java:415)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.command.RegionCommandsRegistration.cmd$_regen(RegionCommandsRegistration.java:568)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.command.RegionCommandsRegistration$$Lambda$2473/263798896.run(Unknown Source)
[11:37:59] [Paper Watchdog Thread/ERROR]:         org.enginehub.piston.CommandManager.execute(CommandManager.java:158)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extension.platform.PlatformCommandManager.handleCommand(PlatformCommandManager.java:486)
[11:37:59] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[11:37:59] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[11:37:59] [Paper Watchdog Thread/ERROR]:         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[11:37:59] [Paper Watchdog Thread/ERROR]:         java.lang.reflect.Method.invoke(Method.java:498)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.MethodEventHandler.dispatch(MethodEventHandler.java:58)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventHandler.handleEvent(EventHandler.java:73)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.dispatch(EventBus.java:193)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.post(EventBus.java:181)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.WorldEditPlugin.onCommand(WorldEditPlugin.java:348)
[11:37:59] [Paper Watchdog Thread/ERROR]:         com.sk89q.bukkit.util.DynamicPluginCommand.execute(DynamicPluginCommand.java:55)
[11:37:59] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:159)
[11:37:59] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.CraftServer.dispatchCommand(CraftServer.java:739)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.handleCommand(PlayerConnection.java:1804)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.a(PlayerConnection.java:1612)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:47)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:5)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils.lambda$ensureMainThread$0(PlayerConnectionUtils.java:23)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils$$Lambda$3921/285776655.run(Unknown Source)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.TickTask.run(SourceFile:18)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.aX(MinecraftServer.java:1029)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.executeNext(MinecraftServer.java:1022)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.sleepForTick(MinecraftServer.java:1006)
[11:37:59] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:929)
[11:37:59] [Paper Watchdog Thread/ERROR]:         java.lang.Thread.run(Thread.java:748)
[11:37:59] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:37:59] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:37:59] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:01] [User Authenticator #1/INFO]: UUID of player FennixDZN is 5d686ead-0f5f-325c-a629-60f11d54c7f0
[11:38:01] [Async Chat Thread - #1/INFO]: Fundador Tomigames123 ▸  ups
[11:38:04] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[11:38:04] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-243 (MC: 1.14.4) ---
[11:38:04] [Paper Watchdog Thread/ERROR]: The server has not responded for 15 seconds! Creating thread dump
[11:38:04] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:04] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:38:04] [Paper Watchdog Thread/ERROR]: The server is waiting on these chunks: []
[11:38:04] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:04] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:38:04] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
[11:38:04] [Paper Watchdog Thread/ERROR]:     Stack:
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.collection.BlockMap$1$1.computeNext(BlockMap.java:244)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.collection.BlockMap$1$1.computeNext(BlockMap.java:235)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.google.common.collect.AbstractIterator.tryToComputeNext(AbstractIterator.java:145)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.google.common.collect.AbstractIterator.hasNext(AbstractIterator.java:140)
[11:38:04] [Paper Watchdog Thread/ERROR]:         java.util.AbstractMap$1$1.hasNext(AbstractMap.java:355)
[11:38:04] [Paper Watchdog Thread/ERROR]:         java.util.AbstractCollection.toArray(AbstractCollection.java:139)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.google.common.collect.Iterables.toArray(Iterables.java:306)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.google.common.collect.ImmutableSortedSet.copyOf(ImmutableSortedSet.java:320)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.google.common.collect.ImmutableSortedSet.copyOf(ImmutableSortedSet.java:344)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.reorder.ChunkBatchingExtent$1.resume(ChunkBatchingExtent.java:97)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.OperationQueue.resume(OperationQueue.java:92)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.Operations.completeBlindly(Operations.java:74)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.EditSession.flushSession(EditSession.java:808)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extension.platform.PlatformCommandManager.handleCommand(PlatformCommandManager.java:532)
[11:38:04] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[11:38:04] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[11:38:04] [Paper Watchdog Thread/ERROR]:         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[11:38:04] [Paper Watchdog Thread/ERROR]:         java.lang.reflect.Method.invoke(Method.java:498)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.MethodEventHandler.dispatch(MethodEventHandler.java:58)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventHandler.handleEvent(EventHandler.java:73)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.dispatch(EventBus.java:193)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.post(EventBus.java:181)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.WorldEditPlugin.onCommand(WorldEditPlugin.java:348)
[11:38:04] [Paper Watchdog Thread/ERROR]:         com.sk89q.bukkit.util.DynamicPluginCommand.execute(DynamicPluginCommand.java:55)
[11:38:04] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:159)
[11:38:04] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.CraftServer.dispatchCommand(CraftServer.java:739)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.handleCommand(PlayerConnection.java:1804)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.a(PlayerConnection.java:1612)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:47)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:5)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils.lambda$ensureMainThread$0(PlayerConnectionUtils.java:23)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils$$Lambda$3921/285776655.run(Unknown Source)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.TickTask.run(SourceFile:18)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.aX(MinecraftServer.java:1029)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.executeNext(MinecraftServer.java:1022)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.sleepForTick(MinecraftServer.java:1006)
[11:38:04] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:929)
[11:38:04] [Paper Watchdog Thread/ERROR]:         java.lang.Thread.run(Thread.java:748)
[11:38:04] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:04] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:38:04] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:09] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-243 (MC: 1.14.4) ---
[11:38:09] [Paper Watchdog Thread/ERROR]: The server has not responded for 20 seconds! Creating thread dump
[11:38:09] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:09] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:38:09] [Paper Watchdog Thread/ERROR]: The server is waiting on these chunks: []
[11:38:09] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:09] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:38:09] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
[11:38:09] [Paper Watchdog Thread/ERROR]:     Stack:
[11:38:09] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.fastutil.ints.Int2ObjectMap.get(Int2ObjectMap.java:186)
[11:38:09] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.collection.BlockMap.get(BlockMap.java:347)
[11:38:09] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.reorder.ChunkBatchingExtent$1.resume(ChunkBatchingExtent.java:102)
[11:38:09] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.OperationQueue.resume(OperationQueue.java:92)
[11:38:09] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.Operations.completeBlindly(Operations.java:74)
[11:38:09] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.EditSession.flushSession(EditSession.java:808)
[11:38:09] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extension.platform.PlatformCommandManager.handleCommand(PlatformCommandManager.java:532)
[11:38:09] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[11:38:09] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[11:38:09] [Paper Watchdog Thread/ERROR]:         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[11:38:09] [Paper Watchdog Thread/ERROR]:         java.lang.reflect.Method.invoke(Method.java:498)
[11:38:09] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.MethodEventHandler.dispatch(MethodEventHandler.java:58)
[11:38:09] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventHandler.handleEvent(EventHandler.java:73)
[11:38:09] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.dispatch(EventBus.java:193)
[11:38:09] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.post(EventBus.java:181)
[11:38:09] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.WorldEditPlugin.onCommand(WorldEditPlugin.java:348)
[11:38:09] [Paper Watchdog Thread/ERROR]:         com.sk89q.bukkit.util.DynamicPluginCommand.execute(DynamicPluginCommand.java:55)
[11:38:09] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:159)
[11:38:09] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.CraftServer.dispatchCommand(CraftServer.java:739)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.handleCommand(PlayerConnection.java:1804)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.a(PlayerConnection.java:1612)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:47)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:5)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils.lambda$ensureMainThread$0(PlayerConnectionUtils.java:23)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils$$Lambda$3921/285776655.run(Unknown Source)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.TickTask.run(SourceFile:18)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.aX(MinecraftServer.java:1029)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.executeNext(MinecraftServer.java:1022)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.sleepForTick(MinecraftServer.java:1006)
[11:38:09] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:929)
[11:38:09] [Paper Watchdog Thread/ERROR]:         java.lang.Thread.run(Thread.java:748)
[11:38:09] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:09] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:38:09] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:14] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-243 (MC: 1.14.4) ---
[11:38:14] [Paper Watchdog Thread/ERROR]: The server has not responded for 25 seconds! Creating thread dump
[11:38:14] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:14] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:38:14] [Paper Watchdog Thread/ERROR]: The server is waiting on these chunks: []
[11:38:14] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:14] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:38:14] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
[11:38:14] [Paper Watchdog Thread/ERROR]:     Stack:
[11:38:14] [Paper Watchdog Thread/ERROR]:         java.util.stream.MatchOps$2MatchSink.accept(MatchOps.java:119)
[11:38:14] [Paper Watchdog Thread/ERROR]:         java.util.Spliterators$IntIteratorSpliterator.tryAdvance(Spliterators.java:1915)
[11:38:14] [Paper Watchdog Thread/ERROR]:         java.util.stream.IntPipeline.forEachWithCancel(IntPipeline.java:162)
[11:38:14] [Paper Watchdog Thread/ERROR]:         java.util.stream.AbstractPipeline.copyIntoWithCancel(AbstractPipeline.java:499)
[11:38:14] [Paper Watchdog Thread/ERROR]:         java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:486)
[11:38:14] [Paper Watchdog Thread/ERROR]:         java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:472)
[11:38:14] [Paper Watchdog Thread/ERROR]:         java.util.stream.MatchOps$MatchOp.evaluateSequential(MatchOps.java:230)
[11:38:14] [Paper Watchdog Thread/ERROR]:         java.util.stream.MatchOps$MatchOp.evaluateSequential(MatchOps.java:196)
[11:38:14] [Paper Watchdog Thread/ERROR]:         java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
[11:38:14] [Paper Watchdog Thread/ERROR]:         java.util.stream.IntPipeline.allMatch(IntPipeline.java:506)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftKey.d(SourceFile:158)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftKey.<init>(SourceFile:34)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftKey.<init>(SourceFile:43)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.ArgumentBlock.<init>(ArgumentBlock.java:51)
[11:38:14] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.block.data.CraftBlockData.newData(CraftBlockData.java:534)
[11:38:14] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.CraftServer.createBlockData(CraftServer.java:1931)
[11:38:14] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.CraftServer.createBlockData(CraftServer.java:1924)
[11:38:14] [Paper Watchdog Thread/ERROR]:         org.bukkit.Bukkit.createBlockData(Bukkit.java:1416)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.coreprotect.worldedit.CoreProtectLogger.onBlockChange(CoreProtectLogger.java:59)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.coreprotect.worldedit.CoreProtectLogger.setBlock(CoreProtectLogger.java:66)
[11:38:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.SetBlockMap.resume(SetBlockMap.java:47)
[11:38:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.reorder.MultiStageReorder$1.resume(MultiStageReorder.java:268)
[11:38:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.OperationQueue.resume(OperationQueue.java:92)
[11:38:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.OperationQueue.resume(OperationQueue.java:92)
[11:38:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.Operations.completeBlindly(Operations.java:74)
[11:38:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.EditSession.flushSession(EditSession.java:808)
[11:38:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extension.platform.PlatformCommandManager.handleCommand(PlatformCommandManager.java:532)
[11:38:14] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[11:38:14] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[11:38:14] [Paper Watchdog Thread/ERROR]:         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[11:38:14] [Paper Watchdog Thread/ERROR]:         java.lang.reflect.Method.invoke(Method.java:498)
[11:38:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.MethodEventHandler.dispatch(MethodEventHandler.java:58)
[11:38:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventHandler.handleEvent(EventHandler.java:73)
[11:38:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.dispatch(EventBus.java:193)
[11:38:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.post(EventBus.java:181)
[11:38:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.WorldEditPlugin.onCommand(WorldEditPlugin.java:348)
[11:38:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.bukkit.util.DynamicPluginCommand.execute(DynamicPluginCommand.java:55)
[11:38:14] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:159)
[11:38:14] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.CraftServer.dispatchCommand(CraftServer.java:739)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.handleCommand(PlayerConnection.java:1804)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.a(PlayerConnection.java:1612)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:47)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:5)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils.lambda$ensureMainThread$0(PlayerConnectionUtils.java:23)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils$$Lambda$3921/285776655.run(Unknown Source)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.TickTask.run(SourceFile:18)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.aX(MinecraftServer.java:1029)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.executeNext(MinecraftServer.java:1022)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.sleepForTick(MinecraftServer.java:1006)
[11:38:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:929)
[11:38:14] [Paper Watchdog Thread/ERROR]:         java.lang.Thread.run(Thread.java:748)
[11:38:14] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:14] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:38:14] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:17] [Async Chat Thread - #1/INFO]: Fundador Tomigames123 ▸  ya
[11:38:19] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-243 (MC: 1.14.4) ---
[11:38:19] [Paper Watchdog Thread/ERROR]: The server has not responded for 30 seconds! Creating thread dump
[11:38:19] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:19] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:38:19] [Paper Watchdog Thread/ERROR]: The server is waiting on these chunks: []
[11:38:19] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:19] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:38:19] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
[11:38:19] [Paper Watchdog Thread/ERROR]:     Stack:
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.World.getChunkAt(World.java:373)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IWorldReader.getChunkAt(IWorldReader.java:80)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.World.getChunkAt(World.java:334)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_14_R4.setBlock(Spigot_v1_14_R4.java:338)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.BukkitWorld.setBlock(BukkitWorld.java:421)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.world.FastModeExtent.setBlock(FastModeExtent.java:112)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.world.WatchdogTickingExtent.setBlock(WatchdogTickingExtent.java:80)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.world.SurvivalModeExtent.setBlock(SurvivalModeExtent.java:100)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.world.BlockQuirkExtent.setBlock(BlockQuirkExtent.java:63)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.world.ChunkLoadingExtent.setBlock(ChunkLoadingExtent.java:70)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.cache.LastAccessExtentCache.setBlock(LastAccessExtentCache.java:74)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.inventory.BlockBagExtent.setBlock(BlockBagExtent.java:114)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.coreprotect.worldedit.CoreProtectLogger.setBlock(CoreProtectLogger.java:67)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.SetBlockMap.resume(SetBlockMap.java:47)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.reorder.MultiStageReorder$1.resume(MultiStageReorder.java:268)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.OperationQueue.resume(OperationQueue.java:92)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.OperationQueue.resume(OperationQueue.java:92)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.Operations.completeBlindly(Operations.java:74)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.EditSession.flushSession(EditSession.java:808)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extension.platform.PlatformCommandManager.handleCommand(PlatformCommandManager.java:532)
[11:38:19] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[11:38:19] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[11:38:19] [Paper Watchdog Thread/ERROR]:         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[11:38:19] [Paper Watchdog Thread/ERROR]:         java.lang.reflect.Method.invoke(Method.java:498)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.MethodEventHandler.dispatch(MethodEventHandler.java:58)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventHandler.handleEvent(EventHandler.java:73)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.dispatch(EventBus.java:193)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.post(EventBus.java:181)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.WorldEditPlugin.onCommand(WorldEditPlugin.java:348)
[11:38:19] [Paper Watchdog Thread/ERROR]:         com.sk89q.bukkit.util.DynamicPluginCommand.execute(DynamicPluginCommand.java:55)
[11:38:19] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:159)
[11:38:19] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.CraftServer.dispatchCommand(CraftServer.java:739)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.handleCommand(PlayerConnection.java:1804)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.a(PlayerConnection.java:1612)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:47)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:5)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils.lambda$ensureMainThread$0(PlayerConnectionUtils.java:23)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils$$Lambda$3921/285776655.run(Unknown Source)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.TickTask.run(SourceFile:18)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.aX(MinecraftServer.java:1029)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.executeNext(MinecraftServer.java:1022)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.sleepForTick(MinecraftServer.java:1006)
[11:38:19] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:929)
[11:38:19] [Paper Watchdog Thread/ERROR]:         java.lang.Thread.run(Thread.java:748)
[11:38:19] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:19] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:38:19] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:38:22] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 32910ms or 658 ticks behind
[11:38:22] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@11fb587a[id=5956e1ab-ba32-3591-86dc-9d5c9fd30c94,name=giovanni,properties={textures=[com.mojang.authlib.properties.Property@64010afc]},legacy=false] (/191.125.5.40:42369): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:38:23] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@6510f9d[id=5d686ead-0f5f-325c-a629-60f11d54c7f0,name=FennixDZN,properties={textures=[com.mojang.authlib.properties.Property@63bbc7b0]},legacy=false] (/190.136.162.6:52283): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:38:23] [Async Chat Thread - #1/INFO]: Fundador Tomigames123 ▸  creo que murio
[11:38:23] [Server thread/INFO]: com.mojang.authlib.GameProfile@11fb587a[id=5956e1ab-ba32-3591-86dc-9d5c9fd30c94,name=giovanni,properties={textures=[com.mojang.authlib.properties.Property@64010afc]},legacy=false] (/191.125.5.40:42369) lost connection: Timed out
[11:38:23] [Server thread/INFO]: com.mojang.authlib.GameProfile@6510f9d[id=5d686ead-0f5f-325c-a629-60f11d54c7f0,name=FennixDZN,properties={textures=[com.mojang.authlib.properties.Property@63bbc7b0]},legacy=false] (/190.136.162.6:52283) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:38:23] [Server thread/WARN]: Alionel20039 moved too quickly! 7.2137961580726255,0.0,7.04537549943916
[11:38:23] [Server thread/INFO]: Tomigames123 issued server command: /tps
[11:38:37] [Server thread/INFO]: [EntityTrackerFixer] Untracked 558 entities in world
[11:38:37] [Server thread/INFO]: [EntityTrackerFixer] Untracked 0 entities in world_nether
[11:38:47] [Server thread/INFO]: adayzeus issued server command: /home home
[11:38:49] [Server thread/INFO]: adayzeus issued server command: /warps
[11:38:52] [Server thread/INFO]: adayzeus issued server command: /warp mercado
[11:38:56] [Server thread/INFO]: Tomigames123 issued server command: //pos1
[11:38:57] [Server thread/INFO]: [EntityTrackerFixer] Untracked 171 entities in world
[11:38:57] [Server thread/INFO]: [EntityTrackerFixer] Untracked 0 entities in world_nether
[11:39:00] [User Authenticator #1/INFO]: UUID of player giovanni is 5956e1ab-ba32-3591-86dc-9d5c9fd30c94
[11:39:00] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@49a39db0[id=5956e1ab-ba32-3591-86dc-9d5c9fd30c94,name=giovanni,properties={textures=[com.mojang.authlib.properties.Property@6759c304]},legacy=false] (/191.125.5.40:43465): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:39:00] [Server thread/INFO]: com.mojang.authlib.GameProfile@49a39db0[id=5956e1ab-ba32-3591-86dc-9d5c9fd30c94,name=giovanni,properties={textures=[com.mojang.authlib.properties.Property@6759c304]},legacy=false] (/191.125.5.40:43465) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:39:03] [Server thread/INFO]: Tomigames123 issued server command: //pos2
[11:39:04] [Server thread/INFO]: Tomigames123 issued server command: //regen
[11:39:11] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[11:39:14] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-243 (MC: 1.14.4) ---
[11:39:14] [Paper Watchdog Thread/ERROR]: The server has not responded for 10 seconds! Creating thread dump
[11:39:14] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:39:14] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:39:14] [Paper Watchdog Thread/ERROR]: The server is waiting on these chunks: []
[11:39:14] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:39:14] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:39:14] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
[11:39:14] [Paper Watchdog Thread/ERROR]:     Stack:
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.coreprotect.worldedit.WorldEdit.logData(WorldEdit.java:35)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.coreprotect.worldedit.CoreProtectLogger.onBlockChange(CoreProtectLogger.java:60)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.coreprotect.worldedit.CoreProtectLogger.setBlock(CoreProtectLogger.java:66)
[11:39:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.SetBlockMap.resume(SetBlockMap.java:47)
[11:39:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.reorder.MultiStageReorder$1.resume(MultiStageReorder.java:268)
[11:39:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.OperationQueue.resume(OperationQueue.java:92)
[11:39:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.OperationQueue.resume(OperationQueue.java:92)
[11:39:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.Operations.completeBlindly(Operations.java:74)
[11:39:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.EditSession.flushSession(EditSession.java:808)
[11:39:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extension.platform.PlatformCommandManager.handleCommand(PlatformCommandManager.java:532)
[11:39:14] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[11:39:14] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[11:39:14] [Paper Watchdog Thread/ERROR]:         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[11:39:14] [Paper Watchdog Thread/ERROR]:         java.lang.reflect.Method.invoke(Method.java:498)
[11:39:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.MethodEventHandler.dispatch(MethodEventHandler.java:58)
[11:39:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventHandler.handleEvent(EventHandler.java:73)
[11:39:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.dispatch(EventBus.java:193)
[11:39:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.post(EventBus.java:181)
[11:39:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.WorldEditPlugin.onCommand(WorldEditPlugin.java:348)
[11:39:14] [Paper Watchdog Thread/ERROR]:         com.sk89q.bukkit.util.DynamicPluginCommand.execute(DynamicPluginCommand.java:55)
[11:39:14] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:159)
[11:39:14] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.CraftServer.dispatchCommand(CraftServer.java:739)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.handleCommand(PlayerConnection.java:1804)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.a(PlayerConnection.java:1612)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:47)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:5)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils.lambda$ensureMainThread$0(PlayerConnectionUtils.java:23)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils$$Lambda$3921/285776655.run(Unknown Source)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.TickTask.run(SourceFile:18)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.aX(MinecraftServer.java:1029)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.executeNext(MinecraftServer.java:1022)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.sleepForTick(MinecraftServer.java:1006)
[11:39:14] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:929)
[11:39:14] [Paper Watchdog Thread/ERROR]:         java.lang.Thread.run(Thread.java:748)
[11:39:14] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:39:14] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:39:14] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:39:18] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 13809ms or 276 ticks behind
[11:39:18] [Server thread/WARN]: IvanGomezVera moved too quickly! 2.8186458486823085,-4.0,-27.644812191397705
[11:39:18] [Server thread/WARN]: adayzeus moved too quickly! -16.100487611830204,3.6457015744369983,-38.773773996870204
[11:39:19] [Async Chat Thread - #1/INFO]: Fundador Tomigames123 ▸  cuidado :v
[11:39:22] [Async Chat Thread - #1/INFO]: ●  Rey ZIZER iiVIPii ▸  no me entero una mierda
[11:39:31] [Server thread/INFO]: [EntityTrackerFixer] Untracked 67 entities in world
[11:39:31] [Server thread/INFO]: [EntityTrackerFixer] Untracked 0 entities in world_nether
[11:39:32] [Server thread/INFO]: Tomigames123 issued server command: /tps
[11:39:34] [Server thread/INFO]: ZIZ3R issued server command: /npc create Ivan
[11:39:37] [Server thread/INFO]: Tomigames123 issued server command: /warp
[11:39:38] [Server thread/INFO]: Tomigames123 issued server command: /warp bosque
[11:39:41] [Server thread/INFO]: IvanGomezVera issued server command: /gm 1
[11:39:51] [Server thread/INFO]: [EntityTrackerFixer] Untracked 97 entities in world
[11:39:51] [Server thread/INFO]: [EntityTrackerFixer] Untracked 0 entities in world_nether
[11:39:58] [Server thread/INFO]: Tomigames123 issued server command: //pos1
[11:40:04] [User Authenticator #2/INFO]: UUID of player Lord_Gameji is 7d4ca4f3-e79d-35d7-a49d-0147e1146802
[11:40:04] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@49eb8b67[id=7d4ca4f3-e79d-35d7-a49d-0147e1146802,name=Lord_Gameji,properties={textures=[com.mojang.authlib.properties.Property@3869e58a]},legacy=false] (/187.187.196.251:48511): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:40:04] [Server thread/INFO]: com.mojang.authlib.GameProfile@49eb8b67[id=7d4ca4f3-e79d-35d7-a49d-0147e1146802,name=Lord_Gameji,properties={textures=[com.mojang.authlib.properties.Property@3869e58a]},legacy=false] (/187.187.196.251:48511) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:40:09] [User Authenticator #2/INFO]: UUID of player giovanni is 5956e1ab-ba32-3591-86dc-9d5c9fd30c94
[11:40:09] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@3e2bb483[id=5956e1ab-ba32-3591-86dc-9d5c9fd30c94,name=giovanni,properties={textures=[com.mojang.authlib.properties.Property@a1f801]},legacy=false] (/191.125.5.40:44391): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:40:09] [Server thread/INFO]: com.mojang.authlib.GameProfile@3e2bb483[id=5956e1ab-ba32-3591-86dc-9d5c9fd30c94,name=giovanni,properties={textures=[com.mojang.authlib.properties.Property@a1f801]},legacy=false] (/191.125.5.40:44391) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:40:11] [Server thread/INFO]: [EntityTrackerFixer] Untracked 9 entities in world
[11:40:11] [Server thread/INFO]: [EntityTrackerFixer] Untracked 0 entities in world_nether
[11:40:13] [Server thread/INFO]: Tomigames123 issued server command: //pos2
[11:40:15] [Server thread/INFO]: Tomigames123 issued server command: //regen
[11:40:18] [Async Chat Thread - #1/INFO]: Fundador Tomigames123 ▸  lag ;V
[11:40:25] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-243 (MC: 1.14.4) ---
[11:40:25] [Paper Watchdog Thread/ERROR]: The server has not responded for 10 seconds! Creating thread dump
[11:40:25] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:40:25] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:40:25] [Paper Watchdog Thread/ERROR]: The server is waiting on these chunks: []
[11:40:25] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:40:25] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:40:25] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
[11:40:25] [Paper Watchdog Thread/ERROR]:     Stack:
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.util.TreeMap.successor(TreeMap.java:2154)
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.util.TreeMap$PrivateEntryIterator.nextEntry(TreeMap.java:1212)
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.util.TreeMap$KeyIterator.next(TreeMap.java:1265)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.TickListServer.a(TickListServer.java:149)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.TickListServer.a(TickListServer.java:130)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.TickListServer.a(TickListServer.java:126)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.TickListServer.a(TickListServer.java:186)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.ChunkRegionLoader.saveChunk(ChunkRegionLoader.java:520)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.ChunkRegionLoader.saveChunk(ChunkRegionLoader.java:362)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerChunkMap.saveChunk(PlayerChunkMap.java:929)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerChunkMap.lambda$save$7(PlayerChunkMap.java:368)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerChunkMap$$Lambda$4471/1698901144.test(Unknown Source)
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:174)
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:175)
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:193)
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1382)
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:482)
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:472)
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150)
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173)
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:485)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerChunkMap.save(PlayerChunkMap.java:368)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.ChunkProviderServer.save(ChunkProviderServer.java:481)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.ChunkProviderServer.close(ChunkProviderServer.java:502)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.ChunkProviderServer.close(ChunkProviderServer.java:497)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.World.close(World.java:1234)
[11:40:25] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_14_R4.regenerate(Spigot_v1_14_R4.java:614)
[11:40:25] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.BukkitWorld.regenerate(BukkitWorld.java:183)
[11:40:25] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.command.RegionCommands.regenerateChunk(RegionCommands.java:415)
[11:40:25] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.command.RegionCommandsRegistration.cmd$_regen(RegionCommandsRegistration.java:568)
[11:40:25] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.command.RegionCommandsRegistration$$Lambda$2473/263798896.run(Unknown Source)
[11:40:25] [Paper Watchdog Thread/ERROR]:         org.enginehub.piston.CommandManager.execute(CommandManager.java:158)
[11:40:25] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extension.platform.PlatformCommandManager.handleCommand(PlatformCommandManager.java:486)
[11:40:25] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[11:40:25] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[11:40:25] [Paper Watchdog Thread/ERROR]:         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.lang.reflect.Method.invoke(Method.java:498)
[11:40:25] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.MethodEventHandler.dispatch(MethodEventHandler.java:58)
[11:40:25] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventHandler.handleEvent(EventHandler.java:73)
[11:40:25] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.dispatch(EventBus.java:193)
[11:40:25] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.post(EventBus.java:181)
[11:40:25] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.WorldEditPlugin.onCommand(WorldEditPlugin.java:348)
[11:40:25] [Paper Watchdog Thread/ERROR]:         com.sk89q.bukkit.util.DynamicPluginCommand.execute(DynamicPluginCommand.java:55)
[11:40:25] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:159)
[11:40:25] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.CraftServer.dispatchCommand(CraftServer.java:739)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.handleCommand(PlayerConnection.java:1804)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.a(PlayerConnection.java:1612)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:47)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:5)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils.lambda$ensureMainThread$0(PlayerConnectionUtils.java:23)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils$$Lambda$3921/285776655.run(Unknown Source)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.TickTask.run(SourceFile:18)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.aX(MinecraftServer.java:1029)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.executeNext(MinecraftServer.java:1022)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.sleepForTick(MinecraftServer.java:1006)
[11:40:25] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:929)
[11:40:25] [Paper Watchdog Thread/ERROR]:         java.lang.Thread.run(Thread.java:748)
[11:40:25] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:40:25] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:40:25] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:40:25] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[11:40:30] [Server thread/ERROR]: Block at -2,013, 18, 690 is Block{minecraft:cave_air} but has net.minecraft.server.v1_14_R1.TileEntityFurnaceFurnace@2b4d36f0. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:30] [Server thread/ERROR]: Block at -2,013, 18, 690 is Block{minecraft:cave_air} but has net.minecraft.server.v1_14_R1.TileEntityFurnaceFurnace@2b4d36f0. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:30] [Async Chat Thread - #1/INFO]: MOD adayzeus iiVIPii ▸  ivaaan que hay que hacer? que estoy dando vueltas :v
[11:40:30] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-243 (MC: 1.14.4) ---
[11:40:30] [Paper Watchdog Thread/ERROR]: The server has not responded for 15 seconds! Creating thread dump
[11:40:30] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:40:30] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:40:30] [Paper Watchdog Thread/ERROR]: The server is waiting on these chunks: []
[11:40:30] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:40:30] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:40:30] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
[11:40:30] [Paper Watchdog Thread/ERROR]:     Stack:
[11:40:30] [Paper Watchdog Thread/ERROR]:         java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
[11:40:30] [Paper Watchdog Thread/ERROR]:         java.util.stream.IntPipeline.allMatch(IntPipeline.java:506)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftKey.d(SourceFile:158)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftKey.<init>(SourceFile:34)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftKey.<init>(SourceFile:43)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.ArgumentBlock.<init>(ArgumentBlock.java:46)
[11:40:30] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.block.data.CraftBlockData.newData(CraftBlockData.java:534)
[11:40:30] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.CraftServer.createBlockData(CraftServer.java:1931)
[11:40:30] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.CraftServer.createBlockData(CraftServer.java:1924)
[11:40:30] [Paper Watchdog Thread/ERROR]:         org.bukkit.Bukkit.createBlockData(Bukkit.java:1416)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.coreprotect.worldedit.CoreProtectLogger.onBlockChange(CoreProtectLogger.java:59)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.coreprotect.worldedit.CoreProtectLogger.setBlock(CoreProtectLogger.java:66)
[11:40:30] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.SetBlockMap.resume(SetBlockMap.java:47)
[11:40:30] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.reorder.MultiStageReorder$1.resume(MultiStageReorder.java:268)
[11:40:30] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.OperationQueue.resume(OperationQueue.java:92)
[11:40:30] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.OperationQueue.resume(OperationQueue.java:92)
[11:40:30] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.Operations.completeBlindly(Operations.java:74)
[11:40:30] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.EditSession.flushSession(EditSession.java:808)
[11:40:30] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extension.platform.PlatformCommandManager.handleCommand(PlatformCommandManager.java:532)
[11:40:30] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[11:40:30] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[11:40:30] [Paper Watchdog Thread/ERROR]:         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[11:40:30] [Paper Watchdog Thread/ERROR]:         java.lang.reflect.Method.invoke(Method.java:498)
[11:40:30] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.MethodEventHandler.dispatch(MethodEventHandler.java:58)
[11:40:30] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventHandler.handleEvent(EventHandler.java:73)
[11:40:30] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.dispatch(EventBus.java:193)
[11:40:30] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.post(EventBus.java:181)
[11:40:30] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.WorldEditPlugin.onCommand(WorldEditPlugin.java:348)
[11:40:30] [Paper Watchdog Thread/ERROR]:         com.sk89q.bukkit.util.DynamicPluginCommand.execute(DynamicPluginCommand.java:55)
[11:40:30] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:159)
[11:40:30] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.CraftServer.dispatchCommand(CraftServer.java:739)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.handleCommand(PlayerConnection.java:1804)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.a(PlayerConnection.java:1612)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:47)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:5)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils.lambda$ensureMainThread$0(PlayerConnectionUtils.java:23)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils$$Lambda$3921/285776655.run(Unknown Source)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.TickTask.run(SourceFile:18)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.aX(MinecraftServer.java:1029)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.executeNext(MinecraftServer.java:1022)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.sleepForTick(MinecraftServer.java:1006)
[11:40:30] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:929)
[11:40:30] [Paper Watchdog Thread/ERROR]:         java.lang.Thread.run(Thread.java:748)
[11:40:30] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:40:30] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:40:30] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:40:30] [Server thread/ERROR]: Block at -2,013, 17, 689 is Block{minecraft:cave_air} but has net.minecraft.server.v1_14_R1.TileEntityFurnaceFurnace@16e312bb. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:30] [Server thread/ERROR]: Block at -2,013, 17, 689 is Block{minecraft:cave_air} but has net.minecraft.server.v1_14_R1.TileEntityFurnaceFurnace@16e312bb. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:30] [Server thread/ERROR]: Block at -2,010, 6, 673 is Block{minecraft:stone} but has net.minecraft.server.v1_14_R1.TileEntityFurnaceFurnace@37501f17. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:30] [Server thread/ERROR]: Block at -2,010, 6, 673 is Block{minecraft:stone} but has net.minecraft.server.v1_14_R1.TileEntityFurnaceFurnace@37501f17. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:31] [Server thread/ERROR]: Block at -2,096, 57, 652 is Block{minecraft:stone} but has net.minecraft.server.v1_14_R1.TileEntityChest@7e696f36. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:31] [Server thread/ERROR]: Block at -2,096, 57, 652 is Block{minecraft:stone} but has net.minecraft.server.v1_14_R1.TileEntityChest@7e696f36. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:31] [Server thread/ERROR]: Block at -2,096, 57, 650 is Block{minecraft:stone} but has net.minecraft.server.v1_14_R1.TileEntityHopper@79321da5. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:31] [Server thread/ERROR]: Block at -2,096, 57, 650 is Block{minecraft:stone} but has net.minecraft.server.v1_14_R1.TileEntityHopper@79321da5. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:32] [Server thread/ERROR]: Block at -2,096, 57, 651 is Block{minecraft:stone} but has net.minecraft.server.v1_14_R1.TileEntityChest@24c21cca. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:32] [Server thread/ERROR]: Block at -2,096, 57, 651 is Block{minecraft:stone} but has net.minecraft.server.v1_14_R1.TileEntityChest@24c21cca. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:32] [Server thread/ERROR]: Block at -2,096, 58, 649 is Block{minecraft:stone} but has net.minecraft.server.v1_14_R1.TileEntityHopper@16d510b3. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:32] [Server thread/ERROR]: Block at -2,096, 58, 649 is Block{minecraft:stone} but has net.minecraft.server.v1_14_R1.TileEntityHopper@16d510b3. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:32] [Server thread/ERROR]: Block at -2,096, 57, 649 is Block{minecraft:stone} but has net.minecraft.server.v1_14_R1.TileEntityHopper@36f01004. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:32] [Server thread/ERROR]: Block at -2,096, 57, 649 is Block{minecraft:stone} but has net.minecraft.server.v1_14_R1.TileEntityHopper@36f01004. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:40:35] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-243 (MC: 1.14.4) ---
[11:40:35] [Paper Watchdog Thread/ERROR]: The server has not responded for 20 seconds! Creating thread dump
[11:40:35] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:40:35] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:40:35] [Paper Watchdog Thread/ERROR]: The server is waiting on these chunks: []
[11:40:35] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:40:35] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:40:35] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
[11:40:35] [Paper Watchdog Thread/ERROR]:     Stack:
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.WorldServer.notify(WorldServer.java:1486)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.World.notifyAndUpdatePhysics(World.java:497)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_14_R4.setBlock(Spigot_v1_14_R4.java:376)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.BukkitWorld.setBlock(BukkitWorld.java:421)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.world.FastModeExtent.setBlock(FastModeExtent.java:112)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.world.WatchdogTickingExtent.setBlock(WatchdogTickingExtent.java:80)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.world.SurvivalModeExtent.setBlock(SurvivalModeExtent.java:100)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.world.BlockQuirkExtent.setBlock(BlockQuirkExtent.java:63)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.world.ChunkLoadingExtent.setBlock(ChunkLoadingExtent.java:70)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.cache.LastAccessExtentCache.setBlock(LastAccessExtentCache.java:74)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.AbstractDelegateExtent.setBlock(AbstractDelegateExtent.java:80)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.inventory.BlockBagExtent.setBlock(BlockBagExtent.java:114)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.coreprotect.worldedit.CoreProtectLogger.setBlock(CoreProtectLogger.java:67)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.SetBlockMap.resume(SetBlockMap.java:47)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.reorder.MultiStageReorder$1.resume(MultiStageReorder.java:268)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.OperationQueue.resume(OperationQueue.java:92)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.OperationQueue.resume(OperationQueue.java:92)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.Operations.completeBlindly(Operations.java:74)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.EditSession.flushSession(EditSession.java:808)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extension.platform.PlatformCommandManager.handleCommand(PlatformCommandManager.java:532)
[11:40:35] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[11:40:35] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[11:40:35] [Paper Watchdog Thread/ERROR]:         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[11:40:35] [Paper Watchdog Thread/ERROR]:         java.lang.reflect.Method.invoke(Method.java:498)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.MethodEventHandler.dispatch(MethodEventHandler.java:58)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventHandler.handleEvent(EventHandler.java:73)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.dispatch(EventBus.java:193)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.post(EventBus.java:181)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.WorldEditPlugin.onCommand(WorldEditPlugin.java:348)
[11:40:35] [Paper Watchdog Thread/ERROR]:         com.sk89q.bukkit.util.DynamicPluginCommand.execute(DynamicPluginCommand.java:55)
[11:40:35] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:159)
[11:40:35] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.CraftServer.dispatchCommand(CraftServer.java:739)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.handleCommand(PlayerConnection.java:1804)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.a(PlayerConnection.java:1612)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:47)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:5)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils.lambda$ensureMainThread$0(PlayerConnectionUtils.java:23)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils$$Lambda$3921/285776655.run(Unknown Source)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.TickTask.run(SourceFile:18)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.aX(MinecraftServer.java:1029)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.executeNext(MinecraftServer.java:1022)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.sleepForTick(MinecraftServer.java:1006)
[11:40:35] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:929)
[11:40:35] [Paper Watchdog Thread/ERROR]:         java.lang.Thread.run(Thread.java:748)
[11:40:35] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:40:35] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:40:35] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:40:35] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 20072ms or 401 ticks behind
[11:40:35] [Server thread/WARN]: Tomigames123 moved too quickly! 3.109721535632616,0.0,9.634719324949401
[11:40:35] [Server thread/WARN]: Alionel20039 moved too quickly! 7.8697081212418425,1.1767592750642422,6.175107732896095
[11:40:51] [Server thread/INFO]: [EntityTrackerFixer] Untracked 26 entities in world
[11:40:51] [Server thread/INFO]: [EntityTrackerFixer] Untracked 0 entities in world_nether
[11:40:55] [Server thread/INFO]: CONSOLE issued server command: /sudo Ivangomezvera c: Crea misiones
[11:40:55] [Server thread/INFO]: Forcing Ivangomezvera to run: /c: Crea misiones
[11:40:55] [Server thread/INFO]: Fundador IvanGomezVera ▸   Crea misiones
[11:41:11] [Server thread/INFO]: Tomigames123 issued server command: //pos1
[11:41:11] [Server thread/INFO]: [EntityTrackerFixer] Untracked 38 entities in world
[11:41:11] [Server thread/INFO]: [EntityTrackerFixer] Untracked 0 entities in world_nether
[11:41:11] [Server thread/WARN]: [LagAssist] Task #17107 for LagAssist v2.19.0 generated an exception
java.lang.NullPointerException: null
    at cx.sfy.LagAssist.stacker.StackChunk.getStack(StackChunk.java:159) ~[?:?]
    at cx.sfy.LagAssist.stacker.StackManager.isStacked(StackManager.java:56) ~[?:?]
    at cx.sfy.LagAssist.mobs.SmartMob.isRemovable(SmartMob.java:79) ~[?:?]
    at cx.sfy.LagAssist.mobs.SmartMob.MobCuller(SmartMob.java:67) ~[?:?]
    at cx.sfy.LagAssist.Monitor.LagMeasures(Monitor.java:72) ~[?:?]
    at cx.sfy.LagAssist.Monitor.access$0(Monitor.java:61) ~[?:?]
    at cx.sfy.LagAssist.Monitor$1$1.run(Monitor.java:162) ~[?:?]
    at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftTask.run(CraftTask.java:84) ~[patched_1.14.4.jar:git-Paper-243]
    at org.bukkit.craftbukkit.v1_14_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:452) ~[patched_1.14.4.jar:git-Paper-243]
    at net.minecraft.server.v1_14_R1.MinecraftServer.b(MinecraftServer.java:1171) ~[patched_1.14.4.jar:git-Paper-243]
    at net.minecraft.server.v1_14_R1.DedicatedServer.b(DedicatedServer.java:417) ~[patched_1.14.4.jar:git-Paper-243]
    at net.minecraft.server.v1_14_R1.MinecraftServer.a(MinecraftServer.java:1098) ~[patched_1.14.4.jar:git-Paper-243]
    at net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:925) ~[patched_1.14.4.jar:git-Paper-243]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_242]
[11:41:18] [Server thread/INFO]: Tomigames123 issued server command: //pos2
[11:41:20] [Async Chat Thread - #1/INFO]: Fundador Tomigames123 ▸  Aviso
[11:41:22] [Async Chat Thread - #1/INFO]: MOD adayzeus iiVIPii ▸  yo las misiones que quiero crear son de matar pero no puedo :v
[11:41:22] [Server thread/INFO]: Tomigames123 issued server command: //regen
[11:41:23] [User Authenticator #3/INFO]: UUID of player giovanni is 5956e1ab-ba32-3591-86dc-9d5c9fd30c94
[11:41:29] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[11:41:32] [Server thread/ERROR]: Block at -2,124, 62, 631 is Block{minecraft:dirt} but has net.minecraft.server.v1_14_R1.TileEntityChest@6f0ae4f5. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:41:32] [Server thread/ERROR]: Block at -2,124, 62, 631 is Block{minecraft:dirt} but has net.minecraft.server.v1_14_R1.TileEntityChest@6f0ae4f5. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:41:32] [Server thread/ERROR]: Block at -2,124, 62, 632 is Block{minecraft:dirt} but has net.minecraft.server.v1_14_R1.TileEntityChest@48925bbf. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:41:32] [Server thread/ERROR]: Block at -2,124, 62, 632 is Block{minecraft:dirt} but has net.minecraft.server.v1_14_R1.TileEntityChest@48925bbf. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:41:32] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-243 (MC: 1.14.4) ---
[11:41:32] [Paper Watchdog Thread/ERROR]: The server has not responded for 10 seconds! Creating thread dump
[11:41:32] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:32] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:41:32] [Paper Watchdog Thread/ERROR]: The server is waiting on these chunks: []
[11:41:32] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:32] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:41:32] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
[11:41:32] [Paper Watchdog Thread/ERROR]:     Stack:
[11:41:32] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.util.CraftMagicNumbers.getMaterial(CraftMagicNumbers.java:104)
[11:41:32] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.block.CraftBlock.getType(CraftBlock.java:208)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.coreprotect.worldedit.CoreProtectLogger.onBlockChange(CoreProtectLogger.java:53)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.coreprotect.worldedit.CoreProtectLogger.setBlock(CoreProtectLogger.java:66)
[11:41:32] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.SetBlockMap.resume(SetBlockMap.java:47)
[11:41:32] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extent.reorder.MultiStageReorder$1.resume(MultiStageReorder.java:268)
[11:41:32] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.OperationQueue.resume(OperationQueue.java:92)
[11:41:32] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.OperationQueue.resume(OperationQueue.java:92)
[11:41:32] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.function.operation.Operations.completeBlindly(Operations.java:74)
[11:41:32] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.EditSession.flushSession(EditSession.java:808)
[11:41:32] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.extension.platform.PlatformCommandManager.handleCommand(PlatformCommandManager.java:532)
[11:41:32] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[11:41:32] [Paper Watchdog Thread/ERROR]:         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[11:41:32] [Paper Watchdog Thread/ERROR]:         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[11:41:32] [Paper Watchdog Thread/ERROR]:         java.lang.reflect.Method.invoke(Method.java:498)
[11:41:32] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.MethodEventHandler.dispatch(MethodEventHandler.java:58)
[11:41:32] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventHandler.handleEvent(EventHandler.java:73)
[11:41:32] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.dispatch(EventBus.java:193)
[11:41:32] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.util.eventbus.EventBus.post(EventBus.java:181)
[11:41:32] [Paper Watchdog Thread/ERROR]:         com.sk89q.worldedit.bukkit.WorldEditPlugin.onCommand(WorldEditPlugin.java:348)
[11:41:32] [Paper Watchdog Thread/ERROR]:         com.sk89q.bukkit.util.DynamicPluginCommand.execute(DynamicPluginCommand.java:55)
[11:41:32] [Paper Watchdog Thread/ERROR]:         org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:159)
[11:41:32] [Paper Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_14_R1.CraftServer.dispatchCommand(CraftServer.java:739)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.handleCommand(PlayerConnection.java:1804)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnection.a(PlayerConnection.java:1612)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:47)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PacketPlayInChat.a(PacketPlayInChat.java:5)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils.lambda$ensureMainThread$0(PlayerConnectionUtils.java:23)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.PlayerConnectionUtils$$Lambda$3921/285776655.run(Unknown Source)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.TickTask.run(SourceFile:18)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.aX(MinecraftServer.java:1029)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.executeNext(MinecraftServer.java:1022)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.sleepForTick(MinecraftServer.java:1006)
[11:41:32] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.v1_14_R1.MinecraftServer.run(MinecraftServer.java:929)
[11:41:32] [Paper Watchdog Thread/ERROR]:         java.lang.Thread.run(Thread.java:748)
[11:41:32] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:32] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:41:32] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:33] [Server thread/ERROR]: Block at -2,086, 60, 637 is Block{minecraft:stone} but has net.minecraft.server.v1_14_R1.TileEntityChest@4f446744. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:41:33] [Server thread/ERROR]: Block at -2,086, 60, 637 is Block{minecraft:stone} but has net.minecraft.server.v1_14_R1.TileEntityChest@4f446744. Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.
[11:41:34] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 11117ms or 222 ticks behind
[11:41:34] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@2151835c[id=5956e1ab-ba32-3591-86dc-9d5c9fd30c94,name=giovanni,properties={textures=[com.mojang.authlib.properties.Property@6f6744cb]},legacy=false] (/191.125.5.40:47093): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:41:34] [Server thread/WARN]: Tomigames123 moved too quickly! 0.0,11.272675263935849,0.0
[11:41:34] [Server thread/WARN]: adayzeus moved too quickly! 7.817004492667195,1.0013359791121417,-6.44010154457942
[11:41:34] [Server thread/INFO]: com.mojang.authlib.GameProfile@2151835c[id=5956e1ab-ba32-3591-86dc-9d5c9fd30c94,name=giovanni,properties={textures=[com.mojang.authlib.properties.Property@6f6744cb]},legacy=false] (/191.125.5.40:47093) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:41:42] [Server thread/INFO]: [EntityTrackerFixer] Untracked 7 entities in world
[11:41:42] [Server thread/INFO]: [EntityTrackerFixer] Untracked 0 entities in world_nether
[11:41:56] [Server thread/INFO]: adayzeus issued server command: /gmsp
[11:42:02] [Server thread/INFO]: [EntityTrackerFixer] Untracked 18 entities in world
[11:42:02] [Server thread/INFO]: [EntityTrackerFixer] Untracked 0 entities in world_nether
[11:42:07] [Server thread/INFO]: adayzeus issued server command: /gmc
[11:42:22] [Server thread/INFO]: [EntityTrackerFixer] Untracked 0 entities in world
[11:42:22] [Server thread/INFO]: [EntityTrackerFixer] Untracked 0 entities in world_nether
[11:42:35] [Server thread/INFO]: ZIZ3R issued server command: /npc
[11:43:01] [Server thread/INFO]: Tomigames123 issued server command: /gmc
[11:43:07] [Async Chat Thread - #2/INFO]: [StaffChat] SC> ZIZ3R: Creo la mision que me da la gana? No puedo abrir los cofres ni nada
[11:43:09] [Server thread/INFO]: adayzeus issued server command: /npc create sentinel
[11:43:14] [Server thread/INFO]: adayzeus issued server command: /npc select
[11:43:34] [Server thread/INFO]: Tomigames123 issued server command: /gmsp
[11:43:37] [Server thread/INFO]: Tomigames123 issued server command: /warp
[11:43:38] [Server thread/INFO]: Tomigames123 issued server command: /warp nieve
[11:43:39] [Server thread/INFO]: adayzeus issued server command: /trait sentinel
[11:44:00] [Server thread/INFO]: Tomigames123 issued server command: //pos1
[11:44:06] [Server thread/INFO]: IvanGomezVera issued server command: /withdraw 50
[11:44:10] [Server thread/INFO]: IvanGomezVera issued server command: /withdraw 100
[11:44:12] [Server thread/INFO]: adayzeus issued server command: /trair sentinel
[11:44:14] [Async Chat Thread - #3/INFO]: [StaffChat] SC> ZIZ3R: Me estas pidiendo permiso o q, dale tomi
[11:44:15] [User Authenticator #4/INFO]: UUID of player Lord_Gameji is 7d4ca4f3-e79d-35d7-a49d-0147e1146802
[11:44:15] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@5cd0368d[id=7d4ca4f3-e79d-35d7-a49d-0147e1146802,name=Lord_Gameji,properties={textures=[com.mojang.authlib.properties.Property@66ddfd88]},legacy=false] (/187.187.196.251:47015): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:44:15] [Server thread/INFO]: com.mojang.authlib.GameProfile@5cd0368d[id=7d4ca4f3-e79d-35d7-a49d-0147e1146802,name=Lord_Gameji,properties={textures=[com.mojang.authlib.properties.Property@66ddfd88]},legacy=false] (/187.187.196.251:47015) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:44:17] [User Authenticator #4/INFO]: UUID of player FennixDZN is 5d686ead-0f5f-325c-a629-60f11d54c7f0
[11:44:17] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@b479bf7[id=5d686ead-0f5f-325c-a629-60f11d54c7f0,name=FennixDZN,properties={textures=[com.mojang.authlib.properties.Property@201f9c09]},legacy=false] (/190.136.162.6:50567): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:44:17] [Server thread/INFO]: com.mojang.authlib.GameProfile@b479bf7[id=5d686ead-0f5f-325c-a629-60f11d54c7f0,name=FennixDZN,properties={textures=[com.mojang.authlib.properties.Property@201f9c09]},legacy=false] (/190.136.162.6:50567) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:44:30] [Async Chat Thread - #3/INFO]: [StaffChat] SC> ZIZ3R: No te lo cargues mucho
[11:44:34] [Server thread/INFO]: adayzeus issued server command: /trait sentinel
[11:45:21] [Server thread/INFO]: adayzeus issued server command: /trait sentry
[11:45:25] [User Authenticator #5/INFO]: UUID of player giovanni is 5956e1ab-ba32-3591-86dc-9d5c9fd30c94
[11:45:25] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@3769e2b9[id=5956e1ab-ba32-3591-86dc-9d5c9fd30c94,name=giovanni,properties={textures=[com.mojang.authlib.properties.Property@3205a2fc]},legacy=false] (/191.125.5.40:47279): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:45:25] [Server thread/INFO]: com.mojang.authlib.GameProfile@3769e2b9[id=5956e1ab-ba32-3591-86dc-9d5c9fd30c94,name=giovanni,properties={textures=[com.mojang.authlib.properties.Property@3205a2fc]},legacy=false] (/191.125.5.40:47279) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:45:26] [Server thread/INFO]: adayzeus issued server command: /npc select
[11:45:32] [Server thread/INFO]: adayzeus issued server command: /trail sentinel
[11:45:32] [Async Chat Thread - #4/INFO]: Fundador Tomigames123 ▸  ./trait Sentinel
[11:45:36] [Server thread/INFO]: adayzeus issued server command: /trait sentinel
[11:45:43] [Server thread/INFO]: Tomigames123 issued server command: /trait Sentinel
[11:45:45] [Async Chat Thread - #4/INFO]: MOD adayzeus iiVIPii ▸  ./trait sentinel
[11:45:51] [Server thread/INFO]: IvanGomezVera issued server command: /trait sentinel
[11:45:51] [Async Chat Thread - #4/INFO]: MOD adayzeus iiVIPii ▸  ./trait
[11:46:00] [Server thread/INFO]: adayzeus issued server command: /trait Sentinel
[11:46:03] [Server thread/INFO]: adayzeus issued server command: /trait Sentry
[11:46:06] [Server thread/INFO]: Tomigames123 issued server command: /tp adayzeus
[11:46:07] [Server thread/INFO]: Tomigames123 issued server command: /gmc
[11:46:12] [User Authenticator #5/INFO]: UUID of player FennixDZN is 5d686ead-0f5f-325c-a629-60f11d54c7f0
[11:46:12] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1ab27970[id=5d686ead-0f5f-325c-a629-60f11d54c7f0,name=FennixDZN,properties={textures=[com.mojang.authlib.properties.Property@62f21ff6]},legacy=false] (/190.136.162.6:55565): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:46:12] [Server thread/INFO]: com.mojang.authlib.GameProfile@1ab27970[id=5d686ead-0f5f-325c-a629-60f11d54c7f0,name=FennixDZN,properties={textures=[com.mojang.authlib.properties.Property@62f21ff6]},legacy=false] (/190.136.162.6:55565) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:46:12] [User Authenticator #5/INFO]: UUID of player Lord_Gameji is 7d4ca4f3-e79d-35d7-a49d-0147e1146802
[11:46:12] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@24f35114[id=7d4ca4f3-e79d-35d7-a49d-0147e1146802,name=Lord_Gameji,properties={textures=[com.mojang.authlib.properties.Property@1aaf3cf2]},legacy=false] (/187.187.196.251:54915): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:46:12] [Server thread/INFO]: com.mojang.authlib.GameProfile@24f35114[id=7d4ca4f3-e79d-35d7-a49d-0147e1146802,name=Lord_Gameji,properties={textures=[com.mojang.authlib.properties.Property@1aaf3cf2]},legacy=false] (/187.187.196.251:54915) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:46:12] [Server thread/INFO]: adayzeus issued server command: /trait sentry
[11:46:12] [Server thread/INFO]: Tomigames123 issued server command: /npc select
[11:46:15] [Server thread/INFO]: Tomigames123 issued server command: /trait Sentinel
[11:46:17] [Server thread/INFO]: adayzeus issued server command: /trait help
[11:46:23] [Server thread/INFO]: adayzeus issued server command: /trait add sentinel
[11:46:49] [Server thread/INFO]: ZIZ3R issued server command: /gm sp
[11:46:52] [Server thread/INFO]: ZIZ3R issued server command: /tp tomi
[11:47:00] [Server thread/INFO]: adayzeus issued server command: /trait Sentinel
[11:47:06] [Server thread/INFO]: ZIZ3R issued server command: /gm s
[11:47:17] [User Authenticator #6/INFO]: UUID of player Lord_Gameji is 7d4ca4f3-e79d-35d7-a49d-0147e1146802
[11:47:17] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@7d2088c6[id=7d4ca4f3-e79d-35d7-a49d-0147e1146802,name=Lord_Gameji,properties={textures=[com.mojang.authlib.properties.Property@626b16ab]},legacy=false] (/187.187.196.251:41679): El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:47:17] [Server thread/INFO]: com.mojang.authlib.GameProfile@7d2088c6[id=7d4ca4f3-e79d-35d7-a49d-0147e1146802,name=Lord_Gameji,properties={textures=[com.mojang.authlib.properties.Property@626b16ab]},legacy=false] (/187.187.196.251:41679) lost connection: El Servidor se encuentra en mantenimiento :) Volvemos Pronto
[11:47:23] [Server thread/INFO]: Tomigames123 issued server command: /trait sentinel
[11:47:27] [Async Chat Thread - #5/INFO]: ●  Rey ZIZER iiVIPii ▸  Por donde habeis pasado las misiones, solo vi lo de citizen
[11:47:35] [Server thread/INFO]: Tomigames123 issued server command: /trait
[11:47:37] [Server thread/INFO]: Tomigames123 issued server command: /trait list
[11:47:44] [Server thread/INFO]: adayzeus issued server command: /sentinel help
[11:47:49] [Server thread/INFO]: adayzeus issued server command: /sentinel help
[11:48:04] [Server thread/INFO]: ZIZ3R issued server command: /sentinel
[11:48:06] [Server thread/INFO]: ZIZ3R issued server command: /sentinel help
[11:49:06] [Server thread/INFO]: Alionel20039 lost connection: Disconnected
[11:49:06] [Server thread/INFO]: [-]Ayudante Alionel20039
[11:49:13] [Server thread/INFO]: IvanGomezVera issued server command: /back
[11:49:42] [Server thread/INFO]: [OpenInv] [LanguageManager] Missing translations from es_mx.yml: messages.error.consoleUnsupported, messages.error.lootNotGenerated, messages.error.invalidMaterial, messages.error.invalidNumber, messages.error.invalidPlayer, messages.error.permissionOpenSelf, messages.error.permissionEnderAll, messages.error.permissionExempt, messages.error.permissionCrossWorld, messages.error.permissionPlayerOnline, messages.error.permissionPlayerOffline, messages.error.commandException, messages.info.containerBlocked, messages.info.containerBlockedSilent, messages.info.containerSilent, messages.info.settingState, messages.info.player.noMatches, messages.info.player.matches, messages.info.container.noMatches, messages.info.container.matches, messages.info.true, messages.info.false, container.player, container.enderchest
[11:49:52] [Server thread/INFO]: adayzeus issued server command: /ec
[11:49:53] [Async Chat Thread - #6/INFO]: ●  Rey ZIZER iiVIPii ▸  Zeus
[11:49:56] [Server thread/INFO]: IvanGomezVera issued server command: /tp ZIZ3R
[11:50:01] [Async Chat Thread - #6/INFO]: MOD adayzeus iiVIPii ▸  ?
[11:50:06] [Async Chat Thread - #6/INFO]: ●  Rey ZIZER iiVIPii ▸  Ivan me cago en todo
[11:50:09] [Async Chat Thread - #6/INFO]: MOD adayzeus iiVIPii ▸  xDD
[11:50:36] [Async Chat Thread - #6/INFO]: ●  Rey ZIZER iiVIPii ▸  Que npc hay que crear?
[11:50:48] [Async Chat Thread - #6/INFO]: ●  Rey ZIZER iiVIPii ▸  Lo de las misiones
[11:51:10] [Async Chat Thread - #6/INFO]: ●  Rey ZIZER iiVIPii ▸  Si salen los corazones extra