Added message when running out of prayer points
Improved handling of running out of prayer points
This commit is contained in:
@@ -14,6 +14,7 @@ import core.game.world.map.Location;
|
|||||||
import core.game.world.map.RegionManager;
|
import core.game.world.map.RegionManager;
|
||||||
import core.game.world.update.flag.context.Graphics;
|
import core.game.world.update.flag.context.Graphics;
|
||||||
import core.tools.RandomFunction;
|
import core.tools.RandomFunction;
|
||||||
|
import core.game.event.*;
|
||||||
import core.game.world.GameWorld;
|
import core.game.world.GameWorld;
|
||||||
import org.rs09.consts.Sounds;
|
import org.rs09.consts.Sounds;
|
||||||
|
|
||||||
@@ -63,8 +64,10 @@ public final class Prayer {
|
|||||||
* Method used to reset this prayer managers cached prayers.
|
* Method used to reset this prayer managers cached prayers.
|
||||||
*/
|
*/
|
||||||
public void reset() {
|
public void reset() {
|
||||||
|
// Immediately clear the lights on the client interface and terminate any bonuses
|
||||||
for (PrayerType type : getActive()) {
|
for (PrayerType type : getActive()) {
|
||||||
setVarp(player, type.getConfig(), 0, false);
|
setVarp(player, type.getConfig(), 0, false);
|
||||||
|
player.dispatch(new PrayerDeactivatedEvent(type));
|
||||||
}
|
}
|
||||||
getActive().clear();
|
getActive().clear();
|
||||||
// Clear the overhead prayer icon a tick later
|
// Clear the overhead prayer icon a tick later
|
||||||
@@ -132,6 +135,7 @@ public final class Prayer {
|
|||||||
if(prayerActiveTicks > 0 && prayerActiveTicks % 2 == 0){
|
if(prayerActiveTicks > 0 && prayerActiveTicks % 2 == 0){
|
||||||
if(getPlayer().getSkills().getPrayerPoints() == 0){
|
if(getPlayer().getSkills().getPrayerPoints() == 0){
|
||||||
playAudio(getPlayer(), Sounds.PRAYER_DRAIN_2672);
|
playAudio(getPlayer(), Sounds.PRAYER_DRAIN_2672);
|
||||||
|
getPlayer().sendMessage("You have run out of prayer points; you must recharge at an altar.");
|
||||||
reset();
|
reset();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user