mirror of
https://github.com/RonanPlugins/BetterRTP.git
synced 2026-02-16 02:21:06 +00:00
compile error fix - Thanks to Stormer#8369
This commit is contained in:
14
pom.xml
14
pom.xml
@@ -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>
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user