Paste #132669: error

Date: 2025/04/15 14:50:39 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
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835


[21:43:12] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.6+7-LTS; Eclipse Adoptium Temurin-21.0.6+7) on Linux 5.15.0-131-generic (amd64)
[21:43:12] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.1-52-master@e08e667 (2024-08-26T18:02:06Z) for Minecraft 1.21.1
[21:43:12] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[21:43:12] [ServerMain/INFO]: [PluginInitializerManager] Initialized 30 plugins
[21:43:12] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (30):
 - AuraSkills (2.2.8), Boss (5.4.4), Citizens (2.0.38-SNAPSHOT (build 3765)), CustomCrafting (4.16.9.1), DatapackLoader (1.4.1), EcoEnchants (12.22.0), Essentials (2.21.1-dev+12-8455212), EssentialsChat (2.21.1-dev+12-8455212), EssentialsDiscord (2.21.1-dev+12-8455212), EssentialsSpawn (2.21.1-dev+12-8455212), FastAsyncWorldEdit (2.13.1-SNAPSHOT-1086;aee75c1), ItemEdit (3.7.0), ItemRenamerReloaded (1.3), ItemsAdder (4.0.9-hotfix-1), Lands (7.14.1), LuckPerms (5.4.158), PlaceholderAPI (2.11.6), ProtocolLib (5.3.0), PyroFarming (1.2.3), PyroFishingPro (4.9.25), PyroLib (1.4.6), PyroMining (4.5.0), Shopkeepers (2.23.4), TAB (5.2.0), TheGoldEconomy (1.9.0), Vault (1.7.3-b131), ViaVersion (5.3.1), WolfyUtilities (4.17-beta.7), WorldGuard (7.0.13+82fdc65), eco (6.75.2)
