Skip to content

Commit

Permalink
Update to Quests 3.9.0 (#314)
Browse files Browse the repository at this point in the history
* Update to Quests 3.9.0

* Update version of Quests in pom.xml
  • Loading branch information
PikaMug committed Mar 29, 2020
1 parent 27d316e commit addacab
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Binary file modified lib/Quests.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -237,7 +237,7 @@
<dependency>
<groupId>me.blackvein</groupId>
<artifactId>quests</artifactId>
<version>3.8.0</version>
<version>3.9.0</version>
<scope>system</scope>
<systemPath>${basedir}/lib/Quests.jar</systemPath>
</dependency>
Expand Down
Expand Up @@ -5,7 +5,6 @@
import me.blackvein.quests.Quest;
import me.blackvein.quests.Quester;
import me.blackvein.quests.Quests;
import me.blackvein.quests.exceptions.InvalidStageException;
import me.blackvein.quests.util.Lang;

import com.denizenscript.denizen.objects.PlayerTag;
Expand Down Expand Up @@ -176,7 +175,7 @@ else if (points != null && points.asInt() > 0) {
try {
quest.setStage(quests.getQuester(player.getPlayerEntity().getUniqueId()), stageNum.asInt());
}
catch (InvalidStageException ex) {
catch (IndexOutOfBoundsException ex) {
Debug.echoError(ex);
}
break;
Expand Down

0 comments on commit addacab

Please sign in to comment.