1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-18 06:35:12 +00:00

ru:: some fixes to extra life

This commit is contained in:
Zeno Rogue
2025-05-23 09:33:14 +02:00
parent 37b450b29f
commit 22990d1883
2 changed files with 2 additions and 2 deletions

View File

@@ -201,9 +201,9 @@ void gen_powers() {
else if(!on_fountain)
addMessage("For safety, you can only drink " + d.p->get_name() + " at the Magic Fountain.");
else {
d.p->flags = ACTIVE;
fountain_room = current_room; fountain_where = m.where;
addMessage("You drink the " + d.p->get_name() + " and you feel that nothing will stop you now!");
d.p->flags |= ACTIVE;
}
}
}