1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-22 21:23:18 +00:00

it is no longer allowed to use Orb of Space on saved Baby Tortoises

This commit is contained in:
Zeno Rogue 2018-07-30 09:53:50 +02:00
parent 9fc9abce98
commit ef883a41d8

View File

@ -1248,6 +1248,8 @@ eItem targetRangedOrb(cell *c, orbAction a) {
}
else if(items[itOrbSpace] && c->item == itBarrow)
addMessage(XLAT("%The1 is protected from this kind of magic!", c->item));
else if(items[itOrbSpace] && saved_tortoise_on(c))
addMessage(XLAT("No, that would be heartless!"));
else if(c->item && items[itOrbSpace] && !itemHiddenFromSight(c)) {
if(cwt.c->item)
addMessage(XLAT("Cannot use %the1 here!", itOrbSpace));