[21:43:14] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[21:43:15] [ServerMain/WARN]: Missing data pack file/oraxen_jukebox
[21:43:15] [ServerMain/WARN]: Missing data pack file/oraxen_trim_armor
[21:43:15] [ServerMain/WARN]: Missing data pack file/mcmidi_otherworldsnow
[21:43:15] [ServerMain/INFO]: Loaded 1290 recipes
[21:43:15] [ServerMain/INFO]: Loaded 1399 advancements
[21:43:16] [Server thread/INFO]: Starting minecraft server version 1.21.1
[21:43:16] [Server thread/INFO]: Loading properties
[21:43:16] [Server thread/INFO]: This server is running Paper version 1.21.1-52-master@e08e667 (2024-08-26T18:02:06Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[21:43:16] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[21:43:16] [Server thread/INFO]: Server Ping Player Sample Count: 12
[21:43:16] [Server thread/INFO]: Using 4 threads for Netty based IO
[21:43:17] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and population gen parallelism of 1 threads
[21:43:17] [Server thread/INFO]: Default game type: SURVIVAL
[21:43:17] [Server thread/INFO]: Generating keypair
[21:43:17] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25567
[21:43:17] [Server thread/INFO]: Using epoll channel type
[21:43:17] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[21:43:17] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 14 libraries... please wait
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/beer/devs/FastNbt-jar/1.4.3/FastNbt-jar-1.4.3.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/sourceforge/streamsupport/speedy-math/1.0.0/speedy-math-1.0.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-api/4.18.0/adventure-api-4.18.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-key/4.18.0/adventure-key-4.18.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/jetbrains/annotations/26.0.1/annotations-26.0.1.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.18.0/adventure-text-serializer-gson-4.18.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.18.0/adventure-text-serializer-json-4.18.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.18.0/adventure-text-serializer-gson-legacy-impl-4.18.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json-legacy-impl/4.18.0/adventure-text-serializer-json-legacy-impl-4.18.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.18.0/adventure-text-minimessage-4.18.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/alibaba/fastjson/2.0.43/fastjson-2.0.43.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/alibaba/fastjson2/fastjson2-extension/2.0.43/fastjson2-extension-2.0.43.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/alibaba/fastjson2/fastjson2/2.0.43/fastjson2-2.0.43.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/minidev/json-smart/2.4.10/json-smart-2.4.10.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/ow2/asm/asm/9.3/asm-9.3.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/jeff-media/armor-equip-event/1.0.3/armor-equip-event-1.0.3.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/fr/skytasul/glowingentities/1.4.3/glowingentities-1.4.3.jar
[21:43:18] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/fr/skytasul/reflection-remapper/1.0.0/reflection-remapper-1.0.0.jar
[21:43:19] [Server thread/INFO]: [eco] Initializing eco
[21:43:19] [Server thread/INFO]: [EcoEnchants] Initializing EcoEnchants
[21:43:19] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loading 3 libraries... please wait
[21:43:19] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/inject/guice/5.1.0/guice-5.1.0.jar
[21:43:19] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/javax/inject/javax.inject/1/javax.inject-1.jar
[21:43:19] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
[21:43:19] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/guava/30.1-jre/guava-30.1-jre.jar
[21:43:19] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
[21:43:19] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[21:43:19] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[21:43:19] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.jar
[21:43:19] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar
[21:43:19] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
[21:43:19] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[21:43:19] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar
[21:43:21] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 398 ms to scan 1 urls, producing 924 keys and 3724 values
[21:43:21] [Server thread/INFO]: [WolfyUtilities] Register Default StackIdentifiers
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loading 5 libraries... please wait
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/redisson/redisson/3.45.1/redisson-3.45.1.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-common/4.1.118.Final/netty-common-4.1.118.Final.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-codec/4.1.118.Final/netty-codec-4.1.118.Final.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-buffer/4.1.118.Final/netty-buffer-4.1.118.Final.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-transport/4.1.118.Final/netty-transport-4.1.118.Final.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-resolver/4.1.118.Final/netty-resolver-4.1.118.Final.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-resolver-dns/4.1.118.Final/netty-resolver-dns-4.1.118.Final.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-codec-dns/4.1.118.Final/netty-codec-dns-4.1.118.Final.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-handler/4.1.118.Final/netty-handler-4.1.118.Final.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-transport-native-unix-common/4.1.118.Final/netty-transport-native-unix-common-4.1.118.Final.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/javax/cache/cache-api/1.1.1/cache-api-1.1.1.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/projectreactor/reactor-core/3.6.2/reactor-core-3.6.2.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/reactivex/rxjava3/rxjava/3.1.8/rxjava-3.1.8.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/esotericsoftware/kryo/5.6.2/kryo-5.6.2.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/esotericsoftware/reflectasm/1.11.9/reflectasm-1.11.9.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/objenesis/objenesis/3.4/objenesis-3.4.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/esotericsoftware/minlog/1.3.1/minlog-1.3.1.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.18.2/jackson-dataformat-yaml-2.18.2.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/yaml/snakeyaml/2.3/snakeyaml-2.3.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/net/bytebuddy/byte-buddy/1.15.3/byte-buddy-1.15.3.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/jodd/jodd-util/6.3.0/jodd-util-6.3.0.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/slf4j/slf4j-jdk14/1.7.32/slf4j-jdk14-1.7.32.jar
[21:43:21] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loading 5 libraries... please wait
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[21:43:22] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.16.0/adventure-text-serializer-legacy-4.16.0.jar
[21:43:23] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.3.1
[21:43:23] [Server thread/INFO]: [ViaVersion] ViaVersion 5.3.1 is now loaded. Registering protocol transformers and injecting...
[21:43:23] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[21:43:23] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[21:43:24] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.158
[21:43:24] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[21:43:24] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.1-SNAPSHOT-1086;aee75c1
[21:43:24] [Server thread/WARN]: 
**********************************************
** You are using the Spigot-mapped FAWE jar on a modern Paper version.
** This will result in slower first-run times and wasted disk space from plugin remapping.
** Download the Paper FAWE jar from Modrinth to avoid this: https://modrinth.com/plugin/fastasyncworldedit/
**********************************************
[21:43:26] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@4e5d70a]
[21:43:26] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[21:43:26] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13+82fdc65
[21:43:26] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[21:43:26] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.1-dev+12-8455212
[21:43:26] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.38-SNAPSHOT (build 3765)
[21:43:26] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.9-hotfix-1
[21:43:26] [Server thread/INFO]: [eco] Loading server plugin eco v6.75.2
[21:43:26] [Server thread/INFO]: [PyroLib] Loading server plugin PyroLib v1.4.6
[21:43:26] [Server thread/INFO]: [EcoEnchants] Loading server plugin EcoEnchants v12.22.0
[21:43:26] [Server thread/INFO]: [libreforge] Initializing libreforge
[21:43:26] [Server thread/INFO]: [libreforge] Loading server plugin libreforge v4.75.0
[21:43:28] [Server thread/INFO]: [WolfyUtilities] Loading server plugin WolfyUtilities v4.17-beta.7
[21:43:28] [Server thread/INFO]: [WolfyUtilities] Register JSON de-/serializers
[21:43:28] [Server thread/INFO]: [WolfyUtilities] Register JSON Operators
[21:43:28] [Server thread/INFO]: [WolfyUtilities] Register JSON Value Providers
[21:43:28] [Server thread/INFO]: [WolfyUtilities] Register CustomItem NBT Checks
[21:43:28] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Actions
[21:43:28] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Events
[21:43:28] [Server thread/INFO]: [WolfyUtilities] Register Particle Animators
[21:43:28] [Server thread/INFO]: [WolfyUtilities] Register Particle Shapes
[21:43:28] [Server thread/INFO]: [WolfyUtilities] Register Particle Timers
[21:43:28] [Server thread/INFO]: [WolfyUtilities] Register Custom Block Data
[21:43:28] [Server thread/INFO]: [WolfyUtilities] Register Custom Player Data
[21:43:28] [Server thread/INFO]: [WolfyUtilities] Register NBT Query Nodes
[21:43:28] [Server thread/INFO]: [PyroFishingPro] Loading server plugin PyroFishingPro v4.9.25
[21:43:28] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.1-dev+12-8455212
[21:43:28] [Server thread/INFO]: [Lands] Loading server plugin Lands v7.14.1
[21:43:28] [Server thread/INFO]: [Lands] Using default item currency for economy. You can edit the currency item for each locale in the corresponding GUI language files. Strict mode: false
[21:43:28] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[21:43:29] [Server thread/INFO]: [Lands] Using SQLite: /home/container/plugins/Lands/Data
[21:43:29] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Starting...
[21:43:29] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Start completed.
[21:43:29] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[21:43:29] [Server thread/INFO]: [Lands] Setting up tables...
[21:43:29] [Server thread/INFO]: [Lands] Your SQL DBMS version: 3.46.0 (SQLite) Wiki: https://wiki.incredibleplugins.com/lands/configuration/database
[21:43:29] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[21:43:29] [Server thread/INFO]: [Lands] Added flag 'lands-claim' to the plugin WorldGuard.
[21:43:29] [Server thread/INFO]: [CustomCrafting] Loading server plugin CustomCrafting v4.16.9.1
[21:43:29] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.17-beta.7
[21:43:29] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v4.16.9.1
[21:43:29] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[21:43:29] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[21:43:29] [Server thread/INFO]: [CustomCrafting] Registering Custom Block Data
[21:43:29] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[21:43:29] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[21:43:29] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[21:43:29] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[21:43:29] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[21:43:29] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[21:43:29] [Server thread/INFO]: [PyroFarming] Loading server plugin PyroFarming v1.2.3
[21:43:29] [Server thread/INFO]: [TheGoldEconomy] Loading server plugin TheGoldEconomy v1.9.0
[21:43:29] [Server thread/INFO]: [PyroMining] Loading server plugin PyroMining v4.5.0
[21:43:29] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.7.0
[21:43:29] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.2.0
[21:43:29] [Server thread/INFO]: [ItemRenamerReloaded] Loading server plugin ItemRenamerReloaded v1.3
[21:43:29] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.23.4
[21:43:29] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (641 ms).
[21:43:30] [Server thread/INFO]: [Shopkeepers] Loading config.
[21:43:30] [Server thread/WARN]: [Shopkeepers] Config: Invalid living entity type name in 'enabled-living-shops': CREAKING
[21:43:30] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[21:43:30] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[21:43:30] [Server thread/WARN]: [Shopkeepers] Config: Invalid living entity type name in 'enabled-living-shops': CREAKING
[21:43:30] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[21:43:30] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[21:43:30] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[21:43:30] [Server thread/INFO]: [EssentialsDiscord] Loading server plugin EssentialsDiscord v2.21.1-dev+12-8455212
[21:43:30] [Server thread/INFO]: [DatapackLoader] Loading server plugin DatapackLoader v1.4.1
[21:43:30] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.2.8
[21:43:30] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.1-dev+12-8455212
[21:43:30] [Server thread/INFO]: [Boss] Loading server plugin Boss v5.4.4
[21:43:31] [Server thread/INFO]: [Boss] Warning: Boss could not hook into WorldGuard as the plugin is disabled! (DO NOT REPORT THIS TO Boss, look for errors above and contact support of 'WorldGuard')
[21:43:31] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[21:43:31] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.158
[21:43:31] [Server thread/INFO]:         __    
[21:43:31] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.158
[21:43:31] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[21:43:31] [Server thread/INFO]: 
[21:43:31] [Server thread/INFO]: [LuckPerms] Loading configuration...
[21:43:31] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[21:43:32] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[21:43:32] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[21:43:32] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 877ms)
[21:43:32] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[21:43:32] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[21:43:32] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[21:43:32] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[21:43:32] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[21:43:32] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.1-SNAPSHOT-1086;aee75c1
[21:43:32] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[21:43:32] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[21:43:32] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[21:43:32] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[21:43:32] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[21:43:33] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[21:43:33] [Server thread/INFO]: [eco] Enabling eco v6.75.2
[21:43:33] [Server thread/INFO]: [eco] Loading eco
[21:43:33] [ForkJoinPool.commonPool-worker-4/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 3 build(s) out of date.
You are running build 1086, the latest version is build 1089.
Update at https://ci.athion.net/job/FastAsyncWorldEdit
[21:43:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eco [6.75.2]
[21:43:33] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: eco
[21:43:33] [Server thread/INFO]: [eco] Loaded integrations: Lands, CustomCrafting, Essentials, Vault, PlaceholderAPI, WorldGuard, ItemsAdder
[21:43:33] [Server thread/INFO]: [eco] Scanning for conflicts...
[21:43:33] [Server thread/INFO]: [eco] No conflicts found!
[21:43:33] [Server thread/INFO]: [EcoEnchants] Enabling EcoEnchants v12.22.0
[21:43:33] [Server thread/INFO]: [EcoEnchants] Loading EcoEnchants
[21:43:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoenchants [12.22.0]
[21:43:33] [Server thread/INFO]: [EcoEnchants] Loaded integrations: Essentials
[21:43:33] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.17-beta.7
[21:43:33] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.21.1
[21:43:33] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.17.0.0
[21:43:33] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[21:43:33] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[21:43:33] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[21:43:33] [Server thread/INFO]: [WolfyUtilities]  - ItemsAdder
[21:43:33] [Server thread/INFO]: [WolfyUtilities]  - eco
[21:43:33] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[21:43:33] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for eco
[21:43:33] [Server thread/INFO]: [WolfyUtilities] Register API references
[21:43:34] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[21:43:34] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[21:43:34] [Server thread/INFO]: [DatapackLoader] Enabling DatapackLoader v1.4.1
[21:43:34] [ForkJoinPool.commonPool-worker-2/INFO]: [DatapackLoader] The '...plugins/DatapackLoader/datapacks' folder is empty. Please execute command 'dl help'.
[21:43:34] [Server thread/INFO]: Preparing level "world2"
[21:43:34] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[21:43:35] [Server thread/INFO]: Time elapsed: 637 ms
[21:43:35] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[21:43:35] [Server thread/INFO]: Time elapsed: 121 ms
[21:43:35] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[21:43:35] [Server thread/INFO]: Time elapsed: 49 ms
[21:43:35] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.3.1
[21:43:35] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[21:43:35] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13+82fdc65
[21:43:35] [Server thread/INFO]: No TreeType mapping for TreeGenerator.TreeType.PALE_OAK
[21:43:35] [Server thread/INFO]: The above message is displayed because your FAWE version is newer than 1.21.1-52-e08e667 (MC: 1.21.1) and contains features of future minecraft versions which do not exist in 1.21.1-52-e08e667 (MC: 1.21.1) hence the tree type PALE_OAK is not available. This is not an error. This version of FAWE will work on your version of  Minecraft. This is an informative message only.
[21:43:35] [Server thread/INFO]: No TreeType mapping for TreeGenerator.TreeType.PALE_OAK_CREAKING
[21:43:35] [Server thread/INFO]: The above message is displayed because your FAWE version is newer than 1.21.1-52-e08e667 (MC: 1.21.1) and contains features of future minecraft versions which do not exist in 1.21.1-52-e08e667 (MC: 1.21.1) hence the tree type PALE_OAK_CREAKING is not available. This is not an error. This version of FAWE will work on your version of  Minecraft. This is an informative message only.
[21:43:35] [Server thread/INFO]: [WorldGuard] (world2) TNT ignition is PERMITTED.
[21:43:35] [Server thread/INFO]: [WorldGuard] (world2) Lighters are PERMITTED.
[21:43:35] [Server thread/INFO]: [WorldGuard] (world2) Lava fire is PERMITTED.
[21:43:35] [Server thread/INFO]: [WorldGuard] (world2) Fire spread is UNRESTRICTED.
[21:43:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world2'
[21:43:35] [Server thread/INFO]: [WorldGuard] (world2_nether) TNT ignition is PERMITTED.
[21:43:35] [Server thread/INFO]: [WorldGuard] (world2_nether) Lighters are PERMITTED.
[21:43:35] [Server thread/INFO]: [WorldGuard] (world2_nether) Lava fire is PERMITTED.
[21:43:35] [Server thread/INFO]: [WorldGuard] (world2_nether) Fire spread is UNRESTRICTED.
[21:43:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world2_nether'
[21:43:35] [Server thread/INFO]: [WorldGuard] (world2_the_end) TNT ignition is PERMITTED.
[21:43:35] [Server thread/INFO]: [WorldGuard] (world2_the_end) Lighters are PERMITTED.
[21:43:35] [Server thread/INFO]: [WorldGuard] (world2_the_end) Lava fire is PERMITTED.
[21:43:35] [Server thread/INFO]: [WorldGuard] (world2_the_end) Fire spread is UNRESTRICTED.
[21:43:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world2_the_end'
[21:43:35] [Server thread/INFO]: [WorldGuard] Loading region data...
[21:43:35] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[21:43:36] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[21:43:36] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[21:43:36] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for PlaceholderAPI
[21:43:36] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.1-dev+12-8455212
[21:43:36] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[21:43:36] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[21:43:36] [Server thread/INFO]: [Essentials] No kits found to migrate.
[21:43:36] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected Reflection Sync Commands Provider as the provider for SyncCommandsProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[21:43:36] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[21:43:37] [Server thread/INFO]: [Essentials] Loaded 43517 items from items.json.
[21:43:37] [Server thread/INFO]: [Essentials] Using locale en_US
[21:43:37] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[21:43:37] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[21:43:37] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[21:43:37] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[21:43:37] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.38-SNAPSHOT (build 3765)
[21:43:37] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[21:43:37] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[bT.
[21:43:37] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[null.
[21:43:37] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.38-SNAPSHOT (build 3765) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R4/boss/CraftBossBar
    at Citizens.jar/net.citizensnpcs.nms.v1_21_R4.util.NMSImpl.<clinit>(NMSImpl.java:2742) ~[Citizens.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at Citizens.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:175) ~[Citizens.jar:?]
    at Citizens.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:180) ~[Citizens.jar:?]
    at Citizens.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:754) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:516) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1215) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R4.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[21:43:37] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.38-SNAPSHOT (build 3765)
[21:43:37] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.9-hotfix-1
[21:43:37] [Server thread/WARN]: [ItemsAdder] 'allow_other_plugins_resourcepacks' enabled. Do not report resourcepack loading issues.
[21:43:37] [Server thread/INFO]: [ItemsAdder] 
                                                   ItemsAdder 4.0.9-hotfix-1
  ___  ___        __        __   __   ___  __      ProtocolLib 5.3.0
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     Paper 1.21.1-52-e08e667 (MC: 1.21.1)
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Build Date: 2025-03-18_14.19.23
                                                   Java Version: 21.0.6
                                                   OS: Linux 5.15.0-131-generic                                               
[21:43:37] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Found server version 1.21.1
[21:43:37] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Loaded transparent mappings.
[21:43:37] [Server thread/INFO]: [ItemsAdder] ViaVersion detected. Do not report glitches when joining using game versions different than the server version.
[21:43:37] [Server thread/INFO]: [ItemsAdder] More info: https://github.com/PluginBugs/Issues-ItemsAdder/issues/3683
[21:43:37] [Server thread/ERROR]: [ItemsAdder] Failed to hook into Citizens. Please update make sure you're running a compatible version.
[21:43:37] [Server thread/WARN]: java.lang.NoClassDefFoundError: net/citizensnpcs/api/trait/Trait
[21:43:37] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.defineClass1(Native Method)
[21:43:37] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1027)
[21:43:37] [Server thread/WARN]:     at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150)
[21:43:37] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:243)
[21:43:37] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593)
[21:43:37] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169)
[21:43:37] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[21:43:37] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[21:43:37] [Server thread/WARN]:     at ItemsAdder_4.0.9-hotfix-1.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.register(SourceFile:40)
[21:43:37] [Server thread/WARN]:     at ItemsAdder_4.0.9-hotfix-1.jar//dev.lone.itemsadder.Main.onEnable(SourceFile:357)
[21:43:37] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[21:43:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:43:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:43:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:43:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[21:43:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[21:43:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:754)
[21:43:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:516)
[21:43:37] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[21:43:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1215)
[21:43:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[21:43:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:43:37] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.trait.Trait
[21:43:37] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[21:43:37] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[21:43:37] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[21:43:37] [Server thread/WARN]:     ... 22 more
[21:43:37] [Server thread/INFO]: [ItemsAdder] [Host] Starting self-host webserver on port: 25587
[21:43:37] [Server thread/INFO]: [ItemsAdder] [SelfHost] Rate limiter: max 3 requests / 2s.
[21:43:37] [Server thread/INFO]: [ItemsAdder] [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[21:43:38] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[21:43:38] [Server thread/INFO]: [ItemsAdder] [Pack] Done extracting internal contents from .jar
[21:43:38] [Server thread/ERROR]: [ItemsAdder] Missing namespace in file: /contents/Ranks/config.yml
[21:43:38] [Server thread/ERROR]: [ItemsAdder] [Items] 'iavehicles:ufo_toy'. Error: 'max_durability' must be > 0. File: /contents/iavehicles/configs/items/ufo_toy.yml
[21:43:38] [Server thread/INFO]: [PyroLib] Enabling PyroLib v1.4.6
[21:43:38] [Server thread/INFO]: [PyroFishingPro] Enabling PyroFishingPro v4.9.25
[21:43:39] [Server thread/INFO]: ==================================================================================
[21:43:39] [Server thread/INFO]: 
[21:43:39] [Server thread/INFO]: __________                     ___________.__       .__    .__                
[21:43:39] [Server thread/INFO]: \______   \___.__._______  ____\_   _____/|__| _____|  |__ |__| ____    ____  
[21:43:39] [Server thread/INFO]:  |     ___<   |  |\_  __ \/  _ \|    __)  |  |/  ___/  |  \|  |/    \  / ___\ 
[21:43:39] [Server thread/INFO]:  |    |    \___  | |  | \(  <_> )     \   |  |\___ \|   Y  \  |   |  \/ /_/  >
[21:43:39] [Server thread/INFO]:  |____|    / ____| |__|   \____/\___  /   |__/____  >___|  /__|___|  /\___  / 
[21:43:39] [Server thread/INFO]:            \/                       \/            \/     \/        \//_____/  
[21:43:39] [Server thread/INFO]: 
[21:43:39] [Server thread/INFO]: - Loading v4.9.25...
[21:43:39] [Server thread/INFO]: 
[21:43:39] [Server thread/INFO]: - Registered to: 1491440
[21:43:39] [Server thread/INFO]: - Successfully hooked into WorldGuard.
[21:43:39] [Server thread/INFO]: - Loaded (126) Custom Fish successfully.
[21:43:39] [Server thread/INFO]: - Loaded (0) fishing baits.
[21:43:39] [Server thread/INFO]: - Successfully hooked into PlaceholderAPI.
[21:43:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: PyroFishingPro [4.9.25]
[21:43:39] [Server thread/INFO]: 
[21:43:39] [Server thread/INFO]: ==================================================================================
[21:43:39] [Server thread/INFO]: 
[21:43:39] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.1-dev+12-8455212
[21:43:39] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[21:43:39] [Server thread/INFO]: [Lands] Enabling Lands v7.14.1
[21:43:39] [Server thread/INFO]: [Lands]  _                        _      
[21:43:39] [Server thread/INFO]: [Lands] | |                      | |     
[21:43:39] [Server thread/INFO]: [Lands] | |      __ _  _ __    __| | ___ 
[21:43:39] [Server thread/INFO]: [Lands] | |     / _` || '_ \  / _` |/ __|
[21:43:39] [Server thread/INFO]: [Lands] | |____| (_| || | | || (_| |\__ \
[21:43:39] [Server thread/INFO]: [Lands] \_____/ \__,_||_| |_| \__,_||___/
[21:43:39] [Server thread/INFO]: [Lands] Version: 7.14.1 Previous: 7.14.1
[21:43:39] [Server thread/INFO]: [Lands] Server: 1.21.1 running Paper
[21:43:39] [Server thread/INFO]: [Lands] Licensed to: 1491440
[21:43:39] [Server thread/INFO]: [Lands] Experiencing issues or having questions? Join our Discord!
[21:43:39] [Server thread/INFO]: [Lands] Discord: https://discord.incredibleplugins.com
[21:43:39] [Server thread/INFO]: [Lands] Wiki: https://wiki.incredibleplugins.com/lands
[21:43:39] [Server thread/INFO]: [Lands]  
[21:43:39] [Server thread/INFO]: [Lands] Performing initial data load.
[21:43:39] [Server thread/INFO]: [Lands] There are currently 0 created land(s).
[21:43:39] [Server thread/INFO]: [Lands] Initial data load took 3 ms.
[21:43:40] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v4.16.9.1
[21:43:40] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.1.0 translated by WolfyScript
[21:43:40] [Server thread/INFO]: [CustomCrafting] Loaded active language "en_US" v6.1.0 translated by WolfyScript
[21:43:40] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[21:43:40] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[21:43:40] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[21:43:40] [Server thread/INFO]: [CustomCrafting]     Version      | v4.16.9.1
[21:43:40] [Server thread/INFO]: [CustomCrafting]     WolfyUtils   | v4.17-beta.7
[21:43:40] [Server thread/INFO]: [CustomCrafting]     Bukkit       | 1.21.1-52-e08e667 (MC: 1.21.1)(API: 1.21.1-R0.1-SNAPSHOT)
[21:43:40] [Server thread/INFO]: [CustomCrafting] 
[21:43:40] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[21:43:40] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Obsidian_Sword, LiveJunye, Mithran, Teddy
[21:43:40] [Server thread/INFO]: [CustomCrafting] Invictus_Vulpes , Luuk Musch, fioxu, JorshStark, Perny Dev, Charlie
[21:43:40] [Server thread/INFO]: [CustomCrafting] iachen, whja t, Green Masks, lance fector, Jack Snellings, MineHouse Server
[21:43:40] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[21:43:40] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[21:43:40] [Server thread/INFO]: [CustomCrafting] Registering PlaceHolder
[21:43:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrafting [4.16.9.1]
[21:43:40] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[21:43:40] [Server thread/INFO]: [CustomCrafting] Initiating Inventory GUIs
[21:43:40] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[21:43:40] [Server thread/INFO]: [CustomCrafting] Loading Recipes & Items
[21:43:40] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[21:43:40] [Server thread/INFO]: [CustomCrafting] [LOCAL] Using 6 threads
[21:43:40] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[21:43:40] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Items
[21:43:41] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Recipes
[21:43:41] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 7 recipes in 65ms
[21:43:41] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[21:43:41] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[21:43:41] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[21:43:41] [Server thread/INFO]: [PyroFarming] Enabling PyroFarming v1.2.3
[21:43:41] [Server thread/INFO]: ============================================================================
[21:43:41] [Server thread/INFO]: 
[21:43:41] [Server thread/INFO]: __________                     ___________                    .__                
[21:43:41] [Server thread/INFO]: \______   \___.__._______  ____\_   _____/____ _______  _____ |__| ____    ____ 
[21:43:41] [Server thread/INFO]:  |     ___<   |  |\_  __ \/  _ \|    __) \__  \\_  __ \/     \|  |/    \  / ___\ 
[21:43:41] [Server thread/INFO]:  |    |    \___  | |  | \(  <_> )     \   / __ \|  | \/  Y Y  \  |   |  \/ /_/  >
[21:43:41] [Server thread/INFO]:  |____|    / ____| |__|   \____/\___  /  (____  /__|  |__|_|  /__|___|  /\___  / 
[21:43:41] [Server thread/INFO]:            \/                       \/        \/            \/        \//_____/  
[21:43:41] [Server thread/INFO]: 
[21:43:41] [Server thread/INFO]: » Loading v1.2.3...
[21:43:41] [Server thread/INFO]: 
[21:43:41] [Server thread/INFO]: » Registered to: 1491440
[21:43:41] [Server thread/INFO]: » Running on PyroLib v1.4.6
[21:43:41] [Server thread/INFO]: » Hooked into Vault Successfully.
[21:43:41] [Server thread/INFO]: 
[21:43:41] [Server thread/INFO]: » Loaded (26) custom plants.
[21:43:41] [Server thread/INFO]: » Loaded (9) custom bushes.
[21:43:41] [Server thread/INFO]: 
[21:43:41] [Server thread/INFO]: » Finished loading in 313ms
[21:43:41] [Server thread/INFO]: 
[21:43:41] [Server thread/INFO]: ============================================================================
[21:43:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: PyroFarming [1.2.3]
[21:43:41] [Server thread/INFO]: [TheGoldEconomy] Enabling TheGoldEconomy v1.9.0
[21:43:41] [Server thread/INFO]: [TheGoldEconomy] [ACF] Enabled Asynchronous Tab Completion Support!
[21:43:42] [Server thread/INFO]: [TheGoldEconomy] VaultAPI hooked into TheGoldEconomy
[21:43:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: thegoldeconomy [1.9.0]
[21:43:42] [Server thread/INFO]: [PyroMining] Enabling PyroMining v4.5.0
[21:43:42] [Server thread/INFO]: ============================================================================
[21:43:42] [Server thread/INFO]: 
[21:43:42] [Server thread/INFO]: __________                         _____  .__       .__                
[21:43:42] [Server thread/INFO]: \______   \___.__._______  ____   /     \ |__| ____ |__| ____    ____  
[21:43:42] [Server thread/INFO]:  |     ___<   |  |\_  __ \/  _ \ /  \ /  \|  |/    \|  |/    \  / ___\ 
[21:43:42] [Server thread/INFO]:  |    |    \___  | |  | \(  <_> )    Y    \  |   |  \  |   |  \/ /_/  >
[21:43:42] [Server thread/INFO]:  |____|    / ____| |__|   \____/\____|__  /__|___|  /__|___|  /\___  / 
[21:43:42] [Server thread/INFO]:            \/                           \/        \/        \//_____/  
[21:43:42] [Server thread/INFO]: 
[21:43:42] [Server thread/INFO]: » Loading... v4.5.0
[21:43:42] [Server thread/INFO]: 
[21:43:42] [Server thread/INFO]: » Registered to: 1491440
[21:43:42] [Server thread/INFO]: » Running on PyroLib v1.4.6
[21:43:43] [Server thread/INFO]: [PyroMining] Hooked into PAPI
[21:43:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: PyroMining [4.5.0]
[21:43:43] [Server thread/INFO]: 
[21:43:43] [Server thread/INFO]: » Finished loading in 575ms
[21:43:43] [Server thread/INFO]: 
[21:43:43] [Server thread/INFO]: ============================================================================
[21:43:43] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.7.0
[21:43:43] [Server thread/INFO]: [ItemEdit] Hooking into MiniMessageAPI see https://webui.advntr.dev/
[21:43:43] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[21:43:43] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[21:43:43] [Server thread/INFO]: [ItemEdit] Hooking into PlaceHolderAPI
[21:43:43] [Server thread/INFO]: [ItemEdit] placeholders:
[21:43:43] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[21:43:43] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[21:43:43] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[21:43:43] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[21:43:43] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[21:43:43] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[21:43:43] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[21:43:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[21:43:43] [Server thread/INFO]: [ItemEdit] # Enabled (took 167 ms)
[21:43:43] [Server thread/INFO]: [TAB] Enabling TAB v5.2.0
[21:43:43] [Server thread/INFO]: [TAB] Loaded NMS hook in 38ms
[21:43:43] [Server thread/INFO]: [TAB] Enabled in 399ms
[21:43:43] [Server thread/INFO]: [ItemRenamerReloaded] Enabling ItemRenamerReloaded v1.3
[21:43:43] [Server thread/INFO]: [ItemRenamerReloaded] Vault is installed! You can now enable the economy functionality!
[21:43:43] [Server thread/INFO]: [ItemRenamerReloaded] PlaceholderAPI is installed! You can now use Placeholders in your custom items!
[21:43:43] [Server thread/INFO]: [ItemRenamerReloaded] IRR plugin has been successfully enabled.
[21:43:43] [Server thread/INFO]: [ItemRenamerReloaded] Plugin version: 1.3 (Made with love by Xdlob9)
[21:43:43] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.23.4
[21:43:43] [Server thread/INFO]: [EssentialsDiscord] Enabling EssentialsDiscord v2.21.1-dev+12-8455212
[21:43:44] [Server thread/INFO]: [EssentialsDiscord] Starting Metrics. Opt-out using the global bStats config.
[21:43:44] [Server thread/INFO]: [EssentialsDiscord] Attempting to login to Discord...
[21:43:44] [Server thread/ERROR]: [EssentialsDiscord] An error occurred while logging into Discord, which has caused the plugin to disable itself: 
No token provided! Please follow the tutorial in the config in order to setup the plugin.
[21:43:44] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.8
[21:43:44] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[21:43:45] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[21:43:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.2.8]
[21:43:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.2.8]
[21:43:45] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[21:43:45] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[21:43:45] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[21:43:45] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[21:43:45] [Server thread/INFO]: [AuraSkills] Loaded 151 config options in 63 ms
[21:43:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[21:43:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[21:43:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[21:43:45] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[21:43:45] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[21:43:45] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.1-dev+12-8455212
[21:43:45] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[21:43:45] [Server thread/INFO]: [Boss] Enabling Boss v5.4.4
[21:43:45] [Server thread/INFO]: [Boss]  ___   ___   __   __  
[21:43:45] [Server thread/INFO]: [Boss] | |_) / / \ ( (` ( (` 
[21:43:45] [Server thread/INFO]: [Boss] |_|_) \_\_/ _)_) _)_) 
[21:43:45] [Server thread/INFO]:   
[21:43:45] [Server thread/INFO]: [Boss] Warning: Boss failed to hook into Citizens because the plugin is did not start properly, or our hook is outdated. Check your console for earlier errors.
[21:43:45] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: Boss
[21:43:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: boss [5.4.4]
[21:43:45] [Server thread/INFO]: [Boss] Using timezone Etc/UTC for spawning rules.
[21:43:46] [Server thread/INFO]: [Boss] WorldGuard detected. You can set the 'boss-target' flag to false to stop Bosses automatically targeting players inside regions.
[21:43:46] [Server thread/INFO]:   
[21:43:46] [Server thread/INFO]: [Boss] Tutorial:
[21:43:46] [Server thread/INFO]: [Boss] https://github.com/kangarko/boss/wiki
[21:43:46] [Server thread/INFO]:   
[21:43:46] [Server thread/INFO]: [Boss] Get help:
[21:43:46] [Server thread/INFO]: [Boss] https://github.com/kangarko/boss/issues
[21:43:46] [Server thread/INFO]:   
[21:43:46] [Server thread/INFO]: [libreforge] Enabling libreforge v4.75.0
[21:43:46] [Server thread/INFO]: [libreforge] Loading libreforge
[21:43:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libreforge [4.75.0]
[21:43:46] [Server thread/INFO]: [libreforge] Loaded integrations: AuraSkills, Citizens, TAB, Vault, WorldGuard
[21:43:46] [Server thread/INFO]: [libreforge] 
[21:43:46] [Server thread/INFO]: [libreforge] Hey, what's this plugin doing here? I didn't install it!
[21:43:46] [Server thread/INFO]: [libreforge] libreforge is the effects system for plugins like EcoEnchants,
[21:43:46] [Server thread/INFO]: [libreforge] EcoJobs, EcoItems, etc. If you're looking for config options for
[21:43:46] [Server thread/INFO]: [libreforge] things like cooldown messages, lrcdb, and stuff like that, you'll
[21:43:46] [Server thread/INFO]: [libreforge] find it under /plugins/libreforge
[21:43:46] [Server thread/INFO]: [libreforge] 
[21:43:46] [Server thread/INFO]: [libreforge] Don't worry about updating libreforge, it's handled automatically!
[21:43:46] [Server thread/INFO]: [libreforge] 
[21:43:46] [Server thread/INFO]: [spark] Starting background profiler...
[21:43:46] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[21:43:46] [Server thread/INFO]: 0 placeholder hook(s) registered!
[21:43:46] [Server thread/INFO]: Done preparing level "world2" (12.385s)
[21:43:46] [Server thread/INFO]: Running delayed init tasks
[21:43:46] [Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[21:43:46] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] [License] Store product licensed to: SentientSword (493835)
[21:43:46] [Craft Scheduler Thread - 10 - Essentials/INFO]: [Essentials] Fetching version information...
[21:43:46] [Craft Scheduler Thread - 21 - Boss/INFO]: [Boss] Warning: Boss could not hook into Citizens as the plugin is disabled! (DO NOT REPORT THIS TO Boss, look for errors above and contact support of 'Citizens')
[21:43:46] [Craft Scheduler Thread - 15 - Vault/INFO]: [Vault] Checking for Updates ... 
[21:43:46] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[21:43:46] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[21:43:46] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'white_go_cart'. Ingredient not found 'iasurvival:plastic_plate'. File: /contents/iavehicles/configs/recipes/recipe_white_go_cart.yml
[21:43:46] [Craft Scheduler Thread - 15 - Vault/INFO]: [Vault] No new version available
[21:43:46] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'shopping_cart'. Ingredient not found 'iasurvival:plastic_plate'. File: /contents/iavehicles/configs/recipes/recipe_shopping_cart.yml
[21:43:46] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'blank_disc'. Ingredient not found 'iasurvival:plastic'. File: /contents/iamusic/configs/recipes.yml
[21:43:46] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'music_disc_cdk_sunday'. Ingredient not found 'iasurvival:dark_amethyst_prism'. File: /contents/iamusic/configs/recipes.yml
[21:43:46] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'music_disc_vidian_aether_theories'. Ingredient not found 'iasurvival:ruby'. File: /contents/iamusic/configs/recipes.yml
[21:43:46] [Craft Scheduler Thread - 19 - ItemRenamerReloaded/INFO]: [ItemRenamerReloaded] You are using the latest version. (1.3)
[21:43:46] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'clip'. Ingredient not found 'iasurvival:plastic_plate'. File: /contents/iaweapons/configs/recipes/clip.yml
[21:43:46] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] [Recipes] 'ufo_toy'. Result item 'iavehicles:ufo_toy' not found. File /contents/iavehicles/configs/recipes/recipe_ufo_toy.yml
[21:43:46] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'grenade'. Ingredient not found 'iasurvival:plastic_plate'. File: /contents/iaweapons/configs/recipes/grenade.yml
[21:43:46] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'ufo'. Ingredient not found 'iasurvival:end_ingot'. File: /contents/iavehicles/configs/recipes/recipe_ufo.yml
[21:43:46] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'ufo'. Ingredient not found 'iaalchemy:small_energy_capsule'. File: /contents/iavehicles/configs/recipes/recipe_ufo.yml
[21:43:46] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'ufo'. Ingredient not found 'iaalchemy:mysterious_material'. File: /contents/iavehicles/configs/recipes/recipe_ufo.yml
[21:43:46] [Craft Scheduler Thread - 13 - ItemsAdder/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[21:43:46] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[21:43:47] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 312 total sources
[21:43:47] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[21:43:47] [Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 0 level rewards
[21:43:47] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[21:43:47] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[21:43:48] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.craftbukkit.inventory.CraftMetaSkull.setProfile(net.minecraft.world.item.component.ResolvableProfile)
[21:43:48] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredMethod(Class.java:2848)
[21:43:48] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredMethod(AbstractDefaultRulesReflectionProxy.java:95)
[21:43:48] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredMethod(Unknown Source)
[21:43:48] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.internal.spigot.proxy.v1_21.common.modern.ModernSkullKt.setTexture(ModernSkull.kt:39)
[21:43:48] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.internal.spigot.proxy.v1_21.Skull.setSkullTexture(Skull.kt:12)
[21:43:48] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.internal.spigot.EcoImpl.setSkullTexture(EcoImpl.kt:331)
[21:43:48] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.util.SkullUtils.setSkullTexture(SkullUtils.java:20)
[21:43:48] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.internal.items.ArgParserTexture.parseArguments(ArgParserTexture.kt:31)
[21:43:48] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.items.Items.doParse(Items.java:329)
[21:43:48] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.items.ItemsLookupHandler.parse(ItemsLookupHandler.java:31)
[21:43:48] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.items.ItemsLookupHandler.parse(ItemsLookupHandler.java:14)
[21:43:48] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.lookup.LookupHandler.parseKey(LookupHandler.java:36)
[21:43:48] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.items.Items.lookup(Items.java:210)
[21:43:48] [Server thread/WARN]:     at EcoEnchants v12.22.0.jar//com.willfp.ecoenchants.enchant.EnchantGUI.reload$lambda$6(EnchantGUI.kt:64)
[21:43:48] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.gui.GUIHelperExtensions.menu(GUIHelpers.kt:200)
[21:43:48] [Server thread/WARN]:     at EcoEnchants v12.22.0.jar//com.willfp.ecoenchants.enchant.EnchantGUI.reload$core_plugin(EnchantGUI.kt:46)
[21:43:48] [Server thread/WARN]:     at EcoEnchants v12.22.0.jar//com.willfp.ecoenchants.EcoEnchantsPlugin.handleReload(EcoEnchantsPlugin.kt:116)
[21:43:48] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.EcoPlugin.handleLifecycle(EcoPlugin.java:736)
[21:43:48] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.EcoPlugin.reload(EcoPlugin.java:653)
[21:43:48] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.EcoPlugin.lambda$onEnable$6(EcoPlugin.java:448)
[21:43:48] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:43:48] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:43:48] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1226)
[21:43:48] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[21:43:48] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:43:48] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[21:43:48] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[21:43:48] [Server thread/INFO]: [Lands] Added region provider: WorldGuard Type: SERVER
[21:43:48] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated Vault economy into economy system. Name: TheGoldEconomy
[21:43:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lands [7.14.1]
[21:43:48] [Server thread/INFO]: [Lands] [Integrations] Successfully registered placeholders at PlaceholderAPI. More info: https://wiki.incredibleplugins.com/lands/configuration/placeholderapi-placeholders
[21:43:48] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated FastAsyncWorldEdit. 
[21:43:48] [Server thread/INFO]: [Lands] [Integrations] Successfully loaded LuckPerms contexts. More information: https://wiki.incredibleplugins.com/lands/permissions/luckperms-context
[21:43:48] [Server thread/INFO]: [Lands] [Economy] Next economic tasks (taxes, upkeep, nations upkeep) execution is in 5 day(s), 1 hour(s), 16 minute(s), 11 second(s). Interval: 7 day(s)
[21:43:48] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 5.3.2, you're on: 5.3.1
[21:43:48] [Server thread/INFO]: Done (37.535s)! For help, type "help"
[21:43:48] [Server thread/INFO]: Timings Reset
[21:43:49] [Server thread/INFO]: [eco] Loaded eco
[21:43:49] [Server thread/WARN]: [EcoEnchants] 19 enchantments were not loaded because they need EcoSkills to be installed!
[21:43:49] [Server thread/WARN]: [EcoEnchants] Either download EcoSkills or delete the folder at /plugins/EcoEnchants/enchants/ecoskills to remove this message
[21:43:49] [Server thread/WARN]: [EcoEnchants] 1 enchantments were not loaded because they need EcoJobs to be installed!
[21:43:49] [Server thread/WARN]: [EcoEnchants] Either download EcoJobs or delete the folder at /plugins/EcoEnchants/enchants/ecojobs to remove this message
[21:43:49] [Server thread/WARN]: [EcoEnchants] 1 enchantments were not loaded because they need EcoPets to be installed!
[21:43:49] [Server thread/WARN]: [EcoEnchants] Either download EcoPets or delete the folder at /plugins/EcoEnchants/enchants/ecopets to remove this message
[21:43:49] [Server thread/ERROR]: [EcoEnchants] Error while running lifecycle task!
[21:43:49] [Server thread/ERROR]: [EcoEnchants] The plugin may not function properly
[21:43:49] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.craftbukkit.inventory.CraftMetaSkull.setProfile(net.minecraft.world.item.component.ResolvableProfile)
[21:43:49] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredMethod(Class.java:2848)
[21:43:49] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredMethod(AbstractDefaultRulesReflectionProxy.java:95)
[21:43:49] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredMethod(Unknown Source)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.internal.spigot.proxy.v1_21.common.modern.ModernSkullKt.setTexture(ModernSkull.kt:39)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.internal.spigot.proxy.v1_21.Skull.setSkullTexture(Skull.kt:12)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.internal.spigot.EcoImpl.setSkullTexture(EcoImpl.kt:331)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.util.SkullUtils.setSkullTexture(SkullUtils.java:20)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.internal.items.ArgParserTexture.parseArguments(ArgParserTexture.kt:31)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.items.Items.doParse(Items.java:329)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.items.ItemsLookupHandler.parse(ItemsLookupHandler.java:31)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.items.ItemsLookupHandler.parse(ItemsLookupHandler.java:14)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.lookup.LookupHandler.parseKey(LookupHandler.java:36)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.items.Items.lookup(Items.java:210)
[21:43:49] [Server thread/WARN]:     at EcoEnchants v12.22.0.jar//com.willfp.ecoenchants.enchant.EnchantGUI.reload$lambda$6(EnchantGUI.kt:64)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.gui.GUIHelperExtensions.menu(GUIHelpers.kt:200)
[21:43:49] [Server thread/WARN]:     at EcoEnchants v12.22.0.jar//com.willfp.ecoenchants.enchant.EnchantGUI.reload$core_plugin(EnchantGUI.kt:46)
[21:43:49] [Server thread/WARN]:     at EcoEnchants v12.22.0.jar//com.willfp.ecoenchants.EcoEnchantsPlugin.handleReload(EcoEnchantsPlugin.kt:116)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.EcoPlugin.handleLifecycle(EcoPlugin.java:736)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.EcoPlugin.reload(EcoPlugin.java:653)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.EcoPlugin.reload(EcoPlugin.java:635)
[21:43:49] [Server thread/WARN]:     at eco-6.75.2-all.jar//com.willfp.eco.core.EcoPlugin.afterLoad(EcoPlugin.java:602)
[21:43:49] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:43:49] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:43:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1726)
[21:43:49] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[21:43:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[21:43:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[21:43:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[21:43:49] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:43:49] [Server thread/INFO]: [EcoEnchants] Loaded EcoEnchants
[21:43:49] [Server thread/INFO]: [libreforge] Loaded libreforge
[21:43:51] [ForkJoinPool.commonPool-worker-4/INFO]: [Lands] There is a new version available: 7.15.0
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'lava_lamp'. Ingredient not found 'iasurvival:iron_plate'. File: /contents/iadeco/configs/recipes/recipes.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'monitor'. Ingredient not found 'iasurvival:plastic_plate'. File: /contents/iadeco/configs/recipes/recipes.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'tv'. Ingredient not found 'iasurvival:plastic_plate'. File: /contents/iadeco/configs/recipes/recipes.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'mini_fridge'. Ingredient not found 'iasurvival:iron_plate'. File: /contents/iadeco/configs/recipes/recipes.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'vending_machine'. Ingredient not found 'iasurvival:iron_plate'. File: /contents/iadeco/configs/recipes/recipes.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'coffee_machine'. Ingredient not found 'iasurvival:iron_plate'. File: /contents/iadeco/configs/recipes/recipes.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'white_chandeliers'. Ingredient not found 'iasurvival:plastic'. File: /contents/iadeco/configs/recipes/recipes.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'shotgun_cartridge'. Ingredient not found 'iasurvival:plastic_plate'. File: /contents/iaweapons/configs/recipes/shotgun_cartridge.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'energy_orb' not found for vehicle 'iavehicles:broomstick'. File /contents/iavehicles/configs/air/broomstick.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'small_energy_capsule' not found for vehicle 'iavehicles:broomstick'. File /contents/iavehicles/configs/air/broomstick.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'energy_capsule' not found for vehicle 'iavehicles:broomstick'. File /contents/iavehicles/configs/air/broomstick.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'energy_orb' not found for vehicle 'iavehicles:ufo'. File /contents/iavehicles/configs/air/ufo.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'small_energy_capsule' not found for vehicle 'iavehicles:ufo'. File /contents/iavehicles/configs/air/ufo.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'energy_capsule' not found for vehicle 'iavehicles:ufo'. File /contents/iavehicles/configs/air/ufo.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'banana' not found for vehicle 'iavehicles:shopping_cart'. File /contents/iavehicles/configs/ground/shopping_cart.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'pear' not found for vehicle 'iavehicles:shopping_cart'. File /contents/iavehicles/configs/ground/shopping_cart.yml
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] Loaded 121 items
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] Used 0/750 REAL_NOTE block IDs
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] Used 31/6608 font_images
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 9 categories
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[21:43:52] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL (self-host): http://198.244.176.27:25587/generated.zip
[21:43:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[21:43:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[21:43:52] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for ItemsAdder
[21:43:52] [Server thread/INFO]: [CustomCrafting] [LOCAL] Validated 0 recipes from 0 pending recipes
[21:43:52] [Server thread/ERROR]: Could not pass event ItemsAdderLoadDataEvent to ItemsAdder v4.0.9-hotfix-1
java.lang.NoClassDefFoundError: net/citizensnpcs/api/CitizensAPI
    at ItemsAdder_4.0.9-hotfix-1.jar/dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.reload(SourceFile:85) ~[ItemsAdder_4.0.9-hotfix-1.jar:?]
    at ItemsAdder_4.0.9-hotfix-1.jar/itemsadder.m.ch.a(SourceFile:430) ~[ItemsAdder_4.0.9-hotfix-1.jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at ItemsAdder_4.0.9-hotfix-1.jar/itemsadder.m.ait.a(SourceFile:74) ~[ItemsAdder_4.0.9-hotfix-1.jar:?]
    at ItemsAdder_4.0.9-hotfix-1.jar/itemsadder.m.ag.e(SourceFile:981) ~[ItemsAdder_4.0.9-hotfix-1.jar:?]
    at ItemsAdder_4.0.9-hotfix-1.jar/itemsadder.m.agm.f(SourceFile:130) ~[ItemsAdder_4.0.9-hotfix-1.jar:?]
    at ItemsAdder_4.0.9-hotfix-1.jar/itemsadder.m.ag.a(SourceFile:979) ~[ItemsAdder_4.0.9-hotfix-1.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1726) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.CitizensAPI
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 20 more
[21:46:18] [User Authenticator #0/INFO]: UUID of player LazyToNameThis is b8c0c2a3-9274-4add-bba5-472efdf7b9e5
[21:46:20] [TAB Processing Thread/INFO]: [TAB] [WARN] Player LazyToNameThis's group (dev) is not in sorting list! Sorting list: owner,admin,mod,helper,builder,vip,default. Player will be sorted on the bottom.
[21:46:20] [Server thread/WARN]: [ItemsAdder] 'LazyToNameThis' is using a different protocol version of the game (770) than the server (767).
[21:46:20] [Server thread/WARN]: [ItemsAdder] This may cause gameplay and graphical issues. Consider to avoid multi-version servers.
[21:46:20] [Server thread/INFO]: LazyToNameThis joined the game
[21:46:20] [Server thread/INFO]: LazyToNameThis[/174.65.228.29:57928] logged in with entity id 28 at ([world2]-579.0086010585898, 264.9059225775199, -549.3425044295927)
[21:46:25] [Server thread/ERROR]: Could not pass event PlaceBlockEvent to WorldGuard v7.0.13+82fdc65
java.lang.ExceptionInInitializerError: null
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    ... 48 more
[21:46:25] [Server thread/ERROR]: Could not pass event PlaceBlockEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    ... 48 more
[21:46:31] [Server thread/ERROR]: Could not pass event PlaceBlockEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    ... 48 more
[21:46:35] [Server thread/ERROR]: Could not pass event BlockSpreadEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockSpread(WorldGuardBlockListener.java:553) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor138.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:969) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:953) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:50) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:46:39] [Server thread/ERROR]: Could not pass event BlockGrowEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.handleGrow(WorldGuardBlockListener.java:642) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockGrow(WorldGuardBlockListener.java:637) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor131.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(CraftEventFactory.java:1327) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(CraftEventFactory.java:1318) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:52) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:46:42] [Server thread/ERROR]: Could not pass event PlaceBlockEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionFlagsListener.onPlaceBlock(RegionFlagsListener.java:67) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor193.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onBlockIgnite(EventAbstractionListener.java:633) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor206.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callBlockIgniteEvent(CraftEventFactory.java:1582) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.material.LavaFluid.randomTick(LavaFluid.java:89) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.material.FluidState.randomTick(FluidState.java:90) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.LiquidBlock.randomTick(LiquidBlock.java:98) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:46:42] [Server thread/ERROR]: Could not pass event PlaceBlockEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:166) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onBlockIgnite(EventAbstractionListener.java:633) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor206.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callBlockIgniteEvent(CraftEventFactory.java:1582) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.material.LavaFluid.randomTick(LavaFluid.java:89) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.material.FluidState.randomTick(FluidState.java:90) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.LiquidBlock.randomTick(LiquidBlock.java:98) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:46:47] [Server thread/ERROR]: Could not pass event BlockBurnEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onBlockBurn(EventAbstractionListener.java:262) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor244.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.block.FireBlock.trySpread(FireBlock.java:290) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.FireBlock.tick(FireBlock.java:218) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.tick(BlockBehaviour.java:1222) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickBlock(ServerLevel.java:1192) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.ticks.LevelTicks.runCollectedTicks(LevelTicks.java:192) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.ticks.LevelTicks.tick(LevelTicks.java:89) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:673) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:46:47] [Server thread/ERROR]: Could not pass event BlockFadeEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockFade(WorldGuardBlockListener.java:702) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor137.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.block.FireBlock.updateShape(FireBlock.java:121) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.updateShape(BlockBehaviour.java:1263) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.redstone.NeighborUpdater.executeShapeUpdate(NeighborUpdater.java:48) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.redstone.CollectingNeighborUpdater$ShapeUpdate.runNext(CollectingNeighborUpdater.java:152) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.redstone.CollectingNeighborUpdater.runUpdates(CollectingNeighborUpdater.java:80) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.redstone.CollectingNeighborUpdater.addAndRun(CollectingNeighborUpdater.java:65) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.redstone.CollectingNeighborUpdater.shapeUpdate(CollectingNeighborUpdater.java:30) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.neighborShapeChanged(Level.java:1237) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.updateNeighbourShapes(BlockBehaviour.java:1190) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.notifyAndUpdatePhysics(Level.java:1147) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.setBlock(Level.java:1098) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.setBlock(Level.java:1012) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.removeBlock(Level.java:1167) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.FireBlock.trySpread(FireBlock.java:306) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.FireBlock.tick(FireBlock.java:218) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.tick(BlockBehaviour.java:1222) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickBlock(ServerLevel.java:1192) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.ticks.LevelTicks.runCollectedTicks(LevelTicks.java:192) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.ticks.LevelTicks.tick(LevelTicks.java:89) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:673) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:46:49] [Server thread/ERROR]: Could not pass event UseBlockEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onUseBlock$2(RegionProtectionListener.java:258) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.UseBlockEvent.filter(UseBlockEvent.java:39) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.UseBlockEvent.filter(UseBlockEvent.java:39) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onUseBlock(RegionProtectionListener.java:252) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor189.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireAndTestCancel(Events.java:60) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.debounce.legacy.AbstractEventDebounce.debounce(AbstractEventDebounce.java:56) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.debounce.legacy.BlockEntityEventDebounce.debounce(BlockEntityEventDebounce.java:36) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityInteract(EventAbstractionListener.java:605) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor221.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.entity.ai.behavior.InteractWithDoor.lambda$create$3(InteractWithDoor.java:88) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.behavior.declarative.BehaviorBuilder$1.trigger(BehaviorBuilder.java:42) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.behavior.OneShot.tryStart(OneShot.java:17) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.Brain.startEachNonRunningBehavior(Brain.java:443) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.Brain.tick(Brain.java:403) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.npc.Villager.customServerAiStep(Villager.java:258) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.npc.Villager.customServerAiStep(Villager.java:253) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.npc.Villager.inactiveTick(Villager.java:237) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1250) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 10 more
[21:46:56] [Server thread/ERROR]: Could not pass event BlockSpreadEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockSpread(WorldGuardBlockListener.java:553) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor138.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:969) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:953) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:50) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:47:01] [Server thread/ERROR]: Could not pass event BlockSpreadEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockSpread(WorldGuardBlockListener.java:553) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor138.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:969) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:953) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:50) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:47:12] [Server thread/ERROR]: Could not pass event BlockGrowEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.handleGrow(WorldGuardBlockListener.java:642) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockGrow(WorldGuardBlockListener.java:637) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor131.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(CraftEventFactory.java:1327) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(CraftEventFactory.java:1318) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:52) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:47:34] [Server thread/ERROR]: Could not pass event BlockGrowEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.handleGrow(WorldGuardBlockListener.java:642) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockGrow(WorldGuardBlockListener.java:637) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor131.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(CraftEventFactory.java:1327) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(CraftEventFactory.java:1318) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:52) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:47:37] [Server thread/ERROR]: Could not pass event BlockSpreadEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockSpread(WorldGuardBlockListener.java:553) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor138.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:969) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:953) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:50) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:47:38] [Server thread/ERROR]: Could not pass event BlockSpreadEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockSpread(WorldGuardBlockListener.java:553) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor138.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:969) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:953) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:50) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:47:45] [Server thread/ERROR]: Could not pass event PlaceBlockEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.inactiveTick(Mob.java:240) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.inactiveTick(AgeableMob.java:33) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1250) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 10 more
[21:47:49] [Server thread/ERROR]: Could not pass event PlaceBlockEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.inactiveTick(Mob.java:240) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.inactiveTick(AgeableMob.java:33) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1250) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 10 more
[21:47:54] [Server thread/ERROR]: Could not pass event BlockSpreadEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockSpread(WorldGuardBlockListener.java:553) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor138.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:969) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:953) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:50) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:48:07] [Server thread/ERROR]: Could not pass event BlockSpreadEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockSpread(WorldGuardBlockListener.java:553) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor138.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:969) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:953) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:50) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:48:09] [Server thread/ERROR]: Could not pass event BlockSpreadEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockSpread(WorldGuardBlockListener.java:553) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor138.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:969) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:953) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:50) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:48:12] [Server thread/ERROR]: Could not pass event BlockSpreadEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockSpread(WorldGuardBlockListener.java:553) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor138.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:969) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:953) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:50) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:48:14] [Server thread/ERROR]: Could not pass event BlockGrowEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.handleGrow(WorldGuardBlockListener.java:642) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockGrow(WorldGuardBlockListener.java:637) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor131.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(CraftEventFactory.java:1327) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(CraftEventFactory.java:1318) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:52) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:48:15] [Server thread/ERROR]: Could not pass event BlockSpreadEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockSpread(WorldGuardBlockListener.java:553) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor138.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:969) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:953) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:50) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:48:16] [Server thread/ERROR]: Could not pass event BlockSpreadEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockSpread(WorldGuardBlockListener.java:553) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor138.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:969) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:953) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:50) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:48:18] [Server thread/ERROR]: Could not pass event BlockSpreadEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockSpread(WorldGuardBlockListener.java:553) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor138.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:969) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockSpreadEvent(CraftEventFactory.java:953) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:50) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more
[21:48:24] [Server thread/ERROR]: Could not pass event BlockGrowEvent to WorldGuard v7.0.13+82fdc65
java.lang.NoClassDefFoundError: Could not initialize class com.sk89q.worldguard.bukkit.util.Materials
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.handleGrow(WorldGuardBlockListener.java:642) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.WorldGuardBlockListener.onBlockGrow(WorldGuardBlockListener.java:637) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor131.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(CraftEventFactory.java:1327) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(CraftEventFactory.java:1318) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.BuddingAmethystBlock.randomTick(BuddingAmethystBlock.java:52) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.randomTick(BlockBehaviour.java:1226) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.optimiseRandomTick(ServerLevel.java:844) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickChunk(ServerLevel.java:907) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tickChunks(ServerChunkCache.java:515) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerChunkCache.tick(ServerChunkCache.java:408) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:689) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IllegalArgumentException: No enum constant org.bukkit.entity.EntityType.OAK_BOAT [in thread "Server thread"]
    at java.base/java.lang.Enum.valueOf(Enum.java:293) ~[?:?]
    at org.bukkit.entity.EntityType.valueOf(EntityType.java:26) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.legacy.FieldRename.valueOf_EntityType(FieldRename.java:219) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.BUKKIT_CUSTOM_METHOD_org_bukkit_craftbukkit_legacy_FieldRename_valueOf_EntityType(Materials.java) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Materials.<clinit>(Materials.java:86) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.lambda$onPlaceBlock$0(RegionProtectionListener.java:176) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.google.common.base.Predicate.test(Predicate.java:79) ~[guava-32.1.2-jre.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filterInternal(AbstractBlockEvent.java:132) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:124) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.AbstractBlockEvent.filter(AbstractBlockEvent.java:160) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.event.block.PlaceBlockEvent.filter(PlaceBlockEvent.java:40) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.RegionProtectionListener.onPlaceBlock(RegionProtectionListener.java:171) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor183.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.util.Events.fireToCancel(Events.java:74) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at worldguard-bukkit-7.0.13-dist.jar/com.sk89q.worldguard.bukkit.listener.EventAbstractionListener.onEntityChangeBlock(EventAbstractionListener.java:343) ~[worldguard-bukkit-7.0.13-dist.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor228.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(CraftEventFactory.java:1381) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.EatBlockGoal.tick(EatBlockGoal.java:86) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.WrappedGoal.tick(WrappedGoal.java:63) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tickRunningGoals(GoalSelector.java:131) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.ai.goal.GoalSelector.tick(GoalSelector.java:122) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.serverAiStep(Mob.java:942) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3470) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.aiStep(Mob.java:678) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.animal.Sheep.aiStep(Sheep.java:151) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.entity.Mob.tick(Mob.java:445) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:1420) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717) ~[paper-1.21.1.jar:1.21.1-52-e08e667]
    ... 6 more