Skip to content

Commit

Permalink
fixed Klaus not answering to #progress past 90%.
Browse files Browse the repository at this point in the history
  • Loading branch information
nhnb committed Oct 8, 2023
1 parent a66ec38 commit 51f26e7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ public void fire(Player player, Sentence sentence, EventRaiser npc) {
} else if (percent < 75) {
npc.say("There is still so much to do before the " + behaviour.getProjectName() + " can start. We have barly reached the half way point. Perhaps you could help with some #tasks.");
} else if (percent < 90) {
npc.say("We are almost there. But still, there are still some #tasks left before the " + behaviour.getProjectName() + " can start.");
npc.say("There is still so much to do before the " + behaviour.getProjectName() + " can start. But at least we are significantly past the half way point. Perhaps you could help with some #tasks.");
} else {
npc.say("We are almost there. But still, there are some #tasks left before the " + behaviour.getProjectName() + " can start.");
}
}
});
Expand Down

0 comments on commit 51f26e7

Please sign in to comment.