1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-21 04:39:58 +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) {
if(!recallCell.at) {
recallCell = cw2;
changes.value_set(recallCell, cw2);
changes.value_keep(recallDisplay);
recallDisplay = *current_display;
}
}