1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-23 21:07:17 +00:00

Fix some messages when using Orb of the Warp

This commit is contained in:
Jesse Ruderman 2021-07-10 03:53:42 -07:00
parent 2eeca0410e
commit 2b0af74903

View File

@ -751,7 +751,7 @@ void pcmove::tell_why_cannot_attack() {
addMessage(XLAT("You cannot attack Sandworms directly!")); addMessage(XLAT("You cannot attack Sandworms directly!"));
else if(c2->monst == moHexSnake || c2->monst == moHexSnakeTail) else if(c2->monst == moHexSnake || c2->monst == moHexSnakeTail)
addMessage(XLAT("You cannot attack Rock Snakes directly!")); addMessage(XLAT("You cannot attack Rock Snakes directly!"));
else if(nonAdjacent(c2, cwt.at)) else if(nonAdjacentPlayer(c2, cwt.at))
addMessage(XLAT("You cannot attack diagonally!")); addMessage(XLAT("You cannot attack diagonally!"));
else if(thruVine(c2, cwt.at)) else if(thruVine(c2, cwt.at))
addMessage(XLAT("You cannot attack through the Vine!")); addMessage(XLAT("You cannot attack through the Vine!"));
@ -935,7 +935,7 @@ bool pcmove::move_if_okay() {
void pcmove::tell_why_impassable() { void pcmove::tell_why_impassable() {
cell*& c2 = mi.t; cell*& c2 = mi.t;
if(nonAdjacent(cwt.at,c2)) { if(nonAdjacentPlayer(cwt.at,c2)) {
if(vmsg(miRESTRICTED)) addMessage(geosupport_football() < 2 ? if(vmsg(miRESTRICTED)) addMessage(geosupport_football() < 2 ?
XLAT("You cannot move between the cells without dots here!") : XLAT("You cannot move between the cells without dots here!") :
XLAT("You cannot move between the triangular cells here!") XLAT("You cannot move between the triangular cells here!")