compile error fix - Thanks to Stormer#8369

This commit is contained in:
RonanCraft
2023-02-22 16:19:43 -05:00
parent 3cb691a765
commit b8e9452ea6
2 changed files with 10 additions and 6 deletions

14
pom.xml
View File

@@ -206,10 +206,10 @@
<scope>compile</scope>
</dependency>
<!-- Worldguard (https://dev.bukkit.org/projects/worldguard) -->
<dependency>
<dependency> <!-- Saber Factions screws up if updated -->
<groupId>com.sk89q.worldguard</groupId>
<artifactId>worldguard-bukkit</artifactId>
<version>7.0.7</version>
<version>7.0.3</version>
<scope>provided</scope>
</dependency>
<!-- RedProtect (https://www.spigotmc.org/resources/redprotect.15841/) -->
@@ -336,11 +336,17 @@
</exclusions>
</dependency>
<!-- Saber Factions (https://www.spigotmc.org/resources/saberfactions.69771/) (Added in 3.4.5)-->
<dependency>
<dependency> <!-- WorldGuard screws up if updated -->
<groupId>com.github.SaberLLC</groupId>
<artifactId>Saber-Factions</artifactId>
<version>2.9.1-RC</version>
<version>2.4.0-RC</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>com.sk89q.worldguard</groupId>
<artifactId>worldguard-bukkit</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- PlaceholderAPI Support (Added in 3.4.5)-->
<dependency>

View File

@@ -5,8 +5,6 @@ import com.sk89q.worldguard.WorldGuard;
import com.sk89q.worldguard.protection.ApplicableRegionSet;
import com.sk89q.worldguard.protection.regions.RegionContainer;
import com.sk89q.worldguard.protection.regions.RegionQuery;
import me.SuperRonanCraft.BetterRTP.BetterRTP;
import me.SuperRonanCraft.BetterRTP.references.settings.SoftDepends;
import org.bukkit.Location;
public class RTP_WorldGuard implements RegionPluginCheck {