From 2ae890065e38b7a1d7a277da110d0bcda8197f62 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 7 Dec 2025 22:54:34 +0100 Subject: [PATCH] ru:: fixed the bug with incorrect reverting on the first drink of second life --- rogueviz/ru/powers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rogueviz/ru/powers.cpp b/rogueviz/ru/powers.cpp index 76fecf59..0dabe572 100644 --- a/rogueviz/ru/powers.cpp +++ b/rogueviz/ru/powers.cpp @@ -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; }