1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-19 07:05:11 +00:00

fixed frogging grimoires

This commit is contained in:
Zeno Rogue
2025-10-10 00:21:52 +02:00
parent dfb63f08a0
commit 300b8ed78f

View File

@@ -751,7 +751,7 @@ EX bool jumpTo(orbAction a, cell *dest, eItem byWhat, int bonuskill, jumpdata jd
movecost(from, dest, 2);
from = NULL;
}
if(cwt.at->item != itOrbYendor && cwt.at->item != itHolyGrail) {
if(cwt.at->item != itOrbYendor && cwt.at->item != itHolyGrail && !cantGetGrimoire(cwt.at, true)) {
auto c = collectItem(cwt.at, from, true);
if(c) {
return true;