1
0
mirror of https://github.com/PikaMug/Quests.git synced 2025-04-04 11:06:40 +02:00

Get the next stage correctly

This commit is contained in:
Patrick Zhong 2019-07-26 22:51:39 -06:00
parent 6177eab63f
commit d8d68e5f80

View File

@ -231,7 +231,7 @@ public class Quest {
throw new InvalidStageException(this, stage); throw new InvalidStageException(this, stage);
} }
Stage currentStage = quester.getCurrentStage(this); Stage currentStage = quester.getCurrentStage(this);
Stage nextStage = quester.getCurrentStage(this); Stage nextStage = getStage(stage);
QuesterPreChangeStageEvent preEvent = new QuesterPreChangeStageEvent(quester, this, currentStage, nextStage); QuesterPreChangeStageEvent preEvent = new QuesterPreChangeStageEvent(quester, this, currentStage, nextStage);
plugin.getServer().getPluginManager().callEvent(preEvent); plugin.getServer().getPluginManager().callEvent(preEvent);
if (preEvent.isCancelled()) { if (preEvent.isCancelled()) {