mirror of
https://github.com/PikaMug/Quests.git
synced 2025-01-18 06:11:36 +01:00
Remove GPS so Jenkins can compile. Bump version number
This commit is contained in:
parent
8625b8a5a2
commit
330e92ef72
9
pom.xml
9
pom.xml
@ -3,7 +3,7 @@
|
||||
|
||||
<groupId>me.blackvein.quests</groupId>
|
||||
<artifactId>quests</artifactId>
|
||||
<version>3.5.6</version>
|
||||
<version>3.5.7</version>
|
||||
<name>quests</name>
|
||||
<url>https://github.com/FlyingPikachu/Quests/</url>
|
||||
<packaging>jar</packaging>
|
||||
@ -186,13 +186,6 @@
|
||||
<scope>system</scope>
|
||||
<systemPath>${project.basedir}/lib/CitizensBooks-2.4.7.jar</systemPath>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.live.bemmamin</groupId>
|
||||
<artifactId>GPS</artifactId>
|
||||
<version>2.2.2</version>
|
||||
<scope>system</scope>
|
||||
<systemPath>${project.basedir}/lib/GPS.jar</systemPath>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
@ -616,11 +616,11 @@ public class Quest {
|
||||
q.saveData();
|
||||
player.updateInventory();
|
||||
q.updateJournal();
|
||||
if (Quests.gpsapi != null) {
|
||||
/*if (Quests.gpsapi != null) {
|
||||
if (Quests.gpsapi.gpsIsActive(player)) {
|
||||
Quests.gpsapi.stopGPS(player);
|
||||
}
|
||||
}
|
||||
}*/
|
||||
q.findCompassTarget();
|
||||
}
|
||||
|
||||
|
@ -88,7 +88,6 @@ import com.gmail.nossr50.util.player.UserManager;
|
||||
import com.herocraftonline.heroes.Heroes;
|
||||
import com.herocraftonline.heroes.characters.Hero;
|
||||
import com.herocraftonline.heroes.characters.classes.HeroClass;
|
||||
import com.live.bemmamin.gps.api.GPSAPI;
|
||||
import com.sk89q.worldguard.bukkit.WorldGuardPlugin;
|
||||
import com.sk89q.worldguard.protection.managers.RegionManager;
|
||||
import com.sk89q.worldguard.protection.regions.ProtectedRegion;
|
||||
@ -120,7 +119,7 @@ public class Quests extends JavaPlugin implements ConversationAbandonedListener
|
||||
public static Permission permission = null;
|
||||
public static WorldGuardPlugin worldGuard = null;
|
||||
public static mcMMO mcmmo = null;
|
||||
public static GPSAPI gpsapi = null;
|
||||
//public static GPSAPI gpsapi = null;
|
||||
public static Heroes heroes = null;
|
||||
public static PhatLoots phatLoots = null;
|
||||
public static PlaceholderAPIPlugin placeholder = null;
|
||||
@ -430,9 +429,9 @@ public class Quests extends JavaPlugin implements ConversationAbandonedListener
|
||||
if (isPluginReady("mcMMO")) {
|
||||
mcmmo = (mcMMO) getServer().getPluginManager().getPlugin("mcMMO");
|
||||
}
|
||||
if (isPluginReady("GPS")) {
|
||||
/*if (isPluginReady("GPS")) {
|
||||
gpsapi = new GPSAPI(this);
|
||||
}
|
||||
}*/
|
||||
if (isPluginReady("Heroes")) {
|
||||
heroes = (Heroes) getServer().getPluginManager().getPlugin("Heroes");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user