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:
parent
6177eab63f
commit
d8d68e5f80
@ -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()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user