1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-15 14:27:37 +00:00

Merge pull request #275 from jruderman/fall_alch_msg

Show correct message when trying to move from a high Brown Island cell to a Red Slime cell
This commit is contained in:
Zeno Rogue
2021-08-04 19:13:10 +02:00
committed by GitHub

View File

@@ -950,7 +950,7 @@ void pcmove::tell_why_impassable() {
if(vmsg(miRESTRICTED))
blowaway_message(c2);
}
else if(isAlch(c2)) {
else if(anti_alchemy(c2, cwt.at)) {
if(vmsg(miRESTRICTED))
addMessage(XLAT("Wrong color!"));
}