1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-03-13 16:49:43 +00:00

ru:: fixed the bug with incorrect reverting on the first drink of second life

This commit is contained in:
Zeno Rogue
2025-12-07 22:54:34 +01:00
parent fe53b19f5a
commit 2ae890065e

View File

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