1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-22 09:27:40 +00:00

fixed a bug with Orb of Recall

This commit is contained in:
Zeno Rogue
2020-08-02 12:52:13 +02:00
parent daeffcfde5
commit f7adc64101

View File

@@ -213,7 +213,8 @@ EX bool activateRecall() {
EX void saveRecall(cellwalker cw2) { EX void saveRecall(cellwalker cw2) {
if(!recallCell.at) { if(!recallCell.at) {
recallCell = cw2; changes.value_set(recallCell, cw2);
changes.value_keep(recallDisplay);
recallDisplay = *current_display; recallDisplay = *current_display;
} }
} }