File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed
java/com/eclipsekingdom/fractalforest/sys Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 66
77 <groupId >com.eclipsekingdom</groupId >
88 <artifactId >FractalForest</artifactId >
9- <version >1.14 </version >
9+ <version >1.15 </version >
1010 <packaging >jar</packaging >
1111
1212 <name >FractalForest</name >
8585 <dependency >
8686 <groupId >org.spigotmc</groupId >
8787 <artifactId >spigot-api</artifactId >
88- <version >1.19 -R0.1-SNAPSHOT</version >
88+ <version >1.20 -R0.1-SNAPSHOT</version >
8989 <scope >provided</scope >
9090 </dependency >
9191 <dependency >
9292 <groupId >com.sk89q.worldguard</groupId >
9393 <artifactId >worldguard-bukkit</artifactId >
94- <version >7.0.7 </version >
94+ <version >7.0.8 </version >
9595 <scope >provided</scope >
9696 </dependency >
9797 <dependency >
9898 <groupId >net.coreprotect</groupId >
9999 <artifactId >coreprotect</artifactId >
100- <version >21.2 </version >
100+ <version >21.3 </version >
101101 <scope >provided</scope >
102102 </dependency >
103103 <dependency >
Original file line number Diff line number Diff line change 33import org .bukkit .Bukkit ;
44
55public enum Version {
6+ V1_20 (120 ),
67 V1_19 (119 ),
78 V1_18 (118 ),
89 V1_17 (117 ),
@@ -29,7 +30,9 @@ public enum Version {
2930
3031 private static Version getVersion () {
3132 String versionString = Bukkit .getVersion ();
32- if (versionString .contains ("1.19" )) {
33+ if (versionString .contains ("1.20" )) {
34+ return V1_20 ;
35+ } else if (versionString .contains ("1.19" )) {
3336 return V1_19 ;
3437 } else if (versionString .contains ("1.18" )) {
3538 return V1_18 ;
Original file line number Diff line number Diff line change 11name : FractalForest
2- version : 1.14
2+ version : 1.15
33main : com.eclipsekingdom.fractalforest.FractalForest
4- api-version : 1.19
4+ api-version : 1.20
55authors : [sword7]
66maintainer : Diamondback88, UnknownSilicon
77description : A spigot plugin that adds procedurally generated trees to Minecraft
You can’t perform that action at this time.
0 commit comments