Skip to content

Commit f8b774e

Browse files
Remove broken plugin integrations
1 parent 7a66277 commit f8b774e

5 files changed

Lines changed: 6 additions & 174 deletions

File tree

pom.xml

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.eclipsekingdom</groupId>
88
<artifactId>FractalForest</artifactId>
9-
<version>1.15.2</version>
9+
<version>1.16.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>FractalForest</name>
@@ -140,26 +140,5 @@
140140
<version>5.10.2</version>
141141
<scope>provided</scope>
142142
</dependency>
143-
<dependency>
144-
<groupId>com.eclipsekingdom</groupId>
145-
<artifactId>PlayerPlot</artifactId>
146-
<version>1.19.2</version>
147-
<scope>system</scope>
148-
<systemPath>${basedir}/lib/PLayerPlot.jar</systemPath>
149-
</dependency>
150-
<dependency>
151-
<groupId>com.bekvon</groupId>
152-
<artifactId>Residence</artifactId>
153-
<version>5.0.0.0</version>
154-
<scope>system</scope>
155-
<systemPath>${basedir}/lib/Residence5.0.0.0.jar</systemPath>
156-
</dependency>
157-
<dependency>
158-
<groupId>org.redcastlemedia.multitallented</groupId>
159-
<artifactId>civs</artifactId>
160-
<version>1.9.3</version>
161-
<scope>system</scope>
162-
<systemPath>${basedir}/lib/civs-1.9.3.jar</systemPath>
163-
</dependency>
164143
</dependencies>
165144
</project>

src/main/java/com/eclipsekingdom/fractalforest/protection/CivsProtection.java

Lines changed: 0 additions & 97 deletions
This file was deleted.

src/main/java/com/eclipsekingdom/fractalforest/protection/PlayerPlotProtection.java

Lines changed: 0 additions & 21 deletions
This file was deleted.

src/main/java/com/eclipsekingdom/fractalforest/protection/RegionValidation.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import com.eclipsekingdom.fractalforest.FractalForest;
55
import com.eclipsekingdom.fractalforest.sys.PluginBase;
66
import me.angeschossen.lands.api.integration.LandsIntegration;
7+
import org.bukkit.Bukkit;
78
import org.bukkit.Location;
89
import org.bukkit.entity.Player;
910
import org.bukkit.plugin.Plugin;
@@ -33,7 +34,8 @@ private void loadProtections(PluginBase pluginBase) {
3334
for (String name : map.keySet()) {
3435
Plugin plugin = map.get(name);
3536
if (name.equals(PluginBase.playerPlotNameSpace)) {
36-
regionProtectors.add(new PlayerPlotProtection(plugin));
37+
//regionProtectors.add(new PlayerPlotProtection(plugin));
38+
Bukkit.getLogger().warning("Player Plot integration not implemented!");
3739
} else if (name.equals(PluginBase.redProtectNameSpace)) {
3840
regionProtectors.add(new RedProtectProtection(plugin));
3941
} else if (name.equals(PluginBase.worldGuardNameSpace)) {
@@ -43,14 +45,14 @@ private void loadProtections(PluginBase pluginBase) {
4345
} else if (name.equals(PluginBase.griefPreventionNameSpace)) {
4446
regionProtectors.add(new GriefPreventionProtection(plugin));
4547
} else if (name.equals(PluginBase.residenceNameSpace)) {
46-
regionProtectors.add(new ResidenceProtection(plugin));
48+
Bukkit.getLogger().warning("Residence integration not implemented!");
4749
//} else if (name.equals(PluginBase.landsNameSpace)) {
4850
// this.landsAddon = new LandsIntegration(FractalForest.getPlugin(), false);
4951
// this.landsKey = landsAddon.initialize();
5052
// regionProtectors.add(new LandsProtection(landsAddon));
5153
// usingLands = true;
5254
} else if (name.equals(PluginBase.civsNameSpace)) {
53-
regionProtectors.add(new CivsProtection());
55+
Bukkit.getLogger().warning("Civs integration not implemented!");
5456
}
5557
}
5658
}

src/main/java/com/eclipsekingdom/fractalforest/protection/ResidenceProtection.java

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